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

:root {
    --primary-color: #1f2937;
    --secondary-color: #111827;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-alt: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* PP Neue Montreal Font Faces */
@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-Book.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PP Neue Montreal';
    src: url('fonts/ppneue/PPNeueMontreal-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

body {
    font-family: 'PP Neue Montreal', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1 {text-transform:uppercase;}

h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }

.container {
    width: 100%;
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: left;
    font-weight: 400;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: var(--bg-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight:400;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    
}

/* Project Page */
.project-page main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.project-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-hero .container{
margin-top:4rem;
margin-bottom:4rem;
}

h1.project-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 400;
}

.project-intro {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;

}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.project-section .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.project-section .section-title {
    margin-bottom: 1.5rem;
    
}

.section-subtitle {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    text-align: left;
    font-weight: 400;
}

.body-text {
    font-size: 1.2rem;
    color: var(--text-light);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

.split-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.split-media,
.double-media figure {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.media-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.project-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.caption {
    color: var(--text-light);
    font-size: 0.9rem;
}

.full-bleed-media {
    width: 100%;
}

.full-bleed-placeholder {
    width: 100%;
    min-height: 420px;
    background-color: var(--bg-alt);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.double-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

/* Container-width media */
.container-media {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.container-media-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--bg-alt);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
}

.container-media img,
.container-media video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .project-meta {
        flex-direction: column;
    }

    .split-grid,
    .double-media {
        grid-template-columns: 1fr;
    }

    .project-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

