        :root {
            --emerald-dark: #0C4A3E;
            --emerald-primary: #147A5F;
            --emerald-light: #1E9A7A;
            --emerald-accent: #2ECC99;
            --emerald-pale: #E8F5F1;
            --gold-accent: #D4AF37;
            --cream: #FFF9F0;
            --text-dark: #1A1A1A;
            --text-light: #666666;
            --shadow: rgba(12, 74, 62, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: white;
            background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 50%, var(--emerald-light) 100%);
            background-attachment: fixed;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        /* Header Navigation */
        header {
            background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
            box-shadow: 0 4px 20px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            background-color: var(--emerald-dark);
            padding: 10px 0;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        /* Hamburger Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            gap: 5px;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        .language-selector {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .auth-section {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-left: 20px;
            padding-left: 20px;
            border-left: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .username-display {
            color: var(--gold-accent);
            font-weight: 500;
            font-size: 0.9rem;
        }
        
        .auth-button {
            background: var(--gold-accent);
            color: var(--emerald-dark);
            border: none;
            padding: 6px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .auth-button:hover {
            background: #C9A53B;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
        }
        
        .language-selector a {
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .language-selector a:hover {
            opacity: 1;
        }
        
        .language-selector img {
            width: 28px;
            height: 20px;
            border-radius: 3px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            position: relative;
        }
        
        .main-nav-wrapper {
            display: flex;
            gap: 40px;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }
        
        .nav-menu.mobile-nav {
            display: none !important;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            flex-direction: column;
            gap: 0;
            background: linear-gradient(135deg, var(--emerald-dark) 0%, var(--emerald-primary) 100%);
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            list-style: none;
            z-index: 999;
        }
        
        .nav-menu.mobile-nav.active {
            display: flex !important;
        }
        
        .nav-menu.mobile-nav a {
            display: block;
            padding: 15px 40px !important;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .nav-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-accent);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--gold-accent);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        /* Hero Section   '/images/logo.jpg'*/
        .hero {
            position: relative;
            height: 85vh;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(rgba(12, 74, 62, 0.3), rgba(20, 122, 95, 0.4)), 
                        url('') center/cover;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, transparent 0%, rgba(12, 74, 62, 0.5) 100%);
        }
        
        .hero-content {
            position: relative;
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 40px;
            background: rgba(12, 74, 62, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
        }
        
        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        
        .hero p {
            font-size: 1.4rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--gold-accent) 0%, #C9A53B 100%);
            color: var(--emerald-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: transparent;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold-accent) 0%, transparent 100%);
        }
        
        .about-text p {
            font-size: 1.1rem;
            color: white;
            margin-bottom: 20px;
            text-align: justify;
            line-height: 1.8;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px var(--shadow);
        }
        
        .about-image img {
            width: 100%;
            height: 800px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Content Sections */
        .content-sections {
            padding: 80px 0;
            background: transparent;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: white;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 20px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent 0%, var(--gold-accent) 50%, transparent 100%);
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .content-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            border: 1px solid var(--emerald-pale);
        }
        
        .content-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(12, 74, 62, 0.2);
        }
        
        .content-card-image {
            height: 250px;
            background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .content-card-image::before {
            content: '◆';
            font-size: 6rem;
            color: rgba(255, 255, 255, 0.2);
            position: absolute;
        }
        
        .content-card-body {
            padding: 30px;
        }
        
        .content-card h3 {
            font-size: 1.8rem;
            color: var(--emerald-dark);
            margin-bottom: 15px;
        }
        
        .content-card p {
            color: var(--text-dark);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* Collections Menu */
        .collections-menu {
            padding: 60px 0;
            background-color: var(--emerald-dark);
        }
        
        .collections-title {
            text-align: center;
            color: var(--gold-accent);
            font-size: 2rem;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .collections-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .collection-item {
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .collection-item:hover {
            transform: translateY(-5px);
        }
        
        .collection-item a {
            text-decoration: none;
            color: white;
        }
        
        .collection-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border: 2px solid var(--gold-accent);
        }
        
        .collection-item:hover .collection-icon {
            background: var(--gold-accent);
            transform: rotate(360deg);
        }
        
        .collection-icon img {
            max-width: 60%;
            max-height: 60%;
        }
        
        .collection-name {
            font-weight: 500;
            font-size: 0.95rem;
            letter-spacing: 1px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--emerald-dark) 0%, #0A3B31 100%);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            color: var(--gold-accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--gold-accent);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }
            
            .nav-menu {
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .header-top {
                padding: 8px 0;
            }
            
            /* Language Selector Mobile */
            .language-selector {
                gap: 8px;
                justify-content: center;
                order: 3;
                width: 100%;
                padding-top: 10px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .language-selector img {
                width: 24px;
                height: 16px;
            }
            
            .auth-section {
                margin-left: 0;
                padding-left: 0;
                border-left: none;
                order: 4;
                width: 100%;
                justify-content: center;
                padding-top: 10px;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            /* Main Navigation Mobile */
            .menu-toggle {
                display: flex;
            }
            
            .main-nav {
                flex-wrap: wrap;
                padding: 15px 0;
            }
            
            .main-nav-wrapper {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            
            .logo {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }
            
            .nav-menu {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }
            
            .nav-menu a {
                padding: 12px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                font-size: 0.95rem;
            }
            
            .nav-menu a::after {
                display: none;
            }
            
            .nav-menu a:hover {
                background: rgba(255, 255, 255, 0.1);
            }
            
            /* Hero Section Mobile */
            .hero {
                height: 60vh;
                min-height: 300px;
            }
            
            .hero-content {
                padding: 30px 20px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                margin-bottom: 15px;
            }
            
            .hero p {
                font-size: 1.1rem;
                letter-spacing: 1px;
                margin-bottom: 20px;
            }
            
            .cta-button {
                padding: 12px 30px;
                font-size: 0.95rem;
            }
            
            /* About Section Mobile */
            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .about-text h2 {
                font-size: 2rem;
            }
            
            .about-text p {
                font-size: 1rem;
            }
            
            .about-image img {
                height: 300px;
            }
            
            /* Content Grid Mobile */
            .content-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .content-card-image {
                height: 200px;
            }
            
            .content-card-body {
                padding: 20px;
            }
            
            .content-card h3 {
                font-size: 1.5rem;
            }
            
            /* Collections Mobile */
            .collections-grid {
                flex-direction: column;
                align-items: center;
                gap: 25px;
            }
            
            .collection-item {
                width: 100%;
                max-width: 200px;
            }
            
            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .footer-section h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            
            .logo {
                font-size: 1.2rem;
                letter-spacing: 0.5px;
            }
            
            .hero-content {
                padding: 20px 15px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 0.95rem;
            }
            
            .about-text h2 {
                font-size: 1.5rem;
            }
            
            .about-text p {
                font-size: 0.95rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .content-card-body {
                padding: 15px;
            }
            
            .content-card h3 {
                font-size: 1.2rem;
            }
            
            .content-card p {
                font-size: 0.9rem;
            }
            
            .language-selector {
                gap: 6px;
            }
            
            .language-selector img {
                width: 20px;
                height: 14px;
            }
            
            .auth-button {
                padding: 5px 12px;
                font-size: 0.75rem;
            }
        }
    