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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #c7302a 0%, #8b1e1e 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-title {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: -0.5px;
}

.site-title a {
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Cart Button */
.cart-button button {
    background: #ffd700;
    color: #8b1e1e;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cart-button button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

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

.parallax-bg {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background: linear-gradient(rgba(199, 48, 42, 0.7), rgba(139, 30, 30, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23c7302a" width="1200" height="800"/><circle cx="400" cy="300" r="150" fill="%238b1e1e" opacity="0.3"/><circle cx="800" cy="500" r="200" fill="%23d94a3d" opacity="0.2"/><path d="M0,400 Q300,200 600,400 T1200,400 L1200,800 L0,800 Z" fill="%236b1515" opacity="0.4"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    letter-spacing: -2px;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.3s ease-out;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background: white;
}

.content-section:nth-child(even) {
    background: #f8f8f8;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #c7302a;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    text-align: center;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c7302a;
}

/* Parallax Dividers */
.parallax-divider {
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-divider-1 {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d94a3d" width="1200" height="600"/><path d="M0,300 Q200,200 400,300 T800,300 Q1000,350 1200,300 L1200,600 L0,600 Z" fill="%23c7302a" opacity="0.5"/><circle cx="300" cy="150" r="80" fill="%23ff6b5a" opacity="0.3"/><circle cx="900" cy="400" r="120" fill="%238b1e1e" opacity="0.4"/></svg>');
}

.parallax-divider-2 {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%238b1e1e" width="1200" height="600"/><path d="M0,200 Q300,300 600,200 T1200,200 L1200,0 L0,0 Z" fill="%23c7302a" opacity="0.4"/><circle cx="600" cy="300" r="150" fill="%23d94a3d" opacity="0.3"/></svg>');
}

.parallax-overlay {
    color: white;
    text-align: center;
    z-index: 2;
}

.parallax-overlay h2 {
    font-size: 3rem;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #c7302a;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(199, 48, 42, 0.3);
}

.btn:hover {
    background: #a82822;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(199, 48, 42, 0.4);
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
}

.btn-primary {
    background: #ffd700;
    color: #8b1e1e;
}

.btn-primary:hover {
    background: #ffed4e;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-card-content {
    padding: 1.5rem;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.product-card h3 a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card h3 a:hover {
    color: #c7302a;
}

.heat-level {
    font-size: 0.9rem;
    color: #c7302a;
    margin: 0.5rem 0;
    font-weight: 600;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #c7302a;
    margin: 1rem 0;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-image img {
    width: 100%;
    border-radius: 12px;
    background: #f8f8f8;
}

.product-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.product-description {
    margin: 1.5rem 0;
    line-height: 1.8;
    color: #555;
}

.sku,
.stock {
    color: #888;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #c7302a 0%, #8b1e1e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Content Pages */
.content-page {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin: 2rem 0;
}

.content-page h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #c7302a;
}

.content-page h3 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8b1e1e;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 0;
}

footer p {
    margin: 0.5rem 0;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .parallax-overlay h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .parallax-hero {
        height: 80vh;
    }

    .parallax-divider {
        height: 300px;
        background-attachment: scroll;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .site-title {
        font-size: 1.3rem;
    }
}
