/* ==========================================================================
   GEN X 1992 Art Exhibition - Premium Style Sheet
   Theme: Obsidian & Rich Gold Gallery
   ========================================================================== */

/* Design Tokens & Custom Properties */
:root {
    --bg-dark: #f5f2eb;
    /* Warm off-white canvas base */
    --bg-darker: #ede9e2;
    /* Textured sand backdrop */
    --bg-card: rgba(250, 248, 245, 0.9);
    /* Pure paper-white card backdrop */
    --bg-glass: rgba(245, 242, 235, 0.8);
    --gold: #ad8462;
    /* Earthy ochre / clay tan from invitation */
    --gold-light: #c29d7d;
    /* Light clay accent */
    --gold-dark: #8c6343;
    /* Deep rustic brown */
    --navy: #18293d;
    /* Deep indigo/navy blue stroke color */
    --charcoal: #1c1c1c;
    /* Main text color */
    --gold-gradient: linear-gradient(135deg, #18293d 0%, #ad8462 50%, #1c1c1c 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(24, 41, 61, 0.05) 0%, rgba(173, 132, 98, 0.08) 100%);
    --text-light: #1c1c1c;
    /* Inverted to dark charcoal for light theme */
    --text-muted: #5c5a55;
    /* Muted warm gray/olive */
    --border-color: rgba(28, 28, 28, 0.12);
    --border-glow: rgba(173, 132, 98, 0.4);
    --shadow-soft: 0 15px 35px rgba(28, 28, 28, 0.06);
    --shadow-gold: 0 15px 40px rgba(173, 132, 98, 0.08);
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --font-script: 'Alex Brush', cursive;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    letter-spacing: 0.03em;
    font-weight: 300;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    /* Fine-grain canvas texture */
    background-color: var(--bg-dark);
    background-image: radial-gradient(rgba(28, 28, 28, 0.015) 1px, transparent 0),
        radial-gradient(rgba(28, 28, 28, 0.015) 1px, transparent 0);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}

/* Background Ambient elements - disabled for light theme */
.ambient-glow {
    display: none;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* Scroll Animation Reveal Classes */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Typography elements */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 500;
}

h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    letter-spacing: 0.08em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.05em;
    line-height: 1.2;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

strong {
    color: var(--navy);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--navy);
    color: #f5f2eb;
    border: none;
    box-shadow: 0 4px 15px rgba(24, 41, 61, 0.15);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: #f5f2eb;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon i {
    margin-right: 0.6rem;
    font-size: 1rem;
}

.btn-icon-right {
    margin-left: 0.6rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.btn:hover .btn-icon-right {
    transform: translateX(5px);
}

/* Header & Navigation */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(245, 242, 235, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(28, 28, 28, 0.06);
    transition: var(--transition-smooth);
}

#site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(245, 242, 235, 0.97);
    box-shadow: 0 5px 20px rgba(28, 28, 28, 0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.logo-sub {
    font-size: 0.5rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    font-weight: 500;
}

#main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

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

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

.rsvp-btn {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
}

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

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

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-fast);
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
}

.hero-invited-tag {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.35em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--gold);
    padding-bottom: 0.4rem;
    width: fit-content;
}

.hero-title-main {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.hero-title-main .title-genx {
    font-family: var(--font-body);
    font-size: clamp(3.5rem, 6.5vw, 5.8rem);
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

.hero-title-main .title-1992 {
    font-family: var(--font-body);
    font-size: clamp(3.5rem, 6.5vw, 5.8rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.01em;
    margin-top: -0.4rem;
}

.hero-script-subtitle {
    font-family: var(--font-script);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--charcoal);
    margin-bottom: 1.8rem;
    line-height: 1;
    transform: rotate(-3deg);
    margin-left: 0.5rem;
    transform-origin: left center;
}

.minimal-divider {
    width: 80px;
    height: 2px;
    background-color: var(--border-color);
    margin-bottom: 2.2rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    margin-bottom: 2.5rem;
}

.hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta i {
    color: var(--navy);
}

.meta-separator {
    color: rgba(28, 28, 28, 0.2);
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

.hero-canvas-col {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.art-composition {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 440px;
    background: var(--bg-card);
    border: 1px solid rgba(28, 28, 28, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Overlay organic color blocks imitating paint strokes */
.brush-stroke {
    position: absolute;
    filter: blur(1px);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.stroke-navy {
    top: -20px;
    right: -20px;
    width: 240px;
    height: 160px;
    background-color: var(--navy);
    clip-path: polygon(10% 25%, 85% 15%, 95% 55%, 75% 90%, 15% 85%, 5% 50%);
    transform: rotate(3deg);
}

.stroke-tan {
    bottom: 40px;
    left: -30px;
    width: 230px;
    height: 180px;
    background-color: var(--gold);
    clip-path: polygon(15% 15%, 90% 25%, 85% 75%, 65% 95%, 10% 85%, 2% 40%);
    transform: rotate(-5deg);
}

.stroke-black {
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 150px;
    background-color: var(--charcoal);
    clip-path: polygon(25% 10%, 95% 15%, 90% 75%, 70% 90%, 15% 95%, 5% 45%);
    transform: rotate(8deg);
}

.canvas-wireframe {
    position: absolute;
    top: 30px;
    right: 25px;
    width: 220px;
    height: 300px;
    border: 1.5px solid var(--charcoal);
    z-index: 2;
    pointer-events: none;
    opacity: 0.85;
}

.mini-card-stack {
    position: relative;
    width: 230px;
    height: 330px;
    z-index: 3;
    margin: 0 auto;
}

.mini-card {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(28, 28, 28, 0.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
}

.mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-front {
    transform: rotate(-4deg) translate(-15px, -5px);
    z-index: 5;
}

.card-back {
    transform: rotate(5deg) translate(20px, 15px);
    z-index: 4;
    opacity: 0.85;
}

.art-composition:hover .card-front {
    transform: rotate(-8deg) translate(-35px, -15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(28, 28, 28, 0.18);
    border-color: var(--gold);
}

.art-composition:hover .card-back {
    transform: rotate(8deg) translate(40px, 25px) scale(1.03);
    box-shadow: 0 20px 45px rgba(28, 28, 28, 0.15);
    opacity: 1;
    border-color: var(--navy);
}

/* Countdown Grid */
.countdown-grid {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
}

.countdown-box {
    width: 85px;
    height: 85px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--navy);
    /* Creative blue brush indicator accent */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition-smooth);
}

.countdown-box:hover {
    border-color: var(--gold);
    border-left-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.time-num {
    font-family: var(--font-body);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.time-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    z-index: 2;
}

.mouse-icon {
    width: 20px;
    height: 35px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    white-space: nowrap;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    50% {
        top: 16px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 1;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin: 0 auto 2rem;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    font-weight: 300;
}

/* The Invitation Card Presentation */
.invitation-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.invitation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.invitation-card-container {
    perspective: 1200px;
    width: 100%;
    max-width: 440px;
}

.invitation-card {
    width: 100%;
    aspect-ratio: 2174 / 6217;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-color);
    box-shadow: 0 30px 60px rgba(28, 28, 28, 0.12);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    cursor: grab;
}

.invitation-card:active {
    cursor: grabbing;
}

.invitation-card:hover {
    box-shadow: 0 30px 80px rgba(173, 132, 98, 0.15), 0 10px 30px rgba(28, 28, 28, 0.08);
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(50px);
    overflow: hidden;
    /* Simulate gold-leaf framing */
    outline: 8px solid rgba(173, 132, 98, 0.12);
    outline-offset: -12px;
}

.invitation-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Reflective card shine */
.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateY(-100%) rotate(45deg);
    transition: transform 0.5s ease-out;
    pointer-events: none;
    z-index: 2;
}

.invitation-card:hover .card-shine {
    transform: translateY(100%) rotate(45deg);
}

/* Exhibition Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: stretch;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    display: flex;
    gap: 1.8rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

/* Accent borders to mirror paint strokes from the invitation */
.details-info .info-card:first-child {
    border-left: 5px solid var(--navy);
}

.details-info .info-card:last-child {
    border-left: 5px solid var(--gold);
}

.info-card:hover {
    border-color: var(--border-glow);
    transform: translateX(5px);
    box-shadow: var(--shadow-gold);
}

.info-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient-soft);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-box i {
    font-size: 1.6rem;
    color: var(--gold);
}

.info-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.info-content .highlight-text {
    font-size: 1.1rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.info-content p:last-child {
    margin-bottom: 0;
}

.venue-history {
    font-size: 0.85rem !important;
    border-left: 2px solid var(--gold-light);
    padding-left: 1rem;
    font-style: italic;
    color: var(--text-muted);
}

.add-calendar-link {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
}

.add-calendar-link:hover {
    color: var(--gold);
    gap: 0.8rem;
}

/* Map Container */
.map-container {
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
    min-height: 400px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.map-container iframe {
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.map-container:hover iframe {
    opacity: 1;
}

.map-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 5;
}

/* Guest of Honor Spotlight */
.guests-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: stretch;
}

.guest-card-wrapper {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guest-accent-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.guest-card-content {
    padding: 3.5rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
}

.guest-art-deco {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.guest-icon-svg {
    filter: drop-shadow(0 5px 10px rgba(173, 132, 98, 0.08));
}

.guest-tag {
    font-size: 0.65rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.75rem;
}

.guest-name {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    font-family: var(--font-heading);
    color: var(--text-light);
}

.guest-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.gold-divider-short {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
    margin-bottom: 1.5rem;
}

.guest-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Featured Artists Section */
#artists {
    padding: 8rem 0;
    background-color: var(--bg-darker);
    position: relative;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
}

.artist-item-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    overflow: hidden;
}

.artist-item-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
    z-index: 2;
}

.artist-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(173, 132, 98, 0.15);
    border-color: var(--gold-light);
}

.artist-item-card:hover::after {
    width: 100%;
}

.artist-card-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.artist-card-img-wrapper.empty {
    background-color: var(--bg-darker);
    background-image: repeating-linear-gradient(45deg, rgba(173, 132, 98, 0.03) 0px, rgba(173, 132, 98, 0.03) 2px, transparent 2px, transparent 10px);
}

.artist-card-img-wrapper.empty::before {
    content: '';
    display: block;
}

.artist-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-item-card:hover .artist-card-img {
    transform: scale(1.05);
}

.artist-card-content {
    padding: 2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.artist-number {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-body);
    letter-spacing: 0.1em;
}

.artist-name-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--text-light);
    margin: 0.5rem 0 1rem 0;
    line-height: 1.2;
}

.artist-contact-info {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 48px;
}

.contact-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.contact-item i {
    color: var(--gold);
    width: 14px;
    text-align: center;
}

.view-profile-btn {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.view-profile-btn i {
    transition: transform 0.3s ease;
}

.artist-item-card:hover .view-profile-btn {
    color: var(--gold);
}

.artist-item-card:hover .view-profile-btn i {
    transform: translateX(6px);
}

/* Modal Pop-up Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 41, 61, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: var(--bg-card);
    border: 1.5px solid var(--gold);
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 2;
    transform: scale(0.93) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 70px rgba(28, 28, 28, 0.25);
    padding: 3.5rem;
}

.modal.open .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--charcoal);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--gold);
    background-color: var(--bg-darker);
    transform: rotate(90deg);
}

.modal-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.modal-img-col {
    width: 100%;
}

.modal-img-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--border-color);
    outline: 6px solid rgba(173, 132, 98, 0.08);
    outline-offset: -12px;
    background-color: var(--bg-darker);
    box-shadow: var(--shadow-soft);
}

.modal-img-frame.empty {
    background-color: var(--bg-darker);
    background-image: repeating-linear-gradient(45deg, rgba(173, 132, 98, 0.03) 0px, rgba(173, 132, 98, 0.03) 2px, transparent 2px, transparent 10px);
}

.modal-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-details-col {
    display: flex;
    flex-direction: column;
}

.modal-artist-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 0.8rem;
}

.modal-artist-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-artist-contact .contact-item {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-divider-gold {
    width: 80px;
    height: 2px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.modal-artist-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.modal-artist-bio p {
    margin-bottom: 1.2rem;
}

.modal-artist-bio h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--navy);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-left: 2px solid var(--gold);
    padding-left: 0.8rem;
}

.modal-artist-bio ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: square;
}

.modal-artist-bio li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.modal-artist-bio .artist-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    font-style: italic;
}

/* Custom scrollbar for modal */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--gold);
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Responsive Overrides for Artists & Modal */
@media (max-width: 992px) {
    .artists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .modal-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .modal-container {
        padding: 2.5rem;
        max-height: 90vh;
    }
    .modal-img-frame {
        max-width: 250px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 600px) {
    .artists-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .modal-container {
        padding: 2rem 1.5rem;
    }
    .modal-artist-name {
        font-size: 2rem;
    }
    .modal-artist-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Special Program Section */
#program {
    padding: 8rem 0;
    background-color: var(--bg-dark);
    position: relative;
}

.program-wrapper {
    max-width: 900px;
    margin: 3rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.program-accent-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.program-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    align-items: stretch;
}

.program-illustration-panel {
    background: rgba(24, 41, 61, 0.03);
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
}

.dancer-graphic-container {
    width: 180px;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dancer-silhouette {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(28, 28, 28, 0.05);
}

.dancer-icon {
    font-size: 2.2rem;
    color: var(--gold);
}

.program-info-panel {
    padding: 4.5rem 4rem;
}

.program-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.program-perfomer-name {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-family: var(--font-heading);
    color: var(--text-light);
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.program-specialty {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.program-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.program-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.program-meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.program-meta-item i {
    color: var(--navy);
    font-size: 1.1rem;
    width: 20px;
}

/* Invitation Callout Section & Card */
.callout-card-wrapper {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.callout-glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 4rem 3.5rem;
    box-shadow: 0 20px 50px rgba(28, 28, 28, 0.06);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.callout-glass-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
}

.callout-icon-box {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient-soft);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.callout-icon-box i {
    font-size: 2.2rem;
    color: var(--gold);
}

.callout-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.callout-highlight {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.callout-message {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.callout-actions {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Footer styling */
#site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo .logo-main {
    font-size: 1.8rem;
}

.footer-logo .logo-sub {
    font-size: 0.6rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--bg-darker);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.footer-msg {
    max-width: 450px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(28, 28, 28, 0.35);
    margin-top: 1rem;
}

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

.footer-copyright a:hover {
    color: var(--navy);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
    section {
        padding: 6rem 0;
    }

    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text-col {
        align-items: center;
        text-align: center;
    }

    .hero-invited-tag {
        margin: 0 auto 1.2rem;
    }

    .hero-title-main {
        align-items: center;
    }

    .hero-script-subtitle {
        transform: rotate(-2deg);
        margin-left: 0;
    }

    .minimal-divider {
        margin: 0 auto 2.2rem;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        margin: 0 auto;
    }

    .hero-canvas-col {
        order: -1;
    }

    .art-composition {
        max-width: 320px;
        height: 380px;
        margin: 0 auto;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        min-height: 350px;
    }

    .guests-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 600px;
        margin: 3.5rem auto 0;
    }
    
    .guest-card-content {
        padding: 3.5rem 2.5rem;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }

    #main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(245, 242, 235, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding-bottom: 80px;
        transform: translateY(-120%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid rgba(28, 28, 28, 0.06);
    }

    #main-nav.open {
        transform: translateY(0);
    }

    .mobile-nav-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-nav-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -7px);
    }

    #hero {
        padding-top: 100px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .meta-separator {
        display: none;
    }

    .countdown-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .countdown-box {
        width: 75px;
        height: 75px;
    }

    .time-num {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 1rem;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    /* Stack Invitation Cards */
    .invitation-cards-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Stack Kathak Performance */
    .program-content-grid {
        grid-template-columns: 1fr;
    }

    .program-illustration-panel {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2.5rem;
    }

    .program-info-panel {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 600px) {
    .callout-glass-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    section {
        padding: 4.5rem 0;
    }

    .modal {
        padding: 1rem;
    }

    .modal-container {
        max-height: 90vh;
    }

    /* Scale Down Hero Art Composition on small mobile screens */
    .art-composition {
        max-width: 280px;
        min-height: 340px;
        height: auto;
    }

    .mini-card-stack {
        width: 170px;
        height: 250px;
    }

    .canvas-wireframe {
        width: 160px;
        height: 230px;
        top: 20px;
        right: 15px;
    }

    .stroke-navy {
        width: 180px;
        height: 120px;
    }

    .stroke-tan {
        width: 170px;
        height: 140px;
    }

    .stroke-black {
        width: 150px;
        height: 110px;
    }
}

@media (max-width: 400px) {
    .countdown-grid {
        gap: 0.5rem;
    }

    .countdown-box {
        width: 65px;
        height: 65px;
    }

    .time-num {
        font-size: 1.5rem;
    }

    .time-label {
        font-size: 0.55rem;
        margin-top: 0.15rem;
    }
}

/* Print Styles for Digital Pass Saving */
@media print {
    body * {
        visibility: hidden;
    }

    #print-pass-area,
    #print-pass-area * {
        visibility: visible;
    }

    #print-pass-area {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(1.1);
        border: 2px solid #d4af37 !important;
        background: #0f0f11 !important;
        color: #f5f5f7 !important;
        width: 480px;
    }

    .notch {
        background-color: #fff !important;
        /* Print notch blends with paper background */
    }
}