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

:root {
    --primary-red: #C73E2B;
    --primary-beige: #EAE5C8;
    --dark-gray: #2a2a2a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

body {
    font-family: 'DM Serif Text', serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-red);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #a83220;
    box-shadow: 0 4px 12px rgba(199, 62, 43, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-beige);
    color: var(--dark-gray);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: 2px solid var(--primary-red);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Header */
header {
    transition: all 0.3s ease;
    position: relative;
    background-color: white;
    z-index: 40;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-circle {
    width: 48px;
    height: 48px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    color: var(--dark-gray);
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: inline;
    }
}

/* Navigation */
nav {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-red);
}

.header-cta {
    display: none;
}

@media (min-width: 768px) {
    .header-cta {
        display: block;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-gray);
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #e5e5e5;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.mobile-menu .btn-primary {
    width: 100%;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--primary-beige), white);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text h1 {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.hero-text .subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image img {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: white;
}

.section-title {
    font-size: 2.25rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--primary-beige);
    border-radius: 8px;
}

.about-card .icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--dark-gray);
}

.mission {
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.mission h3 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.mission p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: #f9f7f4;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

.product-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.product-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.product-card .btn-primary {
    width: 100%;
}

/* Order Section */
.order {
    padding: 4rem 0;
    background-color: var(--primary-red);
    color: white;
    text-align: center;
}

.order h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .order h2 {
        font-size: 3rem;
    }
}

.order p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .order-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.order-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    color: var(--dark-gray);
}

.order-card .icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.order-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
}

.order-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.125rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.faq-item p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background-color: #f9f7f4;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-info h3 {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-info p {
    color: #666;
}

.contact-info a {
    color: #666;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-red);
}

.hours-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
}

.hours-box h3 {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hours-box p {
    color: #666;
    margin-bottom: 0.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'DM Serif Text', serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .btn-primary {
    width: 100%;
}

/* Maps Section */
.maps {
    padding: 3rem 0;
    background-color: white;
}

.maps h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.maps iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-section p {
    color: #999;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    color: #999;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-bottom p {
        justify-content: flex-start;
    }
}

.slideshow {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

    .slideshow img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        width: 100%;
        height: 100%;
        animation: fade 30s infinite;
    }

    .slideshow a {
        text-decoration: none;
        padding: 0;
        margin: 0;
    }

@keyframes fade {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    53% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}



img {
    box-shadow: 0 1px 2px #0003;
    width: 100%;
}

.swiper {
    height: 500px;
}

.swiper-slide {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 450px) {
    .swiper {
        height: 270px;
    }
}