/* Global Styles */
:root {
    --bg-color: #FAFAFA;
    --text-primary: #2D2D2D;
    --text-secondary: #666666;
    --accent-color: #C0A062;
    /* Soft Gold */
    --white: #FFFFFF;
    --card-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--accent-color);
}

.header-sale-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    line-height: 1.2;
}

.sale-tag {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.7rem;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.sale-contact a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.sale-contact a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 160, 98, 0.2);
}

.hero-image {
    flex: 1;
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Fancy shape or clean rect */
    box-shadow: 20px 20px 0px var(--accent-color);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.02);
    box-shadow: 15px 15px 0px var(--text-primary);
}

/* Features */
.features {
    padding: 8rem 5%;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 1rem auto 0;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--card-shadow);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Recipe Section */
.recipe {
    padding: 8rem 5%;
    background-color: var(--bg-color);
    position: relative;
}

.recipe-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.recipe-text {
    flex: 1;
}

.recipe-text .section-title {
    text-align: left;
    margin-left: 0;
}

.recipe-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.steps {
    list-style: none;
}

.steps li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    line-height: 1;
}

.step-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-info p {
    color: var(--text-secondary);
}

.recipe-visual {
    flex: 1;
    background-color: var(--white);
    border-radius: 20px;
    position: relative;
    /* Abstract art rep of rice maybe, or blank for now */
    background-image: radial-gradient(circle at 20% 20%, #fafafa 0%, #eee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rice-grain-art {
    width: 60%;
    height: 80%;
    background: url('hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    border-radius: 10px;
    filter: grayscale(20%);
}


/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    background: var(--text-primary);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-sale-box {
    margin-bottom: 2rem;
    padding: 2rem;
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    max-width: 500px;
    width: 90%;
}

.footer-sale-box h4 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-sale-box p {
    color: #ccc;
    margin-bottom: 1rem;
}

.sale-email {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--white);
    padding: 0.5rem 1.5rem;
    background: var(--accent-color);
    border-radius: 50px;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.sale-email:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.sale-subtext {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0 !important;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Scroll Reveal Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        /* Unstick on mobile if too tall */
    }

    .header-sale-notice {
        margin: 1rem 0;
        text-align: center;
    }

    .hero {
        flex-direction: column-reverse;
        /* Text on top on mobile usually better, but here image is nice */
        flex-direction: column;
        height: auto;
        padding-top: 2rem;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image {
        height: 50vh;
        width: 100%;
    }

    .recipe-wrapper {
        flex-direction: column;
    }
}