/* ========================= */
/* BRAND COLORS (REFINED) */
/* ========================= */
:root {
    --brand-blue: #2c6e88;      /* toned-down blue */
    --brand-green: #6aa84f;     /* natural muted green */
    --deep-green: #4e7c3a;      /* premium dark green */
    --soft-cream: #f4efe6;      /* luxury warm neutral */
    --light-bg: #eaf3e6;        /* soft section bg */
    --text-dark: #2a2a2a;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* ========================= */
/* HEADER */
/* ========================= */
.header {
    width: 100%;
    padding: 20px 60px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: var(--white);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--brand-green);
}

/* CTA BUTTON */
.btn-buy {
    background: var(--brand-green);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 500;
}

.btn-buy:hover {
    background: var(--deep-green);
}

/* ========================= */
/* HERO */
/* ========================= */

/* TEXT */


.highlight {
    color: #dff5e4;
}


.hero-text {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* IMAGE */
/* ========================= */
/* HERO - PREMIUM LEFT ALIGN */
/* ========================= */

.hero {
    position: relative;
    min-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0 80px;

    text-align: left;
    overflow: hidden;

    background-image: 
        linear-gradient(rgba(47,107,84,0.85), rgba(47,107,84,1)),
        url('images/logo-bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* CONTAINER */
.hero-container {
    max-width: 900px;
}

/* TEXT */
.hero-text {
    color: #ffffff;
}

/* HEADLINE */
.hero-text h1 {
    font-size: 100px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* SMALL TOP TEXT (Honestly) */
.hero-text .small {
    font-size: 28px;
    font-weight: 400;
    opacity: 0.85;
}

/* PARAGRAPH */
.hero-text p {
    font-size: 30px;
    max-width: 900px;
    margin: 20px 0 35px;
    opacity: 0.9;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

/* PRIMARY BUTTON */
.primary {
    background: #ffffff;
    color: #2e5b3f;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* PRIMARY HOVER */
.primary:hover {
    transform: translateY(-2px);
}

/* SECONDARY BUTTON */
.secondary {
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
}

/* ========================= */
/* MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {

    .hero {
        padding: 100px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-container {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text .small {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}
/* ========================= */
/* INSPIRATION SECTION */
/* ========================= */
.inspiration {
    position: relative;
    padding: 140px 60px;
    background-color: var(--light-bg);
    overflow: visible;
}

/* IMAGE */
.spice-bg {
    position: absolute;
    top: -100px;
    right: 5px;
    width: 1200px;
    z-index: 1;
    pointer-events: none;
}

/* WRAPPER */
.inspiration-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

/* ========================= */
/* CARDS */
/* ========================= */
.card {
    width: 45%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    display: flex;
}

.card-content {
    padding: 35px;
    color: var(--white);
    width: 100%;
}

/* HEADINGS */
.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
}

/* TEXT */
.card-content p {
    font-size: 15px;
    line-height: 1.8;
}

/* ========================= */
/* CARD COLORS */
/* ========================= */

/* ABOUT (refined blue) */
.pink {
    background: linear-gradient(
        135deg,
        #2c6e88,
        #1f556b
    );
}

/* PROMISE (deep green luxury) */
.blue {
    background: linear-gradient(
        135deg,
        #1f3d2b,
        #2e5b3f
    );
}

/* ========================= */
/* PRODUCTS */
/* ========================= */
.products {
    padding: 100px 60px;
    text-align: center;

    background: linear-gradient(
        180deg,
        var(--soft-cream),
        #eae3d6
    );
}

/* HEADER */
.products-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--text-dark);
}

.products-header p {
    color: #666;
    margin-bottom: 50px;
}

/* GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.product-card {
    background: var(--white);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* IMAGE */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* NAME */
.product-card h4 {
    font-size: 16px;
    color: var(--text-dark);
}

/* HOVER */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}




/* ========================= */
/* BRANDS STRIP */
/* ========================= */

.brands {
    padding: 20px 40px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brands-wrapper {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* TITLE */
.brands-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* STRIP */
.brands-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* LOGOS */
.brands-strip img {
    height: 75px;
    object-fit: contain;

    opacity: 0.8;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.brands-strip img:hover {
    opacity: 1;
    transform: scale(1.05);
}





/* ========================= */
/* CONTACT SECTION */
/* ========================= */

.contact {
    padding: 100px 60px;
    text-align: center;

    background: linear-gradient(
        135deg,
        #1f3d2b,
        #2c6e88
    );

    color: white;
}

/* WRAPPER */
.contact-wrapper {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

/* SUBTEXT */
.contact-sub {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* BOX */
.contact-box {
    background: rgba(255,255,255,0.08);
    padding: 30px;
    border-radius: 12px;
    display: inline-block;
}

/* LABEL */
.contact-label {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

/* NUMBER */
.contact-number {
    font-size: 28px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
}

/* HOVER */
.contact-number:hover {
    opacity: 0.8;
}




/* ========================= */
/* FOOTER */
/* ========================= */
/* ========================= */
/* FOOTER (LIGHT VERSION) */
/* ========================= */

.footer {
    padding: 60px 40px;
    text-align: center;

    background: #ffffff;
    color: #444;

    border-top: 1px solid rgba(0,0,0,0.05);
}

/* WRAPPER */
.footer-wrapper {
    max-width: 900px;
    margin: auto;
}

/* LOGO */
.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

/* ADDRESS */
.footer-address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    color: #999;
}t

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 60px;
    }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-image img {
        max-width: 300px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 100px 20px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .brands-strip {
        justify-content: center;
        gap: 30px;
    }

    .brands-strip img {
        height: 40px;
    }
}

@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
	.hero-image {
        display: none;
    }
}