@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-dark: #b59023;
    --gold-light: #f3e5ab;
    --gold-gradient: linear-gradient(135deg, #f3e5ab 0%, #d4af37 50%, #aa7c11 100%);
    --bg-dark: #0a0b0d;
    --bg-card: #12141a;
    --bg-card-hover: #181b24;
    --text-white: #ffffff;
    --text-gray: #a0a5b5;
    --text-gold: #e5c158;
    --glass: rgba(18, 20, 26, 0.75);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-border-hover: rgba(212, 175, 55, 0.4);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: 1px;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover, a:focus {
    color: var(--gold-light);
    text-decoration: none;
}

/* Header & Navigation */
header.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

header.header.scrolled {
    background: rgba(10, 11, 13, 0.95);
    box-shadow: var(--shadow);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-item a {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 10px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-item a:hover {
    color: var(--gold);
}

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

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

.nav-item.active a::after {
    width: 100%;
}

.menu-book-btn {
    background: var(--gold-gradient);
    color: var(--bg-dark) !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid transparent;
}

.menu-book-btn::after {
    display: none !important;
}

.menu-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: var(--text-white);
    color: var(--bg-dark) !important;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 11, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item a {
        font-size: 20px;
    }
}

/* Hero Section & Cinematic Carousel */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.28) contrast(1.1);
}

.hero-slide.active .hero-bg {
    animation: kenBurns 12s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.03); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 11, 13, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 2;
}

/* Staggered text animations for active slide */
.hero-subtitle {
    font-size: 24px;
    color: var(--gold);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-subtitle {
    animation: slideUpFade 0.8s 0.3s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-title {
    animation: slideUpFade 0.8s 0.5s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-desc {
    animation: slideUpFade 0.8s 0.7s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(15px);
}

.hero-slide.active .btn-container {
    animation: slideUpFade 0.8s 0.9s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 11, 13, 0.4);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.hero:hover .carousel-control {
    opacity: 1;
}

.carousel-control:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

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

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

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

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

/* Buttons */
.btn-gold, .btn-outline {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 46px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}

/* Grid & Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 36px;
    }
    .hero-title {
        font-size: 45px;
    }
}

.card-gold {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

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

.card-gold:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--glass-border-hover);
}

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

.card-icon {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 25px;
}

.card-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.card-desc {
    color: var(--text-gray);
    font-size: 15px;
}

/* Page Header Banner (for subpages) */
.page-banner {
    padding: 160px 0 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 11, 13, 0.8);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h2 {
    font-size: 54px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--gold);
}

.breadcrumbs span {
    color: var(--text-white);
}

/* Floating WhatsApp button */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.float-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #FFF;
}

/* Footer Section */
.footer-section {
    background: #060709;
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
}

.footer-logo {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col i {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-col p {
    font-size: 15px;
    color: var(--text-gray);
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--bg-dark);
    background: var(--gold-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* Shared page utility animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Category Menu Page Styling */
.menu-category-container {
    padding: 80px 0;
}
.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .menu-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .menu-category-grid {
        grid-template-columns: 1fr;
    }
}
.menu-category-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: fit-content;
}
.menu-category-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}
.menu-category-title {
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-category-list {
    list-style: none;
}
.menu-category-list li {
    color: var(--text-gray);
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-category-list li::before {
    content: '\f105'; /* FontAwesome angle right */
    font-family: 'FontAwesome';
    color: var(--gold);
}
.menu-category-list li:last-child {
    border-bottom: none;
}
.menu-category-list li b {
    font-weight: 500;
    color: var(--text-white);
}

.category-banner-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
}

.category-banner-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.category-banner-image:hover {
    border-color: var(--gold);
}

/* Category menu navigation block on Menu.html */
.menu-hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .menu-hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .menu-hub-grid {
        grid-template-columns: 1fr;
    }
}
.menu-hub-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}
.menu-hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 11, 13, 0.95) 100%);
    z-index: 1;
}
.menu-hub-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.menu-hub-card:hover img {
    transform: scale(1.08);
}
.menu-hub-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}
.menu-hub-info {
    position: relative;
    z-index: 2;
}
.menu-hub-title {
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 5px;
}
.menu-hub-action {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Auto-wrapping columns for menu lists within cards */
.menu-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px 30px;
    list-style: none;
}

/* Layout adjustments when there are multiple cards vs a single card */
.menu-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* If a page has only one card section, make it span full-width */
.menu-category-grid.single-section {
    grid-template-columns: 1fr;
}

.menu-category-grid.single-section .menu-category-card {
    width: 100%;
}

/* Visual Gallery section for category pages */
.category-gallery-section {
    margin-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 50px;
}
.category-gallery-title {
    font-size: 32px;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.category-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) {
    .category-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .category-gallery-grid {
        grid-template-columns: 1fr;
    }
}
.category-gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.category-gallery-img:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}
/* Footer Logo Side-by-side with Lord Ghanshyam Image */
.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}
.footer-lord-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
}
.footer-lord-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}
.footer-main-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0 !important;
}

@media (max-width: 575px) {
    .footer-logo-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .footer-lord-img {
        height: 100px;
    }
    .footer-main-logo {
        height: 80px;
    }
}

/* Preloader Styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-content {
    text-align: center;
}
.loader-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    animation: logoPulse 1.8s ease-in-out infinite;
    display: block;
    margin: 0 auto 25px auto;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--gold);
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/* Bilingual Menu Styling */
.lang-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 35px auto 15px auto;
}
.lang-toggle-wrapper {
    display: flex;
    background: rgba(18, 20, 26, 0.85);
    border: 1px solid var(--glass-border);
    padding: 5px;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}
.lang-toggle-wrapper:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}
.btn-lang-toggle {
    background: transparent;
    border: none;
    color: var(--text-gray);
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
}
.btn-lang-toggle.active {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.45);
    font-weight: 700;
}
.btn-lang-toggle:hover:not(.active) {
    color: var(--gold);
    transform: translateY(-1px);
}

.lang-gu {
    font-family: var(--font-body);
}

@keyframes logoPulse {
    0%, 100% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

