* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f07d1f;
    --bg-deep: #8c3f10;
    --bg-panel: rgba(125, 52, 15, 0.78);
    --cream: #fff4df;
    --white: #ffffff;
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.86);
    --line: rgba(255, 255, 255, 0.12);
    --shadow: rgba(0, 0, 0, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(140, 63, 16, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    width: min(1200px, calc(100% - 40px));
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--cream);
}

.header-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-cart img {
    width: 24px;
    height: 24px;
}

.hero,
.content-section,
.banner-section,
.strip-section,
.reviews-section {
    position: relative;
    overflow: hidden;
}

.section-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-1 { background-image: url('/assets/images/sections/1.webp'); 
     background-repeat: no-repeat;
   background-position: center;
   background-size: contain;
    background-size: 100% 920px;
    

   width: 100%;
   height: 920px; /* edit this to change section height */
}
.section-2 {
   background-image: url('/assets/images/sections/2.webp');
   background-repeat: no-repeat;
   background-position:center 1px;
   background-size: contain;

   width: 100%;
   height: 700px; /* edit this to change section height */
}
.section-3 { background-image: url('/assets/images/sections/3.webp'); }
.section-4 { background-image: url('/assets/images/sections/4.webp'); }
.section-5 { background-image: url('/assets/images/sections/5.webp'); }
.section-6 { background-image: url('/assets/images/sections/6.webp'); }



.section-overlay.soft {
    background: rgba(0, 0, 0, 0.18);
}

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

}
.hero-content,
.content-card,
.banner-content,
.strip-content,
.reviews-inner {
    position: relative;
    z-index: 1;
}



.eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 244, 223, 0.92);
}

.hero h1 {
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-text {
    width: min(680px, 100%);
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-soft);
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}



.btn span,
.text-link span {
    position: relative;
    z-index: 1;
}

.btn:hover,
.text-link:hover,
.shop-image-link:hover {
    transform: translateY(-6px);
}

.btn:hover::before,
.text-link:hover::before,
.shop-image-link:hover::before {
    bottom: 0;
}



/* Shop button container position */
.section-shop-button {
    position: relative;

    top: -100px;   /* move up or down */
    left: -265px;  /* move left or right */
}

/* Shop button link */
.shop-image-link {
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Shop button image */
.shop-image-link img {
    width: 250px;   /* edit button width */
    height: 500px;  /* edit button height */
    object-fit: contain;

    /* drop-down animation */
    animation: shopDrop 3s ease-out;

    transition: transform 0.3s ease;
}

/* Hover effect */
.shop-image-link:hover img {
    transform: scale(1.03);
}

/* Drop-down animation */
@keyframes shopDrop {

    0% {
        transform: translateY(-300px);
        opacity: 0;
    }

    70% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}


.framed-block {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  
} 
.content-card {
    width: min(760px, 100%);
    padding: 40px;
    border-radius: 28px;
    background: var(--bg-panel);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 20px 60px var(--shadow);
    text-align: center;
}

.content-card h2,
.split-copy h2,
.banner-content h2,
.strip-content h2,
.reviews-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.content-card p,
.split-copy p,
.banner-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.text-link {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--white);
}


.split-copy {
    background: #9a4918;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px;
}

.banner-section {
    
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    text-align: center;
}

.banner-content {
    width: min(820px, 100%);
}

.strip-section {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
}

.strip-content {
    width: min(900px, 100%);
}

.reviews-section {
    min-height: 760px;
    padding: 88px 24px;
}

.reviews-inner {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: end;
}

.review-grid {
    display: grid;
    gap: 18px;
}

.review-card {
    border-radius: 24px;
    background: rgba(255, 244, 223, 0.92);
    color: var(--bg-deep);
    padding: 24px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

@media (max-width: 980px) {
    .header-inner {
        width: min(100%, calc(100% - 32px));
        min-height: 74px;
    }

    .site-nav {
        gap: 18px;
    }

    .split-section,
    .reviews-inner {
        grid-template-columns: 1fr;
    }

    .split-copy {
        padding: 48px 24px;
    }
}

@media (max-width: 700px) {
    .header-inner {
        width: min(100%, calc(100% - 24px));
        min-height: 68px;
    }

    .site-nav {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 96px 20px 72px;
    }

    .content-card {
        padding: 28px 22px;
    }

    .review-card {
        font-size: 18px;
    }

    .shop-image-link img {
        width: 180px;
    }
}