/* BASE STYLES */
:root {
    --bg-dark: #0f0f0f;
    --text-light: #f4f4f4;
    --bronze-accent: #c59d5f;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* NAVIGATION */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-light);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--bronze-accent);
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: var(--bronze-accent);
    border: 1px solid var(--bronze-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: var(--bronze-accent);
    color: var(--bg-dark);
}

/* HERO SECTION */
#hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden; 
    background-color: #000;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--bronze-accent);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* SECTIONS BASE */
section {
    padding: 100px 20px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--bronze-accent);
    text-align: center;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card {
    position: relative;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    text-align: left;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    cursor: default;
}

/* Video Styling for the Service Cards */
.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Background Image for the Photo Card */
.bg-photo { background-image: url('PremiumPhotography.jpg'); }

.service-card:hover {
    transform: translateY(-10px);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.9) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.service-card:hover .card-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.95) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    width: 100%;
}

.service-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-light);
    border-left: 3px solid var(--bronze-accent);
    padding-left: 10px;
}

.card-content p {
    font-size: 0.95rem;
    color: #d0d0d0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .card-content p {
    opacity: 1;
}

/* MEET THE DUO (ABOUT US) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.team-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.team-text p {
    margin-bottom: 15px;
    color: #d0d0d0;
    font-size: 1.05rem;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border-bottom: 4px solid var(--bronze-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* EXCHANGE / PARTNERSHIP */
.dark-box {
    background-color: #1a1a1a;
    padding: 60px 40px;
    border-radius: 5px;
}

.deliverables {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    display: inline-block;
}

.deliverables li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    padding-left: 25px;
    position: relative;
}

.deliverables li::before {
    content: '✓';
    color: var(--bronze-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CONTACT FORM */
.contact-form-container {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #333;
    text-align: left;
}

.contact-form-container h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    text-align: center;
}

.pitch-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 15px;
}

.input-group input {
    flex: 1;
}

.pitch-form input,
.pitch-form select {
    width: 100%;
    padding: 15px;
    background-color: #0a0a0a;
    border: 1px solid #333;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.pitch-form input:focus,
.pitch-form select:focus {
    outline: none;
    border-color: var(--bronze-accent);
}

.pitch-form select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23c59d5f" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 50%;
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    background-color: var(--bronze-accent);
    color: var(--bg-dark);
    font-weight: bold;
    border: 1px solid var(--bronze-accent);
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--bronze-accent);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #000;
    border-top: 1px solid #333;
}

footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 768px) {
    
    /* Navigation Adjustments */
    nav {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    /* Hero Section Adjustments */
    #hero {
        aspect-ratio: auto;
        min-height: 100vh;
    }

    .hero-content {
        padding: 140px 15px 20px 15px; 
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* General Section Padding */
    section {
        padding: 60px 15px;
    }

    section h2 {
        font-size: 2rem;
    }

    /* Services Grid Adjustments - FORCING CONTENT TO SHOW */
    .service-card {
        min-height: 300px;
        padding: 20px;
    }

    .service-card:hover {
        transform: none;
    }

    .card-content {
        transform: translateY(0);
    }

    .card-content p {
        opacity: 1;
    }

    .card-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.95) 100%);
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    /* About Us Adjustments */
    .split-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-text h2 {
        text-align: center;
    }
    
    .team-text {
        text-align: center;
    }

    /* Form Adjustments */
    .input-group {
        flex-direction: column;
    }
    
    .pitch-form {
        padding: 0 10px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .logo {
        font-size: 1.2rem;
    }
}