/* ==========================================================================
   Videography Page Specific Styles (css/videography-page-style.css)
   ========================================================================== */

/* --- TROUBLESHOOTING TOP SPACE --- */
/* Try these one at a time if you have a large space at the top of the page. */
/* Use your browser's "Inspect Element" to see what's causing the space. */

/* OPTION 1: Basic HTML Element Margin Reset */
/* Uncomment this if you suspect default browser margins on body or headings. */
/*
body, html {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
}
*/

/* OPTION 2: Adjustments for a Fixed/Absolute Navigation Bar */
/* If your .main-nav has 'position: fixed' or 'position: absolute'. */
/* Determine the height of your .main-nav and replace 80px below. */

/*
body {
    padding-top: 80px; /* Push entire body content down by navbar height */
/* }
*/
/* OR, target the hero section specifically: */
/*
.hero-section { /* Apply to all hero sections if consistent */
/*    padding-top: 80px; /* If navbar is transparent and hero content should start below it */
    /* OR */
/*    margin-top: 80px; /* If navbar is opaque and hero should be pushed down entirely */
/* }
*/


/* General Section Styling */
.content-section.video-power-section,
.content-section.video-services-section,
.content-section.video-approach-section,
.content-section.video-pricing-section,
.content-section.video-portfolio-section,
.content-section.video-why-choose-section,
.content-section.video-inquiry-section {
    padding: 60px 20px;
    color: #ccc;
}

.video-power-section { background-color: #121212; }
.video-services-section { background-color: #1f1f1f; }
.video-approach-section { background-color: #121212; }
.video-pricing-section { background-color: #1f1f1f; }
.video-portfolio-section { background-color: #121212; }
.video-why-choose-section { background-color: #1f1f1f; }
.video-inquiry-section { background-color: #1a1a1a; }


.video-power-section h2,
.video-services-section h2,
.video-approach-section h2,
.video-pricing-section h2,
.video-portfolio-section h2,
.video-why-choose-section h2,
.video-inquiry-section h2 {
    margin-bottom: 30px;
}

.section-description,
.form-intro-text,
.portfolio-placeholder-text {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    text-align: center;
    color: #ddd;
}

.section-outro {
    font-size: 1rem;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    color: #bbb;
}


/* Hero Section (#video-hero-main) */
#video-hero-main.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-color: #111;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    transition: background-image 1s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 1;
    margin-top: 0;
}

#video-hero-main .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

#video-hero-main .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin-top: 0;
}

#video-hero-main .hero-content h1 {
    margin-top: 0;
    color: #FFFFFF;
    font-size: 2.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

#video-hero-main .hero-content .hero-intro {
    color: #F2F2F2;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

#video-hero-main .hero-content .hero-intro:last-of-type {
    margin-bottom: 2rem;
}

/* Responsive adjustments for hero */
@media (min-width: 768px) {
    #video-hero-main.hero-section {
        min-height: 90vh;
        padding-top: 10rem;
    }
    #video-hero-main .hero-content h1 {
        font-size: 3.5rem;
    }
    #video-hero-main .hero-intro {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    #video-hero-main.hero-section {
        background-size: 100% auto;
        background-attachment: scroll;
        min-height: 60vh;
        padding: 6rem 1.5rem 3rem;
    }
    #video-hero-main .hero-content h1 {
        font-size: 2rem;
    }
    #video-hero-main .hero-intro {
        font-size: 1rem;
    }
}

/* Icon Lists (for Benefits and Advantages sections) */
.icon-list {
    list-style: none;
    padding-left: 0;
    max-width: 900px;
    margin: 20px auto;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.icon-list .icon {
    font-size: 1.8rem;
    color: #FF6F00;
    margin-right: 20px;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

/* Services Grid (.video-services-section) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-item {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    color: #FF6F00;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

/* Process Steps (.video-approach-section) */
.process-steps {
    list-style-type: none;
    counter-reset: process-counter;
    padding-left: 0;
    max-width: 700px;
    margin: 30px auto;
}

.process-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.process-steps li::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FF6F00;
    color: #121212;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* Pricing Section (.video-pricing-section) */
.pricing-factors-list {
    list-style: disc;
    padding-left: 20px;
    margin: 20px auto;
    max-width: 700px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.pricing-factors-list li {
    margin-bottom: 10px;
}

.cta-container {
    text-align: center;
    margin-top: 30px;
}

/* Video Portfolio Section (.video-portfolio-section) */
.video-embed-container {
    margin-top: 30px;
}

.showreel-poster {
    max-width: 100%;
    height: auto;
    border: 2px solid #444;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.video-embed-container iframe {
    max-width: 100%;
    border: 2px solid #333;
    border-radius: 4px;
    margin-top: 20px;
}


/* Inquiry Form Section (.video-inquiry-section) */
.video-inquiry-section .styled-form {
    /* max-width: 700px; */
    /* margin: 0 auto; */
}

.video-inquiry-section .form-group label {
    /* color: #FF6F00; */
}

.video-inquiry-section .form-intro-text,
.video-inquiry-section .form-alternative-contact {
    color: #ccc;
    text-align: center;
}

.video-inquiry-section .form-alternative-contact .form-alt-link {
    color: #FF6F00;
    font-weight: bold;
    text-decoration: none;
}
.video-inquiry-section .form-alternative-contact .form-alt-link:hover {
    text-decoration: underline;
}

.submit-button-container {
    text-align: center;
    margin-top: 20px;
}


/* Skip Link */
.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}
.visually-hidden:focus,
.visually-hidden:active {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
    display: inline-block;
    padding: 10px;
    background-color: #FF6F00;
    color: #121212;
    z-index: 100000;
    border-radius: 3px;
}


/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
    .section-description,
    .form-intro-text,
    .portfolio-placeholder-text {
        font-size: 1rem;
        padding-left: 10px;
        padding-right: 10px;
    }

    .icon-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-list .icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .process-steps li {
        padding-left: 0;
        text-align: center;
    }
    .process-steps li::before {
        position: static;
        display: block;
        margin: 0 auto 10px auto;
    }

    .services-grid {
        gap: 20px;
    }

    .service-item {
        padding: 20px;
    }
    .service-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .btn.hero-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}