:root {
    --bg-main: #070908;
    --bg-surface: #101512;
    --bg-surface-hover: #18201b;
    --text-primary: #f2f5f3;
    --text-secondary: #ccd4cf;
    --text-muted: #94a199;
    --accent: #10b981; /* Emerald Green */
    --accent-hover: #059669;
    --accent-rgb: 16, 185, 129;
    --bg-glass: rgba(7, 9, 8, 0.75);
    --border-glass: rgba(16, 185, 129, 0.15);
    --hero-overlay: linear-gradient(180deg, rgba(7, 9, 8, 0.4) 0%, rgba(7, 9, 8, 0.95) 100%);
    --bg-footer: #040605;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    --btn-border-color: rgba(255, 255, 255, 0.15);
    --btn-hover-bg: rgba(255, 255, 255, 0.05);
    --btn-hover-border: rgba(255, 255, 255, 0.4);
}

body[data-theme="dark"] {
    --bg-main: #070908;
    --bg-surface: #101512;
    --bg-surface-hover: #18201b;
    --text-primary: #f2f5f3;
    --text-secondary: #ccd4cf;
    --text-muted: #94a199;
    --bg-glass: rgba(7, 9, 8, 0.75);
    --border-glass: rgba(16, 185, 129, 0.15);
    --hero-overlay: linear-gradient(180deg, rgba(7, 9, 8, 0.4) 0%, rgba(7, 9, 8, 0.95) 100%);
    --bg-footer: #040605;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    --btn-border-color: rgba(255, 255, 255, 0.15);
    --btn-hover-bg: rgba(255, 255, 255, 0.05);
    --btn-hover-border: rgba(255, 255, 255, 0.4);
}

body[data-theme="light"] {
    --bg-main: #f4f7f5;
    --bg-surface: #ffffff;
    --bg-surface-hover: #eaf1ed;
    --text-primary: #0f1713;
    --text-secondary: #35473e;
    --text-muted: #60796e;
    --bg-glass: rgba(244, 247, 245, 0.85);
    --border-glass: rgba(16, 185, 129, 0.15);
    --hero-overlay: linear-gradient(180deg, rgba(244, 247, 245, 0.3) 0%, rgba(244, 247, 245, 0.95) 100%);
    --bg-footer: #e1e8e4;
    --shadow: 0 10px 30px rgba(15, 23, 19, 0.05);
    --btn-border-color: rgba(0, 0, 0, 0.12);
    --btn-hover-bg: rgba(0, 0, 0, 0.04);
    --btn-hover-border: rgba(0, 0, 0, 0.3);
}

/* THEME TOGGLE */
.theme-toggle {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--bg-surface-hover);
    transform: scale(1.05);
    border-color: var(--accent);
    color: var(--accent);
}

/* Toggle icon display based on active theme */
body[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}
body[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}
body[data-theme="light"] .theme-toggle .sun-icon {
    display: none;
}
body[data-theme="light"] .theme-toggle .moon-icon {
    display: block;
}

/* LIGHTBOX MODAL */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    transform: scale(0.95);
    transition: var(--transition);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

/* CSS RESET & GENERAL SETTINGS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

body.lang-id .lang-en { display: none !important; }
body.lang-en .lang-id { display: none !important; }

/* NAVBAR STYLING */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.navbar.scrolled .nav-container {
    padding: 12px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-toggle-container {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn-lang {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    padding: 2px 4px;
}

.btn-lang.active {
    color: var(--accent);
}

.btn-lang:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: var(--text-muted);
    opacity: 0.5;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover {
    color: var(--text-primary);
}

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

.btn-nav {
    background-color: var(--accent);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.btn-nav:hover {
    background-color: transparent;
    color: var(--accent) !important;
    box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.3);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 24px 80px;
    position: relative;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.hero-desc {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff !important;
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(var(--accent-rgb), 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--btn-border-color);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: var(--btn-hover-bg);
    border-color: var(--btn-hover-border);
    transform: translateY(-2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(25, 22, 20, 0.15);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
}

.hero-badge .stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.hero-badge .badge-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* GENERAL SECTION TYPOGRAPHY */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 300;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subheader {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.text-center {
    text-align: center;
}

/* VIBE SECTION */
.vibe-section {
    background-color: var(--bg-main);
}

.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vibe-features-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vibe-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.vibe-icon {
    color: var(--accent);
    font-weight: 700;
}

.vibe-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
}

.vibe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vibe-image-wrapper:hover .vibe-img {
    transform: scale(1.05);
}

/* FEATURES SECTION */
.features-section {
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass);
    box-shadow: var(--shadow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent);
    color: #fff;
    transform: rotateY(360deg);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
}

/* MENU SECTION */
.menu-section {
    background-color: var(--bg-main);
}

.menu-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.menu-col-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-glass);
    padding-bottom: 10px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item-card {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 20px;
    transition: var(--transition);
}

:root[style*="--bg-main: #fbf9f5"] .menu-item-card {
    border-color: rgba(0, 0, 0, 0.05);
}

.menu-item-card:hover {
    transform: translateX(5px);
    border-color: var(--border-glass);
    box-shadow: var(--shadow);
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* GALLERY SECTION */
.gallery-section {
    background-color: var(--bg-surface);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item:nth-child(3n) {
    grid-column: span 2;
}

.gallery-item:nth-child(5n) {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* REVIEWS SECTION */
.reviews-section {
    background-color: var(--bg-main);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.review-card.wide {
    grid-column: 1 / -1;
}

.review-card:hover {
    border-color: var(--border-glass);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.review-rating {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.review-platform {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

/* LOCATION & HOURS SECTION */
.location-section {
    background-color: var(--bg-surface);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 1rem;
}

.contact-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-item span {
    color: var(--text-secondary);
    font-weight: 300;
}

.contact-item a {
    color: var(--accent);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.hours-wrapper {
    margin-top: 30px;
    margin-bottom: 40px;
}

.hours-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border-glass);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.hours-table td.day-name {
    font-weight: 500;
    color: var(--text-primary);
}

.hours-table td.day-time {
    text-align: right;
    color: var(--text-secondary);
    font-weight: 300;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.map-box {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.map-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.map-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-weight: 300;
}

.btn-map {
    background-color: var(--accent);
    color: #fff !important;
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-map:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg circle {
    transition: var(--transition);
}

.whatsapp-float:hover svg circle {
    fill: #208714;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--bg-surface);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-glass);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(41, 167, 26, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(41, 167, 26, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(41, 167, 26, 0);
    }
}

/* FOOTER */
.footer {
    background-color: var(--bg-footer);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom .credit a {
    color: var(--text-primary);
    transition: var(--transition);
}

.footer-bottom .credit a:hover {
    color: var(--accent);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .vibe-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .gallery-item:nth-child(3n) {
        grid-column: span 1;
    }
    
    .lang-toggle-container {
        margin-right: 10px;
    }
    
    .menu-columns-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
