/* =============================================================
   Mind by James — Vanilla HTML/CSS/JS
   Design: Cosmic Mentalist — Deep Space Mysticism
   Colors: #07070F (void), #D4AF37 (violet), #E6CA65 (ice blue)
   Typography: Cormorant Garamond + DM Sans
   ============================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #07070F;
    color: #F8FAFC;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #07070F;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#D4AF37, #E6CA65);
    border-radius: 3px;
}

::selection {
    background: rgba(212, 175, 55, 0.4);
    color: #F8FAFC;
}

/* ============================================================= 
   UTILITIES
   ============================================================= */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.btn {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #CFB53B);
    color: white;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37, #E6CA65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic {
    font-style: italic;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.label-line {
    width: 2rem;
    height: 1px;
    background: #D4AF37;
}

.label-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #E8D4A0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: white;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    max-width: 28rem;
    margin: 1rem auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ============================================================= 
   NAVIGATION
   ============================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar.scrolled {
    background: rgba(7, 7, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #E6CA65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: #07070F;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

.logo-accent {
    color: #D4AF37;
}

.nav-links {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    background: rgba(7, 7, 15, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    list-style: none;
    display: flex;
    gap: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.nav-links.active {
    transform: translateX(0);
}

.nav-links li {
    width: 100%;
}

.nav-links .nav-link {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .nav-links {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        background: none;
        backdrop-filter: none;
        border-bottom: none;
        display: flex;
        gap: 2rem;
        align-items: center;
        flex-direction: row;
        padding: 0;
        max-height: none;
        overflow-y: visible;
        transform: translateX(0);
        margin-left: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: auto;
    }

    .nav-links .nav-link {
        padding: 0;
        width: auto;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37, #E6CA65);
    transition: width 0.3s ease;
}

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

.nav-link.cta-btn {
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #D4AF37, #CFB53B);
    color: white;
    border-radius: 0.375rem;
    margin-left: 0;
    margin-top: 0.5rem;
}

.nav-link.cta-btn::after {
    display: none;
}

@media (min-width: 768px) {
    .nav-link.cta-btn {
        margin-left: 1rem;
        margin-top: 0;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: white;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* ============================================================= 
   HERO SECTION
   ============================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #07070F;
    margin-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* This applies to screens that are 768px wide or smaller */
@media screen and (max-width: 768px) {
  .hero-bg {
    margin-top: -500px; /* Sets 15px margin on all sides */
  }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 7, 15, 0.7), rgba(7, 7, 15, 0.2), #07070F);
    background: linear-gradient(to right, rgba(7, 7, 15, 0.7), transparent, rgba(7, 7, 15, 0.7));
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.eyebrow-line {
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37);
}

.eyebrow-line:last-child {
    background: linear-gradient(90deg, #D4AF37, transparent);
}

.eyebrow-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #E8D4A0;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title span {
    display: block;
}

.hero-by {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.8);
    text-stroke: 1px rgba(212, 175, 55, 0.8);
}

.hero-james {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 40px rgba(212, 175, 55, 0.4);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    max-width: 28rem;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.05em;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 1s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 1.4s both;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 4rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    background: linear-gradient(135deg, #D4AF37, #E6CA65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 1.8s both;
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator svg {
    animation: bounce 1.5s infinite;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* ============================================================= 
   ABOUT SECTION
   ============================================================= */

.about {
    position: relative;
    padding: 6rem 0;
    background: #07070F;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(120px);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-image {
    position: relative;
    max-width: 28rem;
    margin: 0 auto;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3), 0 0 60px rgba(212, 175, 55, 0.1);
}

.image-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 15, 0.6), transparent);
}

.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: #13131F;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.375rem;
    padding: 1rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.badge-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    background: linear-gradient(135deg, #D4AF37, #E6CA65);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.about-content {
    position: relative;
    z-index: 10;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.skill-tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #E8D4A0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.375rem;
    background: rgba(212, 175, 55, 0.05);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

/* ============================================================= 
   SHOWS SECTION
   ============================================================= */

.shows {
    position: relative;
    padding: 6rem 0;
    background: #0A0A14;
    overflow: hidden;
}

.shows::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(150px);
    pointer-events: none;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.show-card {
    position: relative;
    padding: 2rem;
    border-radius: 0.375rem;
    background: #13131F;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.show-card:hover {
    transform: translateY(-1rem);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.show-card.featured {
    grid-column: span 2;
}

@media (max-width: 1024px) {
    .show-card.featured {
        grid-column: span 1;
    }
}

.show-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.show-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
}

.show-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.show-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.show-features {
    list-style: none;
    margin-bottom: 2rem;
}

.show-features li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.show-cta {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.show-cta:hover {
    color: #E6CA65;
    transform: translateX(0.25rem);
}

/* ============================================================= 
   GALLERY SECTION
   ============================================================= */

.gallery {
    position: relative;
    padding: 6rem 0;
    background: #07070F;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.08);
    filter: blur(120px);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 10;
    grid-auto-rows: 200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.375rem;
    cursor: pointer;
    group: 'gallery';
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 768px) {
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 15, 0.8), rgba(7, 7, 15, 0.2), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-info {
    color: white;
}

.gallery-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #E8D4A0;
}

/* ============================================================= 
   TESTIMONIALS SECTION
   ============================================================= */

.testimonials {
    position: relative;
    padding: 6rem 0;
    background: #0A0A14;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(100px);
    pointer-events: none;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.1);
    filter: blur(100px);
    pointer-events: none;
}

.testimonials-carousel {
    position: relative;
    z-index: 10;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 0.375rem;
    background: #13131F;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card.active {
    background: #13131F;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .testimonial-card.active {
        transform: scale(1);
    }
}

.testimonial-card.inactive {
    opacity: 0.6;
}

.stars {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.125rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #CFB53B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.author-role {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.nav-btn:hover {
    color: white;
    border-color: rgba(212, 175, 55, 0.5);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 2rem;
    background: #D4AF37;
}

/* ============================================================= 
   CONTACT SECTION
   ============================================================= */

.contact {
    position: relative;
    padding: 6rem 0;
    background: #07070F;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(120px);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.75rem;
}

.social-buttons {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: #0E0E1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: #13131F;
}

.form-group textarea {
    resize: none;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}

/* ============================================================= 
   FOOTER
   ============================================================= */

.footer {
    position: relative;
    background: #07070F;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: auto 1fr auto;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .footer-copyright {
        text-align: right;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ============================================================= 
   RESPONSIVE
   ============================================================= */

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .show-card.featured {
        grid-column: span 1;
    }
}

/* ============================================================= 
   WHATSAPP FLOATING BUTTON
   ============================================================= */

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: #25D366; /* Official WhatsApp green */
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 8px 40px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    z-index: 500;
    cursor: pointer;
    padding: 0;
    border: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-0.25rem);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6), 0 12px 50px rgba(212, 175, 55, 0.3);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn svg {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.15);
}

@media (max-width: 640px) {
    .whatsapp-btn {
        bottom: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .whatsapp-btn-left {
        left: 1.5rem;
    }

    .whatsapp-btn-right {
        right: 1.5rem;
    }

    .whatsapp-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 1rem;
        width: 2.75rem;
        height: 2.75rem;
    }

    .whatsapp-btn-left {
        left: 1rem;
    }

    .whatsapp-btn-right {
        right: 1rem;
    }

    .whatsapp-btn svg {
        width: 1.125rem;
        height: 1.125rem;
    }
}

.whatsapp-btn-left {
    left: 2rem;
}

.whatsapp-btn-right {
    right: 2rem;
    left: auto;
}