/* Variables */
:root {
    --primary-color: #FF4500;
    --secondary-color: #FF7F50;
    --text-color: #4A1C03;
    --light-color: #FFF;
    --background-color: #FFF5EE;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Header & Navigation */
.hero {
    background: linear-gradient(rgba(255, 69, 0, 0.8), rgba(255, 127, 80, 0.8)), url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: var(--light-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(255, 69, 0, 0.9);
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-color);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--light-color);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary-color);
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

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

.hero-content p {
    font-size: 1.5rem;
    max-width: 600px;
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.products h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

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

.product-image {
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    color: var(--primary-color);
    padding: 1.5rem;
    font-size: 1.5rem;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding: 5rem 2rem;
    background-color: var(--light-color);
}

.gallery h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Story Section */
.story {
    padding: 5rem 2rem;
    background-color: var(--background-color);
}

.story h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: var(--light-color);
    text-align: center;
}

.contact h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.contact-button:hover {
    background-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }

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

    .gallery-item img {
        height: 250px;
    }
}
