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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #E3DDD5;
}

header {
    background-color: #4E342E;
    color: #ffffff;
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}

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

nav a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

nav a:hover {
    color: #E0D5C7;
}

.hero {
    background: #4E342E;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 5rem 2rem 4rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    margin-top: 1rem;
    border: 2px solid #2c2c2c;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

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

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2.8rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.card {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 500;
}

.card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.card .price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 1.5rem;
}

.event-item {
    background: #fafafa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    border-left: 3px solid #2c2c2c;
    border: 1px solid #e8e8e8;
    border-left: 3px solid #2c2c2c;
}

.event-date {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer {
    background-color: #4E342E;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 6rem;
}

.contact-info {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.7;
}

.active {
    color: #E0D5C7;
    font-weight: 600;
}
#cart-count {
    background-color: #E0D5C7;
    color: #4E342E;
    border-radius: 50%;
    padding: 0.15rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.3rem;
    display: inline-block;
    min-width: 1.2rem;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffffff;
    padding: 0.5rem;
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #4E342E;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid #e8e8e8;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    /* Hero */
    .hero {
        padding: 6rem 1.5rem 4rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    /* Container */
    .container {
        padding: 2rem 1rem;
    }

    /* Section Headings */
    .section h2 {
        font-size: 2rem;
    }

    /* Grid */
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards */
    .card {
        padding: 1.5rem;
    }

    /* Footer */
    footer {
        padding: 2rem 1rem;
    }

    /* Calendar Schedule */
    .schedule-grid {
        overflow-x: auto;
    }
    
    .day-cell {
        min-width: 120px;
    }
    
    /* Modals */
    .modal-content,
    .contact-modal-content {
        margin: 5% 1rem;
        padding: 1.5rem;
        max-width: calc(100% - 2rem);
    }
    
    /* Two-column layouts */
    div[style*='grid-template-columns: 1fr 1fr'] {
        grid-template-columns: 1fr !important;
    }
    
    /* Footer */
    footer p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    /* Map */
    iframe[src*='google.com/maps'] {
        height: 300px !important;
    }

}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    /* Logo */
    .logo {
        font-size: 1.2rem;
    }

    /* Hero */
    .hero {
        padding: 4rem 1rem 3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Section Headings */
    .section h2 {
        font-size: 1.5rem;
    }

    .section h3 {
        font-size: 1.2rem;
    }

    /* Cards */
    .card {
        padding: 1.25rem;
    }

    .card .price {
        font-size: 1.2rem;
    }

    /* Event Items */
    .event-item {
        padding: 1.25rem;
    }

    /* Contact Info */
    .contact-info {
        padding: 1.5rem;
    }

    /* Buttons */
    .add-to-cart-btn {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 0.5rem;
    }

    /* Calendar */
    .schedule-time {
        font-size: 0.8rem;
    }
    
    .day-cell {
        min-width: 100px;
        font-size: 0.85rem;
    }
    
    /* Modals */
    .modal-content,
    .contact-modal-content {
        margin: 2% 0.5rem;
        padding: 1rem;
    }
    
    .close-modal,
    .close-contact-modal {
        font-size: 1.2rem;
        right: 0.5rem;
        top: 0.5rem;
    }
    
    /* Footer */
    footer p {
        font-size: 0.75rem !important;
    }
    
    /* Map */
    iframe[src*='google.com/maps'] {
        height: 250px !important;
    }
    
    /* Text sizes */
    p[style*='font-size: 1.1rem'] {
        font-size: 1rem !important;
    }

}
