/* ============================================
   CSS Variables
   ============================================ */
:root {
    --color-primary: #d4af37;
    --color-primary-light: #e8c547;
    --color-dark: #1a1a1a;
    --color-dark-blue: #2c3e50;
    --color-dark-blue-light: #34495e;
    --color-light: #faf9f7;
    --color-text: #444;
    --color-text-light: #b8c5d1;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: all 0.3s ease;
    --transition-slow: all 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-family: var(--font-display);
}

/* ============================================
   Noise Overlay (inspired by Shúmee)
   ============================================ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.nav--scrolled {
    background: rgba(26, 37, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

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

.nav-link--cta {
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 10px 20px;
    border-radius: 4px;
}

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

.nav-link--cta:hover {
    background: var(--color-primary-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle-bar {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition-smooth);
}

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

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero.jpg') center center / cover no-repeat;
    color: #fff;
    padding: 40px 24px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-name {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 400;
    font-style: italic;
}

.hero-subdescription {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.hero-scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-primary);
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cta-button--secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    margin-left: 15px;
}

.cta-button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: none;
}

/* ============================================
   Section Base Styles
   ============================================ */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    margin: 20px auto 0;
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: calc(var(--animation-order, 0) * 0.1s);
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background-color: #fff;
}

.about-content p {
    max-width: 750px;
    margin: 0 auto 24px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.8;
}

.about-content strong {
    color: var(--color-dark-blue);
}

/* ============================================
   Videos Section
   ============================================ */
.videos {
    background-color: var(--color-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-item--large {
    max-width: 800px;
    margin: 0 auto;
}

/* Video Carousel */
.video-carousel {
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 20px;
    scrollbar-width: none;
}

.video-carousel-track::-webkit-scrollbar {
    display: none;
}

.video-thumb {
    flex: 0 0 280px;
    scroll-snap-align: start;
    cursor: pointer;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-thumb:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-thumb img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.video-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumb:hover .video-thumb-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    position: relative;
}

.play-button::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 18px;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--color-dark-blue);
}

.video-thumb-title {
    display: block;
    padding: 12px 15px;
    background: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 15px;
    transition: color 0.3s ease;
}

.video-modal-close:hover {
    color: var(--color-primary);
}

.video-modal-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 8px;
    overflow: hidden;
}

.video-modal-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, #fff 100%);
}

.contact-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-dark);
    margin-bottom: 15px;
}

.contact-page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text);
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group--full {
    grid-column: 1 / -1;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.contact-alt {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.contact-alt p {
    color: var(--color-text);
    margin-bottom: 10px;
}

.contact-email {
    color: var(--color-dark-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.contact-email:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .contact-page {
        padding: 120px 0 60px;
    }
}

/* ============================================
   Photo Gallery Section
   ============================================ */
.gallery {
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
    position: relative;
    cursor: pointer;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* ============================================
   Press Section
   ============================================ */
.press {
    background-color: var(--color-light);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.press-item {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
}

.press-item:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.press-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-dark-blue);
    font-weight: 600;
}

/* ============================================
   Venues Section
   ============================================ */
.venues {
    background-color: var(--color-dark-blue);
    color: #fff;
}

.venues .section-title {
    color: #fff;
}

.venues-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.venue {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #e0e6eb;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.venue:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
}

.venue-more {
    background: transparent;
    color: var(--color-primary);
    font-style: italic;
    border-color: transparent;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-smooth);
    border-radius: 8px;
}

.service-item:hover {
    transform: translateY(-5px);
    background: var(--color-light);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark-blue);
    font-family: var(--font-body);
}

/* ============================================
   Influences Section
   ============================================ */
.influences {
    background-color: var(--color-light);
}

.influences-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.influence {
    background: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #555;
    border: 1px solid #e5e5e5;
    transition: var(--transition-smooth);
}

.influence:hover {
    border-color: var(--color-primary);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--color-dark-blue-light) 0%, var(--color-dark-blue) 100%);
    color: #fff;
    text-align: center;
}

.contact .section-title {
    color: #fff;
}

.contact p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #1a252f;
    color: #fff;
    text-align: center;
    padding: 50px 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.footer-links svg {
    width: 20px;
    height: 20px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-location {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #667;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 37, 47, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-smooth);
    }

    .nav-menu--open {
        right: 0;
    }

    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .hero-subdescription {
        font-size: 1rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 0.85rem;
    }

    .hero-scroll-indicator {
        display: none;
    }
}
