:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-darker: #141414;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-gold-dark: #b4941f;
    --color-white: #ffffff;
    --color-gray-light: #a0a0a0;
    --color-gray: #707070;
    --color-gray-dark: #404040;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --header-height: 80px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    z-index: 1000;
}

.header-container {
    max-width: 1800px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    padding: 0 40px;
    gap: 40px;
}

.header-logo a {
    display: inline-block;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform var(--transition-speed);
}

.header-logo a:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-gold {
    color: var(--color-gold);
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- LANGUAGE SWITCHER (MinimalistickÃ½ textovÃ½ dizajn) --- */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    /* OdstrÃ¡nenÃ© pÃ´vodnÃ© orÃ¡movanie a pozadie */
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 0;
}

.lang-btn {
    padding: 5px;
    background: transparent;
    color: var(--color-gray); /* NeaktÃ­vny je sivÃ½ */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    border: none;
    transition: all var(--transition-speed);
    cursor: pointer;
}

.lang-btn:hover {
    background: transparent;
    color: var(--color-gold-light);
}

.lang-btn.active {
    background: transparent;
    color: var(--color-gold); /* AktÃ­vny je zlatÃ½ */
    font-weight: 700; /* TuÄnÃ© pÃ­smo */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-gray-light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    transition: color var(--transition-speed);
	white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-speed);
}

.nav-link:hover {
    color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 40px;
}

.hero-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 1s ease-out;
}

.hero-logo-text h1 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
}

.hero-logo-text .gold {
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 48px;
    color: var(--color-gray-light);
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-btn {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.hero-btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.hero-btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: var(--color-gold);
    width: 32px;
    border-radius: 6px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed);
}

.hero-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 40px;
}

.hero-nav-next {
    right: 40px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Rest of the styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.categories-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.section-description {
    font-size: 16px;
    color: var(--color-gray-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- CATEGORY BUTTONS (UpravenÃ© pre <a> tagy) --- */
.category-btn {
    display: inline-block; /* DÃ´leÅ¾itÃ© pre odkazy */
    padding: 12px 30px;
    background: var(--color-darker);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gray-light);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none; /* OdstrÃ¡nenie podÄiarknutia */
    font-family: var(--font-body);
}

.category-btn:hover,
.category-btn.active {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.gallery-section {
    padding: 120px 0;
    background: var(--color-black);
    overflow: hidden;
}

/* Gallery Slider */
.gallery-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 60px auto 0;
    padding: 0 80px;
}

.gallery-slider-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0 40px;
    cursor: grab;
    user-select: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.gallery-slider-track::-webkit-scrollbar {
    display: none;
}

.gallery-slider-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

/* Clone cards styling - identickÃ© ako originÃ¡ly */
.gallery-slider-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.gallery-slider-card.clone {
    pointer-events: auto;
}

.gallery-slider-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--color-darker);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gallery-slider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: var(--color-gold);
}

.gallery-slider-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slider-card:hover .gallery-slider-image img {
    transform: scale(1.1);
}

.gallery-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-slider-card:hover .gallery-slider-overlay {
    opacity: 1;
}

.gallery-slider-watermark {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

.gallery-slider-info {
    padding: 30px;
    background: var(--color-darker);
}

.gallery-slider-category {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
    font-weight: 600;
}

.gallery-slider-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-white);
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1.4;
    min-height: 56px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-slider-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 11px;
    color: var(--color-gray);
}

/* Navigation Buttons */
.gallery-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider-nav:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-50%) scale(1.1);
}

.gallery-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-slider-prev {
    left: 10px;
}

.gallery-slider-next {
    right: 10px;
}

.gallery-slider-nav svg {
    width: 28px;
    height: 28px;
}

/* Old grid fallback */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-item {
    background: var(--color-darker);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.gallery-image-wrap {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
}

.gallery-info {
    padding: 35px;
    background: var(--color-darker);
}

.gallery-category {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.gallery-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-white);
    font-weight: 600;
    font-family: var(--font-heading);
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 12px;
    color: var(--color-gray);
}

.stats-section {
    padding: 100px 0;
    background: var(--color-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gray-light);
}

footer {
    background: var(--color-darker);
    color: var(--color-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--color-gold);
    font-family: var(--font-heading);
}

.footer-about p {
    color: var(--color-gray-light);
    line-height: 1.8;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--color-gray);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1200px) {
    .header-container {
        grid-template-columns: 250px 1fr 250px;
        padding: 0 30px;
        gap: 30px;
    }
    
    .main-nav {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery Slider */
    .gallery-slider-wrapper {
        padding: 0 60px;
    }
    
    .gallery-slider-card {
        flex: 0 0 calc(40% - 15px);
    }
}

@media (max-width: 992px) {
    .header-container {
        grid-template-columns: 1fr auto 1fr;
        padding: 0 20px;
        gap: 20px;
    }
    
    .main-nav {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 11px;
    }
    
    .hero-logo-text h1 {
        font-size: 56px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Gallery Slider */
    .gallery-slider-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .gallery-slider-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr;
        height: auto;
        padding: 15px 20px;
    }
    
    .header-logo {
        text-align: center;
    }
    
    .header-center {
        order: 3;
        margin-top: 15px;
    }
    
    .main-nav {
        order: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 15px;
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .hero-logo-text h1 {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-btn {
        width: 100%;
    }
    
    /* Gallery Slider Mobile */
    .gallery-slider-wrapper {
        padding: 0 50px;
    }
    
    .gallery-slider-card {
        flex: 0 0 calc(100% - 60px);
    }
    
    .gallery-slider-image {
        height: 280px;
    }
    
    .gallery-slider-info {
        padding: 24px;
    }
    
    .gallery-slider-title {
        font-size: 18px;
        min-height: 48px;
    }
    
    .gallery-slider-nav {
        width: 50px;
        height: 50px;
    }
    
    .gallery-slider-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .gallery-slider-prev {
        left: 5px;
    }
    
    .gallery-slider-next {
        right: 5px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    
    .hero-nav-prev {
        left: 20px;
    }
    
    .hero-nav-next {
        right: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Logo v hlavnej hlaviÃ„ ke */
.header-logo img {
    max-height: 50px; /* Upravte vÃƒÂ½Ã…Â¡ku podÃ„Â¾a potreby */
    width: auto;
    display: block;
}

/* Logo v hero sekcii */
.hero-logo {
    margin-bottom: 25px;
    max-width: 300px; /* Upravte Ã…Â¡ÃƒÂ­rku podÃ„Â¾a potreby */
    width: 80%;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}
/* ============================================= */
/* MOBILE MENU - PridanÃ© vylepÅ¡enia */
/* ============================================= */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Responsive Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        grid-template-columns: auto 1fr auto;
        padding: 0 20px;
        gap: 15px;
    }
    
    .header-center {
        order: 3;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 20px 0;
        border-left: 1px solid rgba(212, 175, 55, 0.1);
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-link {
        padding: 18px 30px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.05);
        text-align: left;
    }
    
    .nav-link::after {
        bottom: 0;
        left: 30px;
        right: 30px;
        width: auto;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        grid-template-columns: 1fr auto;
        height: var(--header-height);
        padding: 15px 20px;
    }
    
    .header-logo {
        text-align: left;
    }
    
    .header-center {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
    }
    
    .mobile-menu-toggle {
        order: 4;
        justify-self: end;
    }
    
    .main-nav {
        width: 100%;
        right: -100%;
    }
}