/* ============================================
   CERVANTES PROJECTS - STYLESHEET
   Tijdloos, minimalistisch, luxueus design
   ============================================ */

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

:root {
    --navy: #1a2f3e;
    --gold: #c9b588;
    --text: #2c2c2c;
    --light: #fafafa;
    --border: #dddddd;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   HEADER - Minimaal & Elegant
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 1.5rem 4rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--navy);
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
    position: relative;
}

nav a:hover {
    opacity: 0.5;
}

/* ============================================
   HERO SECTION - Pure Fotografie
   ============================================ */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: absolute;
    bottom: 8rem;
    left: 4rem;
    right: 4rem;
    color: white;
    max-width: 700px;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.95;
}

/* ============================================
   TEXT SECTIONS - Storytelling
   ============================================ */

.text-section {
    padding: 15rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.text-section.centered {
    text-align: center;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

.text-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 3rem;
}

.text-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 2rem;
}

.text-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 2rem;
}

.text-section p.emphasis {
    font-size: 1.3rem;
    font-style: italic;
}

/* ============================================
   FULL WIDTH IMAGES
   ============================================ */

.full-image {
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   IMAGE GRID - Portfolio
   ============================================ */

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.grid-item.tall {
    aspect-ratio: 3/4;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.two-col-image {
    position: relative;
    overflow: hidden;
}

.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.two-col-text {
    padding: 8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.two-col-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.two-col-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

/* ============================================
   SERVICES GRID
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    max-width: 1400px;
    margin: 0 auto;
}

.service-item {
    padding: 4rem 3rem;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-item:nth-child(3n) {
    border-right: none;
}

.service-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text);
    font-weight: 300;
}

/* ============================================
   QUOTE SECTION
   ============================================ */

.quote-section {
    padding: 15rem 4rem;
    text-align: center;
    background: var(--light);
}

.quote-section blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--navy);
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 12rem 4rem;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--navy);
    margin-bottom: 2rem;
}

.cta-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.cta-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--navy);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border: 1px solid var(--navy);
}

.cta-link:hover {
    background: white;
    color: var(--navy);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    padding: 6rem 4rem 3rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--navy);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #888888;
    font-weight: 300;
}

.footer-section h4 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--navy);
}

.footer-section a {
    display: block;
    color: #666666;
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
    font-weight: 300;
}

.footer-section a:hover {
    opacity: 0.5;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: #999999;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .hero-tagline {
        font-size: 3rem;
    }

    .text-section {
        padding: 10rem 2rem;
    }

    .text-section h2 {
        font-size: 2.5rem;
    }

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

    .service-item {
        border-right: none;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col-text {
        padding: 5rem 2rem;
    }

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

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

@media (max-width: 768px) {
    header,
    header.scrolled {
        padding: 1.5rem;
    }

    nav ul {
        display: none;
    }

    .hero-content {
        bottom: 4rem;
        left: 1.5rem;
        right: 1.5rem;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .text-section {
        padding: 8rem 1.5rem;
    }

    .text-section h2 {
        font-size: 2rem;
    }

    .text-section h3 {
        font-size: 1.6rem;
    }

    .text-section p,
    .two-col-text p {
        font-size: 1rem;
    }

    .quote-section {
        padding: 10rem 1.5rem;
    }

    .quote-section blockquote {
        font-size: 2rem;
    }

    .full-image {
        height: 50vh;
    }

    .two-col-text {
        padding: 4rem 1.5rem;
    }

    .two-col-text h3 {
        font-size: 2rem;
    }

    .cta-section {
        padding: 8rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
