/* =========================
   GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f4f1ed;
    font-family: 'Cormorant Garamond', serif;
    color: #3a342f;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f4f1ed;
    border-bottom: 2px solid #b29b88;
}

.logo {
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        font-size: 20px;
        font-weight: 300;
        letter-spacing: 1px;
        color: #3a342f;
        transition: 0.3s;
    }

        .nav-links a:hover {
            color: #9e8877;
        }

/* =========================
   HOME PAGE
========================= */

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
    background-color: #f4f1ed;
}

/* TOP LEFT */

.hero-left-top {
    padding: 80px;
    display: flex;
    align-items: center;
}

    .hero-left-top h1 {
        font-size: 52px;
        line-height: 1.3;
        font-weight: 300;
        letter-spacing: 1px;
    }

    .hero-left-top strong {
        font-weight: 900;
    }

/* TOP RIGHT */

.hero-right-top {
    height: 100%;
}

    .hero-right-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* BOTTOM LEFT */

.hero-left-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM RIGHT */

.hero-right-bottom {
    padding: 80px;
    display: flex;
    align-items: center;
}

.content-box {
    display: flex;
    gap: 40px;
    width: 100%;
}

.vertical-line {
    width: 2px;
    background-color: #b29b88;
}

.content-text h2 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 30px;
}

.content-text p {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.contact-btn {
    background-color: #b29b88;
    color: white;
    text-decoration: none;
    padding: 18px 32px;
    font-size: 20px;
    letter-spacing: 3px;
    transition: 0.3s;
}

    .contact-btn:hover {
        background-color: #9e8877;
    }

/* =========================
   CONTENT PAGES
========================= */

.page-content {
    padding: 40px 20px;
}

.section-layout {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
}

    .section-layout h1 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2rem;
        font-weight: 400;
    }

    .section-layout article {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 2px solid #b29b88;
    }

    .section-layout h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        font-weight: 400;
    }

    .section-layout p,
    .section-layout li {
        font-size: 1.15rem;
    }

    .section-layout ul {
        padding-left: 20px;
    }

    .section-layout li {
        margin-bottom: 10px;
    }

/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-left-top,
    .hero-right-bottom {
        padding: 60px 40px;
    }

        .hero-left-top h1 {
            font-size: 42px;
        }

    .content-text h2 {
        font-size: 42px;
    }

    .content-text p {
        font-size: 24px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    /* NAVIGATION */

    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .logo {
        text-align: center;
        font-size: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

        .nav-links a {
            font-size: 18px;
        }

    /* HERO */

    .hero-left-top,
    .hero-right-bottom {
        padding: 40px 25px;
    }

        .hero-left-top h1 {
            font-size: 32px;
            line-height: 1.3;
        }

    .hero-right-top {
        height: auto;
    }

    .content-box {
        flex-direction: column;
        gap: 25px;
    }

    .vertical-line {
        width: 100%;
        height: 2px;
    }

    .content-text h2 {
        font-size: 34px;
    }

    .content-text p {
        font-size: 20px;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
        font-size: 18px;
        padding: 16px 20px;
    }

    /* CONTENT PAGES */

    .section-layout h1 {
        font-size: 1.6rem;
    }

    .section-layout h2 {
        font-size: 1.25rem;
    }

    .section-layout p,
    .section-layout li {
        font-size: 1rem;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .hero-left-top h1 {
        font-size: 26px;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .content-text p {
        font-size: 18px;
    }

    .nav-links {
        gap: 10px;
    }

        .nav-links a {
            font-size: 16px;
        }
}
