/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inconsolata', monospace;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Unica One', cursive;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 32px;
    text-align: center;
}

.text-content .section-title {
    text-align: left;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fac319;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1200px;
    padding: 0 22px;
    color: #fff;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-title {
    font-size: clamp(60px, 12vw, 120px);
    line-height: 0.9;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(28px, 6vw, 48px);
    margin-bottom: 32px;
    color: #fac319;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-description {
    font-size: clamp(18px, 3vw, 24px);
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-button {
    display: inline-block;
    padding: 18px 36px;
    background: #fac319;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid #fac319;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(250, 195, 25, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.cta-button.secondary:hover {
    background: #000;
    color: #fff;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.product-card:nth-child(1) .product-img {
    background: linear-gradient(45deg, #fac319, #fff);
}

.product-card:nth-child(1) .product-img::before {
    content: "🌶️\AORIGINAL\ASAUCE";
    white-space: pre-line;
    text-align: center;
}

.product-card:nth-child(2) .product-img {
    background: linear-gradient(45deg, #ff4444, #fff);
}

.product-card:nth-child(2) .product-img::before {
    content: "🌶️🌶️🌶️🌶️\AEXTREME\ASAUCE";
    white-space: pre-line;
    text-align: center;
}

.product-card:nth-child(3) .product-img {
    background: linear-gradient(45deg, #9adce6, #fff);
}

.product-card:nth-child(3) .product-img::before {
    content: "💨🌶️💨\ASMOKY\ASAUCE";
    white-space: pre-line;
    text-align: center;
}

.product-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.product-description {
    color: #666;
    font-size: 16px;
}

/* Yellow Section */
.yellow-section {
    padding: 80px 0;
    background: #fac319;
    color: #000;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
}

.text-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.learn-more-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #000;
}

.learn-more-btn:hover {
    background: transparent;
    color: #000;
}

.section-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    position: relative;
}

.yellow-section .section-img {
    background-image: url('images/created-with-passion.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.yellow-section .section-img::before {
    content: "";
}

.blue-section .section-img {
    background: linear-gradient(45deg, #ff9ff3, #f368e0, #ff6b6b);
}

.blue-section .section-img::before {
    content: "🌡️ 🌶️ 🔥\AHEAT\ASCALE";
    white-space: pre-line;
    text-align: center;
}

/* Product Showcase Images */
.product-showcase-img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.product-showcase-img.original {
    background-image: url('images/original-hot-sauce.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-showcase-img.original::before {
    content: "";
}

.product-showcase-img.smoked {
    background-image: url('images/smoked-chilli-hot-sauce.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-showcase-img.smoked::before {
    content: "";
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.feature-item {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 48px;
    color: #333;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    color: #fac319;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Light Blue Section */
.blue-section {
    padding: 80px 0;
    background: #9adce6;
    color: #000;
}

.blue-section .section-title {
    color: #000;
}

.blue-section .about-text,
.blue-section .section-description {
    color: #000;
}

.blue-section .stat-number {
    color: #000;
}

.blue-section .stat-label {
    color: rgba(0, 0, 0, 0.7);
}

.blue-section .content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
}

.heat-levels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.heat-item {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.contact .section-title {
    color: #fff;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact .cta-button {
    background: #fac319;
    color: #000;
    border-color: #fac319;
}

.contact .cta-button:hover {
    background: transparent;
    color: #fac319;
}

.contact .cta-button.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.contact .cta-button.secondary:hover {
    background: #fff;
    color: #000;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fac319;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #9adce6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 24px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(40px, 10vw, 80px);
    }

    .hero-subtitle {
        font-size: clamp(20px, 5vw, 32px);
    }

    .hero-description {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: 32px;
    }

    .content-wrapper,
    .content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .product-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-showcase-img {
        height: 250px;
        font-size: 18px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .footer-social {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 12px 16px;
    }

    .hero {
        padding-top: 70px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}