* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", "Verdana", sans-serif;
}

:root {
    --primary: #A2572A;
    --secondary: #E6C28B;
    --light: #FFF6EB;
    --dark: #4A1E14;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

header {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.menu {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    overflow: visible;
}

.menu i {
    font-size: 1.5rem;
    color: white;
    display: none;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 2rem;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: normal;
}

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

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/background.png');
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    transform: scale(1.2);
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}
 
.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

section {
    margin: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--secondary);
    margin: 0.5rem auto;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-weight: bold;
    color: var(--dark);
    font-size: 1.2rem;
}

.about {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img img:hover {
    transform: scale(1.1);
}

.hours {
    background-color: var(--secondary);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.hours h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.8rem;
    text-align: center;
    border-bottom: 1px solid var(--primary);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table tr:nth-child(even) {
    background-color: rgba(139, 69, 19, 0.1);
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .menu {
        position: relative;
    }

    .menu i {
        display: block;
    }

    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 2rem 0 2rem;
    }

    .header-container > .logo {
        padding: 0.8rem 0;
    }

    nav ul {
        position: fixed;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        border-radius: 0 0 10px 10px;
        background-color: var(--dark);
        width: 90%;
        max-width: 300px;
        box-sizing: border-box;
        text-align: center;
        z-index: 9999;
    }

    nav ul.open {
        max-height: 500px;
    }

    nav ul li {
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    nav a {
        display: block;
        padding: 0.75rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .about {
        flex-direction: column;
    }

    .hours {
        padding: 1rem;
    }

}