/* Dark Red Theme CSS */
        :root {
            --primary-bg: #1a1a1a;
            --secondary-bg: #2a2a2a;
            --accent-color: #d10000;
            --accent-hover: #ff0000;
            --text-color: #f1f1f1;
            --text-hover: #ffffff;
            --placeholder-color: #888;
            --dark-red: #a71d31;
            
            /*--dark-red: #a71d31;*/
            /*--amber: #f4c430;*/
            /*--emerald: #2ecc71;*/
            /*--ivory: #f9fafb;*/
            /*--obsidian: #1f2a44;*/
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--primary-bg);
            color: var(--text-color);
            /*font-family: 'Poppins', sans-serif;*/
            /*background: linear-gradient(135deg, var(--ivory) 0%, #e5e7eb 100%);*/
            /*color: var(--obsidian);*/
            /*min-height: 100vh;*/
            /*margin: 0;*/
            /*line-height: 1.6;*/
        }
        
        h1, h2, h3, h5 {
            font-family: 'Playfair Display', serif;
            color: var(--dark-red);
        }
        h6 {
         font-family: 'Playfair Display', serif;
         color:#f9fafb;
        }
        
        h4 {
         font-family: 'Playfair Display', serif;
         color: var(--dark-red);
        }
        
        h8 {
         font-family: 'Playfair Display', serif;
         color:#f9fafb;
        }
        
        .navbar {
            background-color: var(--secondary-bg);
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 80px;
            width: auto;
            /*margin-right: 15px;*/
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--text-color);
            line-height: 1.2;
        }
        
        .logo-title span {
            color: var(--accent-color);
        }
        
        .logo-subtitle {
            font-size: 0.8rem;
            color: var(--placeholder-color);
            font-style: italic;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 1.5rem;
            position: relative;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--text-hover);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .active {
            color: var(--accent-color) !important;
        }
        
        .active::after {
            width: 100% !important;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        /* Mobile Responsiveness */
        @media screen and (max-width: 768px) {
            .navbar {
                padding: 0.8rem 1rem;
            }
            
            .nav-links {
                position: absolute;
                right: 0;
                top: 80px;
                background-color: var(--secondary-bg);
                width: 100%;
                flex-direction: column;
                align-items: center;
                clip-path: circle(0px at 90% -10%);
                -webkit-clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                pointer-events: none;
            }
            
            .nav-links.open {
                clip-path: circle(1000px at 90% -10%);
                -webkit-clip-path: circle(1000px at 90% -10%);
                pointer-events: all;
            }
            
            .nav-links li {
                margin: 1rem 0;
                opacity: 0;
            }
            
            .nav-links.open li {
                opacity: 1;
            }
            
            .hamburger {
                display: block;
            }
            
            .logo-img {
                height: 30px;
            }
            
            .logo-title {
                font-size: 1.2rem;
            }
            
            .logo-subtitle {
                font-size: 0.7rem;
            }
        }
        
        /* Animation for mobile menu items */
        @keyframes navLinkFade {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Toggle animation for hamburger */
        .toggle .line1 {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        
        .toggle .line2 {
            opacity: 0;
        }
        
        .toggle .line3 {
            transform: rotate(45deg) translate(-5px, -6px);
        }
    