:root {
    --primary-bg: #FFF7ED;
    --accent-orange: #FF9F1A;
    --text-main: #7A5F52;
    --text-dark: #362117;
    --white: #FFFFFF;
    --soft-orange: #FFECD1;
    --heading-font: 'Fredoka', sans-serif;
    --body-font: 'Quicksand', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: #FCFAF8;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px; /* space for fixed header */
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--text-dark);
}

span {
    color: var(--accent-orange);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* HEADER */
header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.6rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
}


.nav-links a:hover {
    color: var(--accent-orange);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--soft-orange);
}

/* HERO */
.hero {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content p {
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-btns .btn {
    width: 100%;
    max-width: 260px;
}

.hero-image {
    text-align: center;
}

/* FLAVORS */
.flavors {
    padding: 4rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.flavor-grid {
    display: grid;
    gap: 1.5rem;
}

.flavor-card {
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #F5F5F5;
}

.flavor-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.peri-peri { background-color: #FFF5F5; }
.sweet-chilli { background-color: #FFF9F0; }
.salted { background-color: #F0F9FF; }
.masala { background-color: #F9F0FF; }

/* STORY */
.story {
    padding: 4rem 0;
}

.story-grid {
    display: grid;
    gap: 2rem;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.story-content p {
    margin-bottom: 1rem;
}

/* PROMISE */
.promise {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #FFF7ED 100%);
}

.promise-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(122, 95, 82, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--soft-orange);
}

.promise-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promise-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 1rem;
    background: var(--primary-bg);
    border-radius: 20px;
}

.promise-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.promise-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--soft-orange);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* SHOP */
.shop {
    padding: 4rem 0;
}

.coming-soon-card {
    background: var(--soft-orange);
    padding: 2rem;
    border-radius: 24px;
    margin-top: 2rem;
}

.announcement {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border-radius: 9999px;
    border: none;
    font-size: 1rem;
}

/* CONTACT */
.contact {
    padding: 4rem 0;
    text-align: center;
}

footer {
    padding: 2rem 0;
    text-align: center;
}

/* ========================= */
/* TABLET (768px and above) */
/* ========================= */

@media (min-width: 768px) {

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-btns {
        flex-direction: row;
    }

    .flavor-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: row;
        justify-content: center;
    }

    .newsletter-form input {
        width: 300px;
    }
	
	.logo img {
        height: 55px;
    }
}

/* ========================= */
/* DESKTOP (1024px and above) */
/* ========================= */

@media (min-width: 1024px) {

    .hero-content h1 {
        font-size: 4rem;
    }

    .flavor-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .promise-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title h2 {
        font-size: 3rem;
    }

    .story-content h2 {
        font-size: 3rem;
    }
	 .logo img {
        height: 100px;
    }
	
	html {
    scroll-padding-top: 80px; /* Height of your header on desktop */
	}
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .btn.btn-primary {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
	
	.hero-content {
        margin-top: 2rem; /* adjust value as needed */
    }
	
	html {
        scroll-padding-top: 100px; /* header height on mobile */
    }

}