/* ========================================
   COLOUR PALETTE / BRAND THEME
======================================== */

/*
    Primary Dark Green:   #354738
    Primary Green:        #465c49
    Soft Green:           #71806f

    Light Beige:          #f2efe8
    Warm Beige:           #e9e5da
    Off White:            #f7f5f0
    White:                #ffffff

    Main Text:            #2f332f
    Heading Text:         #2f3e34
    Secondary Text:       #626b64

    Footer Dark Green:    #253229

    Brand style:
    Premium, natural, botanical, calm and uncluttered.
*/

/* ========================================
   GLOBAL
======================================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    background: #f7f5f0;
    color: #2f332f;
}

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

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

.section-label {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #71806f;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    color: #2f3e34;
}

h2 {
    margin-top: 0;
    font-size: 40px;
    font-weight: 500;
}

p {
    line-height: 1.7;
    color: #626b64;
}


/* ========================================
   NAVBAR
======================================== */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    color: #2f3e34;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
}

.main-nav a:hover {
    color: #6f846f;
}

/* ========================================
   BUTTONS
======================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 46px;
    padding: 0 28px;

    background: #465c49;
    color: #ffffff;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1;

    border: 1px solid #465c49;
    border-radius: 3px;

    box-sizing: border-box;

    transition: 0.2s ease;
}

.button:hover {
    background: #354738;
    border-color: #354738;
    color: #ffffff;
}

.button-secondary {
    background: transparent;
    color: #465c49;
    border: 1px solid #465c49;
}

.button-secondary:hover {
    background: #465c49;
    color: #ffffff;
}


/* ========================================
   HERO
======================================== */

.hero {
    background: #f2efe8;
}

.hero-content {
    max-width: 1200px;
    min-height: 620px;
    margin: 0 auto;
    padding: 60px 24px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin: 0 0 24px;
    max-width: 650px;

    font-size: 58px;
    line-height: 1.08;
    font-weight: 400;
}

.hero-text > p {
    max-width: 560px;
    margin-bottom: 32px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 535px;
    object-fit: cover;
    border-radius: 4px;
}


/* ========================================
   FEATURED PRODUCTS
======================================== */

.products-section {
    background: #ffffff;
}

.products-section .section-content > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 48px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.product-card {
    background: #f7f5f0;
    padding-bottom: 30px;
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-card h3,
.product-card p {
    margin-left: 26px;
    margin-right: 26px;
}

.product-card h3 {
    margin-top: 26px;
    margin-bottom: 14px;
    font-size: 26px;
    font-weight: 500;
}


/* ========================================
   HAMPERS
======================================== */

.hampers-section {
    background: #e9e5da;
}

.hamper-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.hamper-text h2 {
    max-width: 500px;
}

.hamper-text p {
    max-width: 500px;
}

.hamper-text .button {
    margin-top: 18px;
}

.hamper-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}


/* ========================================
   ABOUT / BRAND VALUES
======================================== */

.about-section {
    background: #ffffff;
}

.about-section > .section-content > p:not(.section-label) {
    max-width: 650px;
}

.about-content {
    margin-top: 50px;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 4px;
}

.brand-values {
    display: grid;
    gap: 28px;
}

.brand-values article {
    padding-bottom: 24px;
    border-bottom: 1px solid #d9ddd7;
}

.brand-values article:last-child {
    border-bottom: none;
}

.brand-values h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 500;
}

.brand-values p {
    margin: 0;
}


/* ========================================
   CONTACT
======================================== */

.contact-section {
    background: #354738;
    text-align: center;
}

.contact-section .section-content {
    max-width: 600px;
}

.contact-section .section-label {
    color: #c7d0c4;
}

.contact-section h2 {
    color: #ffffff;
}

.contact-section p {
    color: #e5e9e3;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.contact-section .button {
    background: #ffffff;
    color: #354738;
}

.contact-section .button:hover {
    background: #e9e5da;
}


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

.site-footer {
    padding: 28px 24px;
    background: #253229;
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: #d9dfd8;
    font-size: 14px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .hero-content,
    .hamper-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-content {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 46px;
    }

    .hero-img,
    .hamper-img,
    .about-img {
        height: 440px;
    }

    .product-image {
        height: 420px;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .main-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav a {
        font-size: 14px;
    }


    .hero-content {
        padding: 45px 20px;
        gap: 35px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text > p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        text-align: center;
    }

    .hero-img {
        height: 320px;
    }


    .section-content {
        padding: 65px 20px;
    }

    h2 {
        font-size: 32px;
    }


    .product-list {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 390px;
    }


    .hamper-content,
    .about-content {
        gap: 35px;
    }

    .hamper-img,
    .about-img {
        height: 340px;
    }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #465c49;
    color: #ffffff;

    text-decoration: none;
    font-size: 24px;

    border-radius: 50%;

    z-index: 1000;

    transition: 0.2s ease;
}

.back-to-top:hover {
    background: #354738;
    color: #ffffff;
    transform: translateY(-3px);
}
