html {
  scroll-behavior: smooth;
}
:root {
    --bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent: #d4af37; /* Legacy Gold */
    --text: #ffffff;
    --text-dim: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; color: var(--accent); }

/* NAVBAR STYLES */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

/* Offset for the content since navbar is fixed */
body { padding-top: 60px; }
/* 1. CAMERA SHUTTER HERO */
.camera-container {
    position: relative;
    width: 100%;
    height: 100vh;
    cursor: pointer;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shutter-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: background-image 0.5s ease;
}

.photo-frame {
    position: relative;
    width: 300px;
    height: 380px;
    background: #fff;
    padding: 15px 15px 60px 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    z-index: 5;
    transform: rotate(-3deg);
    display: none;
}

.camera-container.clicked .photo-frame {
    display: block;
    animation: photoDevelop 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.photo-content {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.photo-text {
    position: absolute;
    bottom: 10px; left: 0; width: 100%;
    text-align: center; color: #222;
}

.flap {
    width: 150vmax; height: 150vmax;
    position: absolute; bottom: 50%; right: 50%;
    pointer-events: none;
    background: linear-gradient(35deg, #1a1a1a, #000);
    border: solid 1px #333;
    --p: calc(var(--i) / var(--flaps));
    transform-origin: bottom right;
    transform: rotate(-0.5turn) rotate(calc(1turn * var(--p))) skewX(30deg) translateX(-100%) translateY(90%);
    z-index: 10;
}

.camera-container.clicked .flap {
    animation: shutterClick 0.8s cubic-bezier(0.5, 0, 0.5, 1);
}

@keyframes shutterClick {
    48%, 52% { transform: rotate(-0.25turn) rotate(calc(1turn * var(--p))) skewX(30deg) translateX(0%) translateY(0%); }
}

@keyframes photoDevelop {
    0% { transform: scale(0.8) rotate(-10deg) translateY(100px); opacity: 0; }
    100% { transform: scale(1) rotate(-3deg) translateY(0); opacity: 1; }
}

.instructions {
    position: absolute; bottom: 40px;
    color: var(--accent); letter-spacing: 4px; font-weight: bold;
    z-index: 11; font-size: 0.7rem;
}

/* 2. ABOUT SECTION */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.placeholder-img { background: #222; height: 400px; display: flex; align-items: center; justify-content: center; color: #444; border-radius: 8px; border: 1px solid var(--accent); }

/* 3. PRICING */
.pricing-section { padding: 80px 0; background: #0f0f0f; }
.pricing-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px; border-radius: 20px; width: 340px; text-align: center;
    transition: transform 0.3s ease;
}
.price-card.highlighted { border: 1px solid var(--accent); transform: scale(1.05); }
.price { font-size: 3rem; color: var(--accent); margin: 20px 0; font-weight: bold; }
.price-card ul { list-style: none; color: var(--text-dim); text-align: left; margin-top: 20px; }
.price-card li { margin-bottom: 10px; border-bottom: 1px solid #222; padding-bottom: 5px; }

/* 4. MARQUEE */
.marquee { background: var(--accent); color: #000; padding: 20px 0; overflow: hidden; white-space: nowrap; font-weight: 900; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; font-size: 1.2rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 5. CTA */
.cta-section { padding: 100px 0; text-align: center; }
.gallery-btn {
    display: inline-block; padding: 20px 40px; background: transparent;
    border: 2px solid var(--accent); color: var(--accent);
    text-decoration: none; font-weight: bold; letter-spacing: 2px;
    transition: all 0.3s ease;
}
.gallery-btn:hover { background: var(--accent); color: #000; }

/* 6. STORIES */
.stories-section { padding: 100px 0; background: #050505; }
.story-carousel { display: flex; overflow-x: auto; gap: 30px; padding: 20px 0; scroll-snap-type: x mandatory; }
.story-carousel::-webkit-scrollbar { display: none; }
.story-card {
    min-width: 300px; background: #111; padding: 40px;
    border-radius: 15px; scroll-snap-align: center;
    border-top: 4px solid var(--accent);
}

/* FOOTER */
footer { padding: 80px 0; border-top: 1px solid #1a1a1a; text-align: center; }
.timestamp { margin-top: 20px; font-family: monospace; color: var(--accent); font-size: 1.5rem; }

/* MOBILE */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .price-card { width: 100%; }
    .photo-frame { width: 260px; height: 320px; }
}
/* GALLERY PAGE SPECIFIC */
.gallery-header {
    text-align: center;
    padding: 100px 20px 50px;
}

.gallery-header h1 { font-size: 3.5rem; color: var(--accent); }

.gallery-grid-container {
    padding: 0 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

/* The Masonry Magic */
.masonry-grid {
    column-count: 3; /* 3 columns on desktop */
    column-gap: 20px;
}

.grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.grid-item img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.grid-item:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.grid-item:hover img {
    filter: grayscale(0%);
}

/* Responsive Masonry */
@media (max-width: 900px) {
    .masonry-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .masonry-grid { column-count: 1; }
    .gallery-header h1 { font-size: 2.5rem; }
}
/* JOIN BUTTON */
.upload-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;    /* Forces horizontal center */
    justify-content: center !important; /* Forces vertical center */
    text-align: center !important;
    width: 100% !important;
    padding: 100px 0 !important;       /* Gives it that elite breathing room */
    background-color: var(--bg);
    margin: 0 auto !important;
    clear: both;                       /* Ensures no floating gallery items block it */
}
.join-text {
    color: var(--text-dim);
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    width: 100%;                       /* Ensures the text box itself is full width */
}
.join-btn {
    background: var(--accent);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* MODAL BOX */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--accent);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem; color: #fff; cursor: pointer;
}

/* UPLOAD AREA */
.upload-area {
    margin: 30px 0;
    border: 2px dashed #444;
    padding: 40px;
    border-radius: 15px;
    transition: border 0.3s;
}
.upload-area:hover { border-color: var(--accent); }
#fileElem { display: none; }
.file-label { cursor: pointer; color: var(--text-dim); }
.upload-icon { font-size: 3rem; margin-bottom: 10px; }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    cursor: pointer;
}
.submit-btn:hover { background: var(--accent); color: #000; }
.modal {
    display: none; 
    position: fixed;
    z-index: 9999; /* Make this higher than everything else */
    inset: 0;
    background: rgba(0, 0, 0, 0.95); /* Slightly darker for more focus */
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}
/* VISIT PAGE STYLES */
.visit-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #111, var(--bg));
}

.visit-hero h1 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.subtitle {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 100px;
    align-items: center;
}

.address-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

.address-card h3 { font-size: 2rem; margin-bottom: 20px; }

.address-text {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #fff;
}

.mall-info {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.mall-info span { color: var(--accent); font-weight: bold; }

.map-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
}

/* Map Styling */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Elite Dark Map Effect */
    border: 1px solid #333;
}

/* MOBILE ADAPTATION */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .visit-hero h1 { font-size: 2.5rem; }
    .address-card { padding: 30px; }
}
/* HAMBURGER STYLES */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

/* MOBILE NAV (Under 768px) */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden off-screen */
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--accent);
    }

    .nav-links.active { right: 0; } /* Slide in */

    /* Animation: Turn Hamburger into X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
.dev-credit {
    margin-top: 25px;
    font-size: 0.7rem;
    color: var(--accent);
    opacity: 0.6;
    letter-spacing: 1px;
    text-transform: uppercase;
}
html {
  scroll-behavior: smooth;
}
:root {
    --bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --accent: #d4af37; /* Legacy Gold */
    --text: #ffffff;
    --text-dim: #b0b0b0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; margin-bottom: 40px; font-size: 2.5rem; color: var(--accent); }

/* NAVBAR STYLES */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.nav-logo span { color: var(--accent); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

/* Offset for the content since navbar is fixed */
body { padding-top: 60px; }
/* 1. CAMERA SHUTTER HERO */
.camera-container {
    position: relative;
    width: 100%;
    height: 100vh;
    cursor: pointer;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shutter-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transition: background-image 0.5s ease;
}

.photo-frame {
    position: relative;
    width: 300px;
    height: 380px;
    background: #fff;
    padding: 15px 15px 60px 15px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    z-index: 5;
    transform: rotate(-3deg);
    display: none;
}

.camera-container.clicked .photo-frame {
    display: block;
    animation: photoDevelop 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.photo-content {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.photo-text {
    position: absolute;
    bottom: 10px; left: 0; width: 100%;
    text-align: center; color: #222;
}

.flap {
    width: 150vmax; height: 150vmax;
    position: absolute; bottom: 50%; right: 50%;
    pointer-events: none;
    background: linear-gradient(35deg, #1a1a1a, #000);
    border: solid 1px #333;
    --p: calc(var(--i) / var(--flaps));
    transform-origin: bottom right;
    transform: rotate(-0.5turn) rotate(calc(1turn * var(--p))) skewX(30deg) translateX(-100%) translateY(90%);
    z-index: 10;
}

.camera-container.clicked .flap {
    animation: shutterClick 0.8s cubic-bezier(0.5, 0, 0.5, 1);
}

@keyframes shutterClick {
    48%, 52% { transform: rotate(-0.25turn) rotate(calc(1turn * var(--p))) skewX(30deg) translateX(0%) translateY(0%); }
}

@keyframes photoDevelop {
    0% { transform: scale(0.8) rotate(-10deg) translateY(100px); opacity: 0; }
    100% { transform: scale(1) rotate(-3deg) translateY(0); opacity: 1; }
}

.instructions {
    position: absolute; bottom: 40px;
    color: var(--accent); letter-spacing: 4px; font-weight: bold;
    z-index: 11; font-size: 0.7rem;
}

/* 2. ABOUT SECTION */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.placeholder-img { background: #222; height: 400px; display: flex; align-items: center; justify-content: center; color: #444; border-radius: 8px; border: 1px solid var(--accent); }

/* 3. PRICING */
.pricing-section { padding: 80px 0; background: #0f0f0f; }
.pricing-container { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.price-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px; border-radius: 20px; width: 340px; text-align: center;
    transition: transform 0.3s ease;
}
.price-card.highlighted { border: 1px solid var(--accent); transform: scale(1.05); }
.price { font-size: 3rem; color: var(--accent); margin: 20px 0; font-weight: bold; }
.price-card ul { list-style: none; color: var(--text-dim); text-align: left; margin-top: 20px; }
.price-card li { margin-bottom: 10px; border-bottom: 1px solid #222; padding-bottom: 5px; }

/* 4. MARQUEE */
.marquee { background: var(--accent); color: #000; padding: 20px 0; overflow: hidden; white-space: nowrap; font-weight: 900; }
.marquee-content { display: inline-block; animation: marquee 20s linear infinite; font-size: 1.2rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* 5. CTA */
.cta-section { padding: 100px 0; text-align: center; }
.gallery-btn {
    display: inline-block; padding: 20px 40px; background: transparent;
    border: 2px solid var(--accent); color: var(--accent);
    text-decoration: none; font-weight: bold; letter-spacing: 2px;
    transition: all 0.3s ease;
}
.gallery-btn:hover { background: var(--accent); color: #000; }

/* 6. STORIES */
.stories-section { padding: 100px 0; background: #050505; }
.story-carousel { display: flex; overflow-x: auto; gap: 30px; padding: 20px 0; scroll-snap-type: x mandatory; }
.story-carousel::-webkit-scrollbar { display: none; }
.story-card {
    min-width: 300px; background: #111; padding: 40px;
    border-radius: 15px; scroll-snap-align: center;
    border-top: 4px solid var(--accent);
}

/* FOOTER */
footer { padding: 80px 0; border-top: 1px solid #1a1a1a; text-align: center; }
.timestamp { margin-top: 20px; font-family: monospace; color: var(--accent); font-size: 1.5rem; }

/* MOBILE */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .price-card { width: 100%; }
    .photo-frame { width: 260px; height: 320px; }
}
/* GALLERY PAGE SPECIFIC */
.gallery-header {
    text-align: center;
    padding: 100px 20px 50px;
}

.gallery-header h1 { font-size: 3.5rem; color: var(--accent); }

.gallery-grid-container {
    padding: 0 20px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

/* The Masonry Magic */
.masonry-grid {
    column-count: 3; /* 3 columns on desktop */
    column-gap: 20px;
}

.grid-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.grid-item img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.grid-item:hover {
    transform: scale(1.02);
    border-color: var(--accent);
}

.grid-item:hover img {
    filter: grayscale(0%);
}

/* Responsive Masonry */
@media (max-width: 900px) {
    .masonry-grid { column-count: 2; }
}

@media (max-width: 600px) {
    .masonry-grid { column-count: 1; }
    .gallery-header h1 { font-size: 2.5rem; }
}
/* MODAL BOX */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--accent);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem; color: #fff; cursor: pointer;
}

/* UPLOAD AREA */
.upload-area {
    margin: 30px 0;
    border: 2px dashed #444;
    padding: 40px;
    border-radius: 15px;
    transition: border 0.3s;
}
.upload-area:hover { border-color: var(--accent); }
#fileElem { display: none; }
.file-label { cursor: pointer; color: var(--text-dim); }
.upload-icon { font-size: 3rem; margin-bottom: 10px; }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 8px;
    cursor: pointer;
}
.submit-btn:hover { background: var(--accent); color: #000; }
.modal {
    display: none; 
    position: fixed;
    z-index: 9999; /* Make this higher than everything else */
    inset: 0;
    background: rgba(0, 0, 0, 0.95); /* Slightly darker for more focus */
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
}
/* VISIT PAGE STYLES */
.visit-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #111, var(--bg));
}

.visit-hero h1 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.subtitle {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 100px;
    align-items: center;
}

.address-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    border-left: 5px solid var(--accent);
}

.address-card h3 { font-size: 2rem; margin-bottom: 20px; }

.address-text {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #fff;
}

.mall-info {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.mall-info span { color: var(--accent); font-weight: bold; }

.map-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 5px;
}

/* Map Styling */
.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Elite Dark Map Effect */
    border: 1px solid #333;
}

/* MOBILE ADAPTATION */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .visit-hero h1 { font-size: 2.5rem; }
    .address-card { padding: 30px; }
}
/* HAMBURGER STYLES */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

/* MOBILE NAV (Under 768px) */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Hidden off-screen */
        top: 0;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--accent);
    }

    .nav-links.active { right: 0; } /* Slide in */

    /* Animation: Turn Hamburger into X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}
/* Force the link to be light blue regardless of other settings */
.dev-credit a {
    color: #add8e6 !important; 
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.3s ease;
}

/* Make it turn Gold when someone hovers over it */
.dev-credit a:hover {
    color: var(--accent) !important;
    text-decoration: underline !important;
}
/* STUDIO HOURS CARD */
.hours-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 15px;
    border-right: 5px solid var(--accent); /* Mirroring the address card */
}

.hours-card h3 { 
    font-size: 2rem; 
    margin-bottom: 25px; 
    color: var(--accent);
}

.hours-list {
    list-style: none;
    padding: 0;
}

.day-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
}

.day-row:last-child { border-bottom: none; }

.day { font-weight: 600; color: #fff; }
.time { color: var(--text-dim); }

/* Special styling for closed days */
.day-row.closed .time {
    color: #ff4d4d; /* Subtle red for closed */
    font-style: italic;
    font-size: 0.9rem;
}

/* Gold accent for weekends to show prime time */
.day-row.weekend .day {
    color: var(--accent);
}

.hours-note {
    margin-top: 25px;
    font-size: 0.8rem;
    color: var(--text-dim);
    font-style: italic;
    opacity: 0.7;
}

/* ADJUST THE GRID FOR 3 COLUMNS OR WRAPPING */
@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr; /* Two cards side by side */
        align-items: start;
    }
    /* Move map to its own full-width section below the cards if you prefer */
}