/* ===================================
   CSS Variables & Design System
   =================================== */
:root {
    /* Colors */
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-darker: #151515;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #B8941F;
    --color-white: #f5f5f5;
    --color-white-dim: rgba(245, 245, 245, 0.8);
    --color-white-dimmer: rgba(245, 245, 245, 0.6);

    /* Gradients */
    --gradient-overlay: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #E5C158 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul {
    list-style: none;
}

/* ===================================
   Hero Section - Split Design
   =================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    background-color: var(--color-black);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% 60%;
}

/* Text positioned on RIGHT side over dark space */
.hero-content {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 10;
    max-width: 600px;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--color-gold);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.hero-subtitle:last-of-type {
    margin-bottom: 0.5rem;
}

.hero-location {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--color-white-dim);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: clamp(0.75rem, 1.3vw, 0.9rem);
    color: var(--color-white-dimmer);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
    line-height: 1.6;
    white-space: nowrap;
}

/* Hero CTA Button */
.hero-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all var(--transition-normal);
}

.hero-cta:hover {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

/* ===================================
   Animations
   =================================== */
.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1.2s ease-out 0.6s both;
}

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

/* ===================================
   Sections
   =================================== */
.section {
    padding: var(--spacing-xl) 2rem;
    background: var(--gradient-dark);
}

.section-alt {
    background: var(--color-darker);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto;
}

/* ===================================
   About Section - Text Only
   =================================== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--color-gold);
    font-weight: 500;
    line-height: 1.9;
    font-family: var(--font-heading);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-white-dim);
    line-height: 1.9;
}

/* ===================================
   Glass Card Effect
   =================================== */
.glass-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
}

/* ===================================
   Services Section
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

/* Featured service badge */
.service-card.featured {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.08);
}

.service-card.featured::before {
    content: 'Most Requested';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--color-black);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-gold);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--color-white-dim);
    line-height: 1.7;
    font-size: 1rem;
}

/* ===================================
   Video Section
   =================================== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

/* ===================================
   Gallery Section
   =================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: border-color var(--transition-normal);
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

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

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

/* Gallery hover captions */
.gallery-item::after {
    content: attr(data-caption);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--color-white);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    text-align: center;
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
}

/* Availability badge */
.cta-availability {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.cta-availability::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-description {
    color: var(--color-white-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-gold);
    color: var(--color-black);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.cta-email {
    display: block;
    margin-top: 1.5rem;
    color: var(--color-gold);
    font-size: 1.1rem;
}

.social-links-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ===================================
   Floating Audio Player
   =================================== */
.audio-player {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.25rem 0.5rem 0.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.audio-player:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

.audio-player.playing {
    border-color: var(--color-gold);
}

.audio-player.playing .audio-btn {
    background: var(--color-gold);
    color: var(--color-black);
}

.audio-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.audio-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: scale(1.05);
}

.audio-icon {
    width: 18px;
    height: 18px;
}

.audio-icon.hidden {
    display: none;
}

.audio-label {
    color: var(--color-white-dim);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Pulse animation when playing */
.audio-player.playing .audio-btn {
    animation: audioPulse 2s ease-in-out infinite;
}

@keyframes audioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-black);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-text {
    color: var(--color-white-dimmer);
    font-size: 0.9rem;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        right: 5%;
        max-width: 400px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* Mobile Landscape / Small Tablets */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        max-height: none;
    }

    .hero-background {
        object-position: 15% 60%;
    }

    .hero-content {
        position: absolute;
        top: auto;
        bottom: 10%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
        max-width: 400px;
        padding: 2rem;
        background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 80%, transparent 100%);
        border-radius: 12px;
    }

    .section {
        padding: var(--spacing-lg) 1.5rem;
    }

    .about-intro {
        font-size: 1.15rem;
    }

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

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

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .audio-player {
        bottom: 1rem;
        left: 1rem;
        padding: 0.4rem 1rem 0.4rem 0.4rem;
    }

    .audio-btn {
        width: 38px;
        height: 38px;
    }

    .audio-icon {
        width: 14px;
        height: 14px;
    }

    .audio-label {
        font-size: 0.75rem;
    }

    .hero-background {
        object-position: 15% 60%;
    }

    .hero-content {
        bottom: 8%;
        width: 92%;
        max-width: 350px;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.12em;
    }

    .hero-location {
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-bottom: 1.25rem;
    }

    .hero-cta {
        padding: 0.75rem 1.75rem;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-content {
        max-width: 100%;
    }

    .about-intro {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

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

    .glass-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}
