/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================
   VARIABLES
========================= */

:root {
    --primary: #1c4f7a;
    --primary-dark: #143a5a;

    --accent: #e5a72b;

    --text: #202b36;
    --muted: #687582;

    --background: #f5f7f9;
    --white: #ffffff;

    --border: #e2e6ea;
}


/* =========================
   GENERAL
========================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--background);

    min-height: 100vh;
}

a {
    text-decoration: none;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: var(--white);

    border-bottom: 1px solid var(--border);

    padding: 18px 0;
}

.header-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;

    width: auto;
    max-width: 220px;
    max-height: 70px;
}


/* Header right */

.header-right {
    display: flex;

    align-items: center;

    gap: 30px;
}


/* Business hours */

.business-hours {
    display: flex;

    flex-direction: column;

    text-align: right;

    font-size: 13px;

    line-height: 1.5;

    color: var(--muted);
}

.business-hours strong {
    color: var(--text);

    font-size: 14px;

    margin-bottom: 2px;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 22px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.2px;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;

    white-space: nowrap;
}


/* Primary */

.btn-primary {
    color: var(--white);

    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-1px);
}


/* Secondary */

.btn-secondary {
    color: var(--primary);

    background: var(--white);

    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    color: var(--white);

    background: var(--primary);

    transform: translateY(-1px);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: calc(100vh - 110px);

    display: flex;
    align-items: center;

    padding: 70px 30px;

    background-image:
        linear-gradient(
            rgba(206, 206, 206, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        url("../images/northlake-bg.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero-container {
    width: 100%;

    max-width: 1100px;

    margin: 0 auto;

    background: var(--white);

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.08);

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
    padding: 65px;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.hero-content h1 {
    max-width: 650px;

    margin-bottom: 22px;

    color: var(--primary-dark);

    font-size: 44px;

    line-height: 1.15;

    font-weight: 700;
}


.hero-text {
    max-width: 600px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


/* =========================
   NOTICE
========================= */

.notice {
    margin-bottom: 30px;

    padding: 18px 20px;

    background: #f4f7fa;

    border-left: 4px solid var(--primary);

    border-radius: 0 4px 4px 0;
}


.notice h3 {
    margin-bottom: 6px;

    color: var(--primary-dark);

    font-size: 16px;
}


.notice p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================
   CONTACT PANEL
========================= */

.contact-panel {
    padding: 55px 45px;

    color: var(--white);

    background: var(--primary);

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.contact-panel h2 {
    margin-bottom: 12px;

    font-size: 28px;

    line-height: 1.2;
}


.contact-intro {
    margin-bottom: 35px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 15px;

    line-height: 1.6;
}


/* Contact item */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;
}


.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    font-size: 17px;
}


.contact-label {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    text-transform: uppercase;
}


.contact-value {
    color: var(--white);

    font-size: 16px;

    line-height: 1.5;
}


a.contact-value {
    font-weight: 600;

    transition: opacity 0.2s ease;
}


a.contact-value:hover {
    opacity: 0.75;
}


/* Hours */

.contact-hours {
    margin-top: 5px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.contact-hours p {
    color: rgba(255, 255, 255, 0.85);

    font-size: 14px;

    line-height: 1.7;
}


.contact-hours strong {
    color: var(--white);
}


/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 20px 30px;

    background: var(--white);

    border-top: 1px solid var(--border);

    text-align: center;
}


.site-footer p {
    color: var(--muted);

    font-size: 12px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .header-container {
        padding: 0 20px;
    }

    .business-hours {
        display: none;
    }

    .hero {
        padding: 45px 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 50px 40px;
    }

    .contact-panel {
        padding: 45px 40px;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .site-header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;

        gap: 15px;

        padding: 0 15px;
    }

    .logo img {
        max-width: 190px;
    }

    .header-right {
        width: 100%;

        justify-content: center;
    }

    .header-right .btn {
        width: 100%;
    }


    .hero {
        min-height: auto;

        padding: 25px 15px 35px;
    }


    .hero-container {
        border-radius: 7px;
    }


    .hero-content {
        padding: 35px 25px;
    }


    .hero-content h1 {
        font-size: 31px;

        line-height: 1.2;
    }


    .hero-text {
        font-size: 16px;

        line-height: 1.65;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .contact-panel {
        padding: 35px 25px;
    }


    .contact-panel h2 {
        font-size: 25px;
    }


    .site-footer {
        padding: 18px 15px;
    }
}