/* Base Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #b8860b;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f8f8f8;
    --dark-bg: #121212;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Questrial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

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

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

ul, ol {
    list-style-position: inside;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-weight: 400;
    position: relative;
    font-size: 1rem;
    color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    color: var(--light-text);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color);
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Proposal Section */
.proposal {
    padding: 5rem 0;
    background-color: #fff;
}

.proposal-content {
    max-width: 800px;
    margin: 0 auto;
}

.proposal-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.full-width-image {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 4rem 0 0;
}

/* Episodes Section */
.episodes {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.episode-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.episode-number {
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.episode-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.episode-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.episode-card.bonus {
    background-color: var(--accent-color);
    color: #fff;
}

.episode-tag {
    display: inline-block;
    background-color: #fff;
    color: var(--accent-color);
    padding: 0.3rem 1rem;
    border-radius: 3px;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

/* Deliverables Section */
.deliverables {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.deliverable-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.deliverable-row:last-child {
    border-bottom: none;
}

.deliverable-title h3 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
}

.deliverable-items ul {
    list-style-type: none;
    padding: 0;
}

.deliverable-items li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.deliverable-items li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.total-cost {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 5px;
}

.cost-label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cost-amount {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.cost-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 50vh;
}

.image-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Section */
.about {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background-color: var(--secondary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    display: flex;
    flex-direction: column;
}

.member-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 1.5rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background-color: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.process-item {
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.process-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Proof Section */
.proof {
    padding: 5rem 0;
    background-color: #fff;
    text-align: center;
}

.proof-content {
    max-width: 900px;
    margin: 0 auto;
}

.proof-text {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.25rem;
}

.case-study {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto;
}

.case-study-content {
    padding: 3rem;
    text-align: center;
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .hero {
        flex-direction: row;
    }
    
    .contact {
        flex-direction: row;
    }
    
    .contact-content, .contact-image {
        flex: 1;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .deliverable-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .deliverable-title h3 {
        font-size: 2rem;
    }
    
    .case-study-content {
        padding: 2rem;
    }
    
    .episodes-grid {
        grid-template-columns: 1fr;
    }
    
    .image-item, .hero-image, .full-width-image, .about-image {
        background-attachment: scroll;
    }
    
    .nav-links {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .proposal-text {
        font-size: 1.1rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-amount {
        font-size: 2.5rem;
    }
}