﻿body {
}
/*
===============================================================================
 URENWIJZER - LAYOUT STYLESHEET
===============================================================================

 File        : uw-layout.css
 Purpose     : Global UrenWijzer page layout
 Project     : UrenWijzer

 Depends on:
 - uw-base.css

 Contains:
 - Accessibility / skip navigation
 - Header
 - Main content
 - Homepage hero
 - Mission section
 - Development status
 - Footer
 - Responsive layout

 Naming convention:
 - UrenWijzer custom classes use the prefix: uw-

===============================================================================
*/


/* ==========================================================================
   1. ACCESSIBILITY
   ========================================================================== */

.uw-skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    z-index: 10000;
    padding: 14px 20px;
    background: var(--uw-blue-dark);
    color: var(--uw-white);
    font-weight: 700;
    text-decoration: none;
}

    .uw-skip-link:focus {
        top: 20px;
        color: var(--uw-white);
    }


/* ==========================================================================
   2. HEADER
   ========================================================================== */

.uw-header {
    position: relative;
    z-index: 100;
    width: 100%;
    background: var(--uw-white);
    border-bottom: 1px solid var(--uw-grey-200);
}

.uw-header-inner {
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}


/* ==========================================================================
   3. LOGO
   ========================================================================== */

.uw-logo-link {
    display: inline-block;
    flex: 0 1 auto;
    color: inherit;
    text-decoration: none;
}

    .uw-logo-link:hover,
    .uw-logo-link:focus {
        color: inherit;
    }

.uw-logo {
    display: block;
    width: min(470px, 48vw);
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}


/* ==========================================================================
   4. HEADER STATUS
   ========================================================================== */

.uw-header-status {
    flex: 0 0 auto;
    padding: 7px 0 7px 18px;
    border-left: 5px solid var(--uw-red);
    color: var(--uw-blue-dark);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}


/* ==========================================================================
   5. MAIN CONTENT
   ========================================================================== */

.uw-main {
    display: block;
    width: 100%;
}


/* ==========================================================================
   6. HERO
   ========================================================================== */

.uw-hero {
    width: 100%;
    background: var(--uw-white);
}

.uw-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    min-height: 650px;
}


/* ==========================================================================
   7. HERO CONTENT
   ========================================================================== */

.uw-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 7vw, 120px) clamp(40px, 6vw, 120px);
}

    .uw-hero-content h1 {
        max-width: 760px;
        margin-bottom: 34px;
        color: var(--uw-blue-dark);
    }

    .uw-hero-content .uw-lead {
        margin-bottom: 0;
        max-width: 650px;
    }


/* ==========================================================================
   8. HERO IMAGE
   ========================================================================== */

.uw-hero-media {
    position: relative;
    min-width: 0;
    min-height: 650px;
    overflow: hidden;
    background: var(--uw-grey-100);
}

.uw-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
}


/* ==========================================================================
   9. MISSION SECTION
   ========================================================================== */

.uw-mission {
    padding: clamp(80px, 8vw, 130px) 0;
    background: var(--uw-grey-100);
}

.uw-mission-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(0, 2.5fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: start;
}

.uw-mission-label {
    padding-top: 9px;
}

    .uw-mission-label .uw-kicker {
        margin-bottom: 0;
    }

.uw-mission-content {
    max-width: 900px;
}

    .uw-mission-content h2 {
        max-width: 800px;
        margin-bottom: 38px;
    }

    .uw-mission-content p {
        font-size: 1.1875rem;
        line-height: 1.7;
    }


/* ==========================================================================
   10. DEVELOPMENT STATUS SECTION
   ========================================================================== */

.uw-development {
    padding: clamp(60px, 6vw, 90px) 0;
    background: var(--uw-white);
}

.uw-development-message {
    display: flex;
    align-items: stretch;
    gap: 28px;
    padding: 34px 0;
    border-top: 1px solid var(--uw-grey-300);
    border-bottom: 1px solid var(--uw-grey-300);
}

.uw-development-marker {
    flex: 0 0 8px;
    width: 8px;
    min-height: 70px;
    background: var(--uw-red);
}

.uw-development-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.uw-development-title {
    margin: 0 0 8px;
    color: var(--uw-blue-dark);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.25;
}

.uw-development-content p {
    margin: 0;
    font-size: 1.0625rem;
}


/* ==========================================================================
   11. FOOTER
   ========================================================================== */

.uw-footer {
    width: 100%;
    padding: 52px 0;
    background: var(--uw-blue-dark);
    color: var(--uw-white);
}

.uw-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.uw-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .uw-footer-brand strong {
        color: var(--uw-white);
        font-size: 1.15rem;
    }

    .uw-footer-brand span {
        opacity: 0.9;
    }

.uw-footer-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
    font-size: 0.9375rem;
    opacity: 0.9;
}


/* ==========================================================================
   12. LARGE SCREENS
   ========================================================================== */

@media (min-width: 1600px) {

    .uw-hero-grid {
        min-height: 700px;
    }

    .uw-hero-media {
        min-height: 700px;
    }
}


/* ==========================================================================
   13. TABLET
   ========================================================================== */

@media (max-width: 1000px) {

    .uw-header-inner {
        min-height: 110px;
        gap: 30px;
    }

    .uw-logo {
        width: min(420px, 58vw);
    }


    /* HERO */

    .uw-hero-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .uw-hero-content {
        padding: 75px var(--uw-page-padding);
    }

    .uw-hero-media {
        min-height: 500px;
    }

    .uw-hero-image {
        position: absolute;
    }


    /* MISSION */

    .uw-mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .uw-mission-label {
        padding-top: 0;
    }

    .uw-mission-content {
        max-width: 850px;
    }
}


/* ==========================================================================
   14. MOBILE
   ========================================================================== */

@media (max-width: 650px) {

    /* HEADER */

    .uw-header-inner {
        min-height: 92px;
    }

    .uw-logo {
        width: min(350px, 78vw);
        max-height: 75px;
    }

    .uw-header-status {
        display: none;
    }


    /* HERO */

    .uw-hero-content {
        padding: 55px var(--uw-page-padding) 60px;
    }

        .uw-hero-content h1 {
            margin-bottom: 25px;
        }

    .uw-hero-media {
        min-height: 330px;
    }


    /* MISSION */

    .uw-mission {
        padding: 70px 0;
    }

    .uw-mission-content h2 {
        margin-bottom: 28px;
    }

    .uw-mission-content p {
        font-size: 1.0625rem;
    }


    /* DEVELOPMENT */

    .uw-development {
        padding: 50px 0;
    }

    .uw-development-message {
        gap: 20px;
        padding: 28px 0;
    }

    .uw-development-marker {
        flex-basis: 6px;
        width: 6px;
    }


    /* FOOTER */

    .uw-footer {
        padding: 42px 0;
    }

    .uw-footer-inner {
        flex-direction: column;
        gap: 30px;
    }

    .uw-footer-meta {
        text-align: left;
    }
}


/* ==========================================================================
   15. VERY SMALL SCREENS
   ========================================================================== */

@media (max-width: 400px) {

    .uw-logo {
        width: 82vw;
    }

    .uw-hero-media {
        min-height: 270px;
    }
}