@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');

/* CSS Variables */
:root {
    --bg-dark: #000;
    --text-light: #fff;
    --accent-yellow: #ff0;
    --accent-hover: #ffd700;
    --card-bg: #111;
    --font-primary: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}

.logo {
    width: 100px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-links a:hover {
    border-bottom-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* Hamburger menu */
#menu-toggle,
.menu-icon {
    display: none;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.hero-text {
    flex: 1 1 300px;
}

.hero-text h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-text h1 span {
    font-size: 1.2em;
    color: var(--accent-yellow);
    display: block;
}

.hero-text p {
    font-weight: 300;
    margin: 1.5rem 0 2rem;
    max-width: 600px;
}

.hero-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    animation: slideInRight 1s ease-out;
}

.social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideInRight 1s ease-out 0.2s both;
}

.social a {
    color: var(--accent-yellow);
    font-size: 1.8rem;
    transition: var(--transition);
}

.social a:hover {
    transform: scale(1.2);
    color: var(--accent-hover);
}

.product-types {
    width: 190px;
    display: block;
    margin: 2rem auto 0;
    animation: fadeInUp 1s ease-out;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.btn-small {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
    margin-top: 0.8rem;
}

.btn-small:hover {
    background-color: transparent;
    color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

/* Sections */
section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--accent-yellow);
}

.section-title span {
    color: var(--accent-yellow);
    background-color: #ff1e00;
    padding: 0 0.5rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 255, 0, 0.15);
    border-color: var(--accent-yellow);
}

.product-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.product-logo {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 1.2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.product-card:hover .product-logo {
    transform: scale(1.05);
}

/* Adjust card padding if needed */
.product-card {
    padding: 1.5rem 1rem;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.flavor {
    color: var(--accent-yellow);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.description {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.details .spicy i {
    color: var(--accent-yellow);
    margin-right: 0.2rem;
}

/* What's New section */
.whatsnew-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.whatsnew-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.whatsnew-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 16px rgba(255, 255, 0, 0.1);
}

.whatsnew-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.whatsnew-description {
    color: #ccc;
    font-size: 0.95rem;
    margin: 0.8rem 0 1.2rem;
    line-height: 1.5;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .whatsnew-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter Form */
#newsletter form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

#newsletter input[type="email"] {
    flex: 1 1 250px;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 40px;
    font-family: inherit;
}

/* Contact */
#contact address {
    font-style: normal;
}

#contact a {
    color: var(--accent-yellow);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(500px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(200px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .social {
        flex-direction: row;
        justify-content: center;
        margin: 1rem 0;
    }

    .product-types {
        width: 140px;
    }
}

@media (max-width: 768px) {
    /* Show hamburger icon */
    .menu-icon {
        display: block;
        font-size: 2rem;
        color: var(--accent-yellow);
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    #menu-toggle:checked + .menu-icon + .nav-links {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hero-img {
        max-width: 300px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-text h1 span {
        font-size: 1.1em;
    }

    .product-types {
        width: 100px;
    }

    .product-img {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}