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

:root {
    --bg-dark: #faf7f2;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --accent-gold: #b38f1d;
    --accent-gold-hover: #d4af37;
    --accent-purple: #8b3dc8;
    --accent-purple-glow: rgba(139, 61, 200, 0.08);
    --text-light: #2c353f;
    --text-muted: #626f7f;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-gold: rgba(179, 143, 29, 0.15);
    --border-gold-hover: rgba(179, 143, 29, 0.4);
    --sidebar-width: 320px;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.25s ease;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
}

/* Ethereal background aura animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: 
        radial-gradient(circle at 10% 20%, rgba(139, 61, 200, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, #faf7f2 0%, #f4eee1 100%);
    pointer-events: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Typography styles */
h1, h2, h3, h4, .brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 1px;
}

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

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background-color: rgba(255, 253, 250, 0.95);
    border-right: 1px solid var(--border-light);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
    z-index: 100;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform var(--transition-slow);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    cursor: pointer;
}

.logo-image {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(179, 143, 29, 0.15));
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

.logo-image:hover {
    filter: drop-shadow(0 0 15px rgba(179, 143, 29, 0.3)) brightness(1.02);
    transform: scale(1.02);
}

.brand-name {
    font-size: 2.2rem;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-align: center;
    margin-top: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
    background: transparent;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.02);
    padding-left: 1.4rem;
}

.nav-menu a.active {
    background: rgba(212, 175, 55, 0.05);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

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

.contact-info-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    width: 100%;
}

.version-info {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.15);
    text-align: center;
    margin-top: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 300;
}

/* Mobile Header / Navigation */
.mobile-header {
    display: none;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 253, 250, 0.95);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
    padding: 0 1.5rem;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.mobile-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
    transition: all 0.3s ease;
}

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

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

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

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    min-height: 100vh;
    position: relative;
}

.page-section {
    display: none;
    padding: 6rem 8% 8rem 8%;
    animation: fadeEffect 0.8s var(--transition-slow);
}

.page-section.active {
    display: block;
}

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

/* Specific Section Styles */

/* Hero Banner Style */
.hero-banner {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: linear-gradient(rgba(255, 253, 250, 0.35), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_femme.jpg') center/cover no-repeat;
    background-attachment: fixed;
    box-shadow: 0 15px 35px rgba(179, 143, 29, 0.05);
    margin-bottom: 4rem;
}

/* Celestial Aurora Orbs */
.aurora-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.12;
    animation: orbFloat 25s ease-in-out infinite alternate;
}
.orb-1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.75) 0%, transparent 70%);
    top: -10vw;
    left: -10vw;
    animation-duration: 22s;
}
.orb-2 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(139, 61, 200, 0.6) 0%, transparent 70%);
    bottom: -15vw;
    right: -10vw;
    animation-duration: 30s;
    animation-delay: -6s;
}
.orb-3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(255, 245, 245, 0.95) 0%, transparent 70%);
    top: 20%;
    left: 40%;
    animation-duration: 26s;
    animation-delay: -13s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(8vw, -5vw) scale(1.1) rotate(180deg); }
    100% { transform: translate(-5vw, 10vw) scale(0.9) rotate(360deg); }
}

.hero-banner h1 {
    font-size: 5rem;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #2c353f;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.2), 0 0 50px rgba(212, 175, 55, 0.08), 0 2px 10px rgba(255,255,255,0.9);
    position: relative;
    z-index: 3;
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 650px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 12px rgba(255,255,255,0.9);
    position: relative;
    z-index: 3;
}

.btn-gold {
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

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

.btn-gold:hover::after {
    left: 100%;
}

/* Sections headers */
.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

/* Immersive Section Banners */
.section-banner {
    min-height: 32vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 6%;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 15px 35px rgba(179, 143, 29, 0.05);
    margin-bottom: 4rem;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.section-banner h2 {
    font-size: 3.2rem;
    color: var(--text-light) !important;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.section-banner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    text-shadow: 0 1px 8px rgba(255,255,255,0.8);
}

#accompagnements-banner {
    background: linear-gradient(rgba(255, 253, 250, 0.45), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_lotus.png') center/cover no-repeat;
    background-attachment: fixed;
}

#stages-banner {
    background: linear-gradient(rgba(255, 253, 250, 0.45), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_ours.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

#animaux-banner {
    background: linear-gradient(rgba(255, 253, 250, 0.45), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_loup.png') center/cover no-repeat;
    background-attachment: fixed;
}

#art-banner {
    background: linear-gradient(rgba(255, 253, 250, 0.45), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_oiseau.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

#biographie-banner {
    background: linear-gradient(rgba(255, 253, 250, 0.45), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_dragon.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

#reservation-banner {
    background: linear-gradient(rgba(255, 253, 250, 0.45), rgba(255, 253, 250, 0.85)), 
                url('images/peinture_lumiere2.png') center/cover no-repeat;
    background-attachment: fixed;
}

/* Event updates card */
.events-tracker {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 10px 30px rgba(179, 143, 29, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.events-tracker h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.8rem;
}

.event-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border-light);
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    font-weight: 500;
    color: var(--accent-purple);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.event-details h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.4rem;
}

.event-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all var(--transition-slow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(179, 143, 29, 0.05);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: 0 15px 35px rgba(179, 143, 29, 0.12);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-tag {
    font-size: 0.65rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
    margin-top: auto;
}

.card-price {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-weight: 600;
}

.btn-card {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-card:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

/* Masterclass Panel */
.masterclass-section {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(246, 238, 255, 0.75));
    border: 1px solid rgba(139, 61, 200, 0.15);
    border-radius: 8px;
    padding: 3.5rem;
    margin-top: 3rem;
    box-shadow: 0 15px 35px rgba(179, 143, 29, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.masterclass-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.masterclass-header h3 {
    font-size: 2.5rem;
    color: var(--text-light);
}

.masterclass-badge {
    background: rgba(157, 78, 221, 0.2);
    border: 1px solid var(--accent-purple);
    color: #dfb2ff;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
}

.masterclass-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.masterclass-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.level-box h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.level-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.level-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.level-features li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
}

.level-features li::before {
    content: '✦';
    color: var(--accent-purple);
    font-size: 0.7rem;
}

.masterclass-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.masterclass-prices {
    display: flex;
    gap: 2.5rem;
}

.price-item {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Art Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.art-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--transition-slow);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.art-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(212,175,55,0.15);
}

.art-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background-color: #03060a;
}

.art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%) sepia(5%);
    transition: transform var(--transition-slow), filter var(--transition-slow);
}

.art-card:hover .art-img {
    transform: scale(1.08);
    filter: grayscale(0%) sepia(0%);
}

.art-info {
    padding: 1.5rem;
}

.art-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.art-dimensions {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.art-pricing {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

/* Lightbox Style */
.art-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 5, 8, 0.98);
    z-index: 200;
    padding: 4rem 2rem;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    display: flex;
    max-width: 1100px;
    width: 100%;
    max-height: 80vh;
    background: #faf7f2;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    position: relative;
}

.close-lightbox {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 10;
}

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

.lightbox-img-side {
    flex: 1;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-side img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-info-side {
    flex: 1;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border-light);
}

.lightbox-info-side h3 {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.lightbox-dims {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.lightbox-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

/* Biography section layout */
.biography-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bio-content p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bio-content strong {
    color: var(--text-light);
}

.qualifications-list {
    margin-top: 3rem;
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.qualifications-list h3 {
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.qualifications-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.qualifications-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    padding-left: 1.2rem;
    position: relative;
}

.qualifications-list li::before {
    content: '✧';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    top: 0.2rem;
    font-size: 0.7rem;
}

.qual_name {
    font-weight: 500;
}

.qual_teacher {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* Contact / Booking Simulator Section */
.booking-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.booking-guide h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.booking-guide p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.step-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.step-num {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(179, 143, 29, 0.08);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-text h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.step-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.phone-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(179, 143, 29, 0.08);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.payment-simulator {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(179, 143, 29, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.payment-simulator h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.payment-simulator-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.select-service, .input-text {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 1rem;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.select-service:focus, .input-text:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 10px rgba(179, 143, 29, 0.1);
}

.select-service option {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.payment-summary {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.payment-summary span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-total {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    font-weight: bold;
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .biography-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .qualifications-list ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    body {
        flex-direction: column;
    }
    
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        height: 100vh;
        position: fixed;
        top: 70px; /* Offset for mobile header */
        height: calc(100vh - 70px);
        padding: 2rem 1.5rem;
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 70px;
    }
    
    .page-section {
        padding: 4rem 5% 6rem 5%;
    }
    
    .hero-banner {
        min-height: 60vh;
        align-items: center;
        text-align: center;
        padding: 3rem 8%;
    }
    
    .aurora-orb {
        display: none !important;
    }
    
    .hero-banner h1 {
        font-size: 2.8rem;
        text-shadow: 0 2px 15px rgba(255,255,255,0.95);
    }

    .hero-banner p {
        margin: 0 auto 2rem auto;
        font-size: 1.05rem;
        max-width: 550px;
        text-shadow: 0 2px 15px rgba(255,255,255,0.95);
    }

    .hero-banner .btn-gold {
        align-self: center;
    }
    
    .section-banner {
        min-height: 25vh;
        padding: 2rem 5%;
    }
    
    .hero-banner, .section-banner {
        background-attachment: scroll !important;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .lightbox-content {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .lightbox-img-side {
        max-height: 50vh;
    }
    
    .lightbox-info-side {
        padding: 2rem;
        border-left: none;
        border-top: 1px solid var(--border-light);
    }
}

@media (max-width: 640px) {
    .hero-banner {
        min-height: 50vh;
        padding: 2.5rem 6%;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .hero-banner p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header h2, .section-banner h2 {
        font-size: 2rem;
    }
    
    .event-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .masterclass-levels {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .masterclass-section {
        padding: 2rem 1.5rem;
    }
    
    .masterclass-header h3 {
        font-size: 1.8rem;
    }
}

/* Welcome Card Layout with Eye Image */
.welcome-card {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: center;
}

.welcome-img-wrapper {
    flex: 0 0 250px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 1.5px solid var(--border-gold);
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.15);
    background-color: #03060a;
}

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

.welcome-card:hover .welcome-img {
    transform: scale(1.06);
}

.welcome-content {
    flex: 1;
}

/* Biography Portrait Layout */
.bio-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4.5;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    background-color: #03060a;
}

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

.biography-layout:hover .bio-img {
    transform: scale(1.02);
}

/* Map Card Layout */
.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-card h4 {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.map-link-wrapper {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    cursor: pointer;
}

.map-image-container {
    width: 100%;
    height: 220px;
    position: relative;
    background-color: #03060a;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 8, 15, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.map-btn {
    background-color: rgba(5, 10, 17, 0.85);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    font-weight: 500;
    transition: all var(--transition-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.map-link-wrapper:hover .map-img {
    transform: scale(1.04);
}

.map-link-wrapper:hover .map-overlay {
    background-color: rgba(4, 8, 15, 0.15);
}

.map-link-wrapper:hover .map-btn {
    background-color: var(--accent-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Extra media query responsive items */
@media (max-width: 1024px) {
    .welcome-card {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .welcome-img-wrapper {
        width: 200px;
        height: 200px;
        flex: 0 0 200px;
    }
    
    .welcome-card .card-footer {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

/* ==========================================================================
   Topbar & Authentication Styling
   ========================================================================== */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    height: 75px;
    background: rgba(255, 253, 250, 0.85);
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 4px 20px rgba(179, 143, 29, 0.03);
    transition: all var(--transition-fast);
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    opacity: 0.85;
    white-space: nowrap;
}

/* Center Navigation Shortcuts */
.topbar-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.topbar-link {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.topbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.topbar-link:hover {
    color: var(--accent-gold);
}

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

/* Right side elements */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Cart Button in Topbar */
.topbar-cart-btn {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--text-light);
    transition: all var(--transition-fast);
    outline: none;
}

.topbar-cart-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(179, 143, 29, 0.1);
    transform: translateY(-1px);
}

.topbar-cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #e74c3c;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Topbar Responsive */
@media (max-width: 1360px) {
    .topbar-quote {
        display: none;
    }
}

@media (max-width: 1180px) {
    .topbar-center {
        display: none; /* Hide center links on tablet to prevent crowding */
    }
}

.auth-zone {
    display: flex;
    align-items: center;
}

.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.2rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.btn-login:hover {
    background: var(--accent-gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(179, 143, 29, 0.2);
    transform: translateY(-1px);
}

.btn-login .icon {
    font-size: 0.85rem;
}

/* User Profile Menu & Dropdown */
.user-profile-menu {
    position: relative;
    display: inline-block;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-gold);
    padding: 0.45rem 1rem 0.45rem 0.5rem;
    border-radius: 50px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    outline: none;
}

.profile-trigger:hover, .user-profile-menu.open .profile-trigger {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(179, 143, 29, 0.1);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(139, 61, 200, 0.2);
}

.profile-trigger .arrow {
    font-size: 0.55rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.user-profile-menu.open .profile-trigger .arrow {
    transform: rotate(180deg);
}

/* Premium Dropdown Styling */
.profile-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 300px; /* Wider for rich details */
    background: rgba(255, 253, 250, 0.98);
    border: 1px solid rgba(179, 143, 29, 0.25);
    border-radius: 12px;
    padding: 0; /* Remove padding to style header and items flush */
    box-shadow: 0 15px 35px rgba(179, 143, 29, 0.18);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 100;
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.user-profile-menu.open .profile-dropdown {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Dropdown Header Card */
.dropdown-header-card {
    background: linear-gradient(135deg, rgba(139, 61, 200, 0.05), rgba(179, 143, 29, 0.05));
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dropdown-header-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 8px rgba(139, 61, 200, 0.25);
}

.dropdown-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.dropdown-header-info .user-name-detail {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
}

.dropdown-header-info .user-email {
    font-size: 0.75rem;
    color: var(--text-muted);
    word-break: break-all;
}

.user-role-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.4rem;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.user-role-badge.praticienne, .user-role-badge.super-admin {
    background: rgba(139, 61, 200, 0.08);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 61, 200, 0.15);
}

.user-role-badge.client {
    background: rgba(179, 143, 29, 0.08);
    color: var(--accent-gold);
    border: 1px solid rgba(179, 143, 29, 0.15);
}

/* Dropdown Section Label */
.dropdown-section-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    padding: 0.8rem 1.25rem 0.4rem 1.25rem;
}

/* Premium Items */
.profile-dropdown .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.profile-dropdown .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.06);
    color: var(--accent-gold);
    padding-left: 1.4rem;
    border-left-color: var(--accent-gold);
}

.profile-dropdown .dropdown-item.logout-link:hover {
    background: rgba(192, 57, 43, 0.04);
    color: #e74c3c;
    border-left-color: #e74c3c;
}

.item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-top: 0.15rem;
    transition: color var(--transition-fast);
}

.profile-dropdown .dropdown-item:hover .item-icon {
    color: inherit;
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.item-title {
    font-size: 0.85rem;
    font-weight: 500;
}

.item-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Dropdown Info Row */
.dropdown-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.25rem 0.8rem 1.25rem;
    font-size: 0.75rem;
}

.info-label {
    color: var(--text-muted);
}

.info-status {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.info-status::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #27ae60;
}

.info-status.active {
    color: #27ae60;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-light);
    margin: 0;
}

/* Mobile Auth Area */
.auth-zone-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .topbar {
        display: none !important;
    }
    
    .auth-zone-mobile {
        display: block;
        margin-left: auto;
        margin-right: 1.5rem;
    }
    
    .auth-zone-mobile .btn-login {
        padding: 0.45rem 0.9rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .auth-zone-mobile .profile-trigger {
        padding: 0.35rem 0.8rem 0.35rem 0.35rem;
    }
    
    .auth-zone-mobile .profile-trigger .user-name {
        display: none; /* Hide name on mobile header to save space */
    }
}

/* ==========================================================================
   Premium Footer Styling
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.8) 0%, rgba(244, 238, 225, 0.95) 100%);
    border-top: 1px solid var(--border-gold);
    padding: 5rem 8% 3rem 8%;
    margin-top: 6rem;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(179, 143, 29, 0.02);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-logo {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(179, 143, 29, 0.1));
}

.footer-col h4 {
    font-size: 1.4rem;
    color: var(--accent-gold);
    font-weight: 400;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-col p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.footer-col ul a:hover {
    color: var(--accent-gold);
    padding-left: 0.3rem;
}

.footer-col.contact-col p {
    margin-bottom: 0.5rem;
}

.footer-col.contact-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col.contact-col a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 4rem auto 0 auto;
    border-top: 1px solid var(--border-light);
    padding-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Footer Responsive overrides */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

