/* Wedding Films & Cinematography - Cinematic Premium Styles */

:root {
    --primary-gold: #D4AF37;
    --deep-maroon: #800020;
    --rich-brown: #3E2723;
    --cream: #FFF8E7;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #f0c952 100%);
    --cinematic-dark: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--rich-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(62, 39, 35, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px var(--shadow);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.9;
    text-shadow: 2px 2px 6px var(--shadow);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.primary-cta {
    background: var(--primary-gold);
    color: var(--rich-brown);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.7);
    background: #f0c952;
}

.secondary-cta {
    background: white;
    color: var(--rich-brown);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.secondary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid var(--light-text);
    border-radius: 22px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--light-text);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: var(--rich-brown);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 4px;
    background: var(--primary-gold);
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
}

/* Filming Styles Section */
.filming-styles-section {
    background: var(--cream);
}

.styles-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.style-card {
    background: white;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    position: relative;
}

.style-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.style-card.featured {
    border: 3px solid var(--primary-gold);
    transform: scale(1.03);
}

.style-card.featured:hover {
    transform: translateY(-12px) scale(1.03);
}

.featured-badge {
    position: absolute;
    top: -18px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--rich-brown);
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.style-header {
    text-align: center;
    margin-bottom: 35px;
}

.style-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.style-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--deep-maroon);
    margin-bottom: 8px;
}

.style-tagline {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 500;
    font-style: italic;
}

.style-content {
    margin-bottom: 30px;
}

.style-section {
    margin-bottom: 25px;
}

.style-section h4 {
    font-size: 1.2rem;
    color: var(--deep-maroon);
    margin-bottom: 10px;
    font-weight: 600;
}

.style-section p {
    color: #555;
    line-height: 1.9;
    font-size: 1.05rem;
}

.style-features ul {
    list-style: none;
    padding: 0;
}

.style-features li {
    padding: 12px 0;
    padding-left: 30px;
    color: #666;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.style-features li:last-child {
    border-bottom: none;
}

.style-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.combo-note {
    background: var(--primary-gold);
    color: var(--rich-brown);
    padding: 25px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.combo-note p {
    font-size: 1.15rem;
    margin: 0;
}

.combo-note strong {
    font-weight: 700;
}

/* Technology Section */
.technology-section {
    background: var(--cinematic-dark);
    color: white;
}

.technology-section .section-title {
    color: white;
}

.technology-section .section-title::after {
    background: var(--primary-gold);
}

.technology-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 45px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: var(--primary-gold);
}

.tech-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    color: var(--primary-gold);
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 18px;
    color: var(--primary-gold);
}

.tech-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.tech-card strong {
    color: white;
    font-weight: 600;
}

.tech-card em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.tech-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--rich-brown);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Video Gallery Section */
.video-gallery-section {
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
}

.video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-embed iframe {
    width: 100%;
    height: 100%;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep-maroon);
    margin-bottom: 12px;
}

.video-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #888;
}

/* Instagram Reels Package */
.reels-package-section {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
    color: white;
}

.reels-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.phone-mockup {
    background: #1a1a1a;
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 350px;
    margin: 0 auto;
}

.phone-screen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reel-preview {
    text-align: center;
}

.reel-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.reel-preview p {
    font-size: 1.3rem;
    font-weight: 600;
}

.trending-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.reels-text .section-title {
    color: white;
    text-align: left;
    margin-bottom: 25px;
}

.reels-text .section-title::after {
    left: 0;
    transform: none;
}

.reels-description {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0.95;
}

.reels-description strong {
    font-weight: 700;
    color: #FCB045;
}

.reels-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.reels-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.reels-features .feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.reels-features .feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.reels-features .feature-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Editing Process Section */
.editing-process-section {
    background: var(--cream);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 60px;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-gold), transparent);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    color: var(--rich-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.step-content {
    background: white;
    padding: 30px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--deep-maroon);
    margin-bottom: 12px;
}

.step-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.step-icon {
    font-size: 3rem;
    text-align: center;
}

.color-options {
    text-align: center;
    margin-top: 60px;
}

.color-options h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--deep-maroon);
    margin-bottom: 35px;
}

.color-samples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.color-sample {
    text-align: center;
}

.sample-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.sample-image:hover {
    transform: scale(1.05);
}

.warm-gold {
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.moody-cinematic {
    background: linear-gradient(135deg, #2b2d42 0%, #8d99ae 100%);
}

.bright-airy {
    background: linear-gradient(135deg, #fefae0 0%, #dda15e 100%);
}

.color-sample p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--rich-brown);
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: linear-gradient(135deg, var(--deep-maroon), var(--rich-brown));
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 1.45rem;
    margin-bottom: 45px;
    opacity: 0.95;
    line-height: 1.8;
}

.gold-cta {
    background: var(--gold-gradient);
    color: var(--rich-brown);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 24px 60px;
    font-size: 1.3rem;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.gold-cta svg {
    width: 32px;
    height: 32px;
}

.gold-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.7);
}

.cta-note {
    margin-top: 30px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-note a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cta-note a:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 70px 0 35px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 45px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 22px;
}

.footer-section h4 {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.75;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.6rem;
    }

    .styles-comparison {
        grid-template-columns: 1fr;
    }

    .style-card.featured {
        transform: scale(1);
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .reels-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .reels-features {
        grid-template-columns: 1fr;
    }

    .color-samples {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-icon {
        display: none;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    section {
        padding: 60px 0;
    }
}