@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Chewy&display=swap');

:root {
    --primary: #f29fb0;       /* Soft pink from the menu headers */
    --primary-dark: #e08396;
    --bg-color: #ffedea;      /* Very light peach/pink background */
    --card-bg: #ffffff;
    --text-color: #5a403d;    /* Dark brown for warm contrast */
    --text-light: #8c6e69;
    --accent: #f9d342;        /* Maybe some warm yellow accent */
    --radius: 20px;
    --shadow: 0 8px 30px rgba(90, 64, 61, 0.08);
    --shadow-hover: 0 15px 40px rgba(242, 159, 176, 0.2);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Chewy', cursive;
    font-weight: normal;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 237, 234, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.logo {
    font-size: 2rem;
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    padding: 120px 5% 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-color) 0%, #fff4f2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Blobs in Hero */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
}

.hero::before {
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    top: -50px;
    left: -50px;
    filter: blur(50px);
}

.hero::after {
    width: 250px;
    height: 250px;
    background-color: #ffd1dc;
    bottom: 10%;
    right: -50px;
    filter: blur(40px);
}

.hero-title {
    font-size: 5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242, 159, 176, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 159, 176, 0.5);
}

/* SECTIONS */
.section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

/* INFO CARDS (Services, Schedule) */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.review-author {
    font-weight: 700;
    color: var(--primary-dark);
}

/* CATALOG (Menu) */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(242, 159, 176, 0.3);
}

.item-img-placeholder {
    width: 100px;
    height: 100px;
    background-color: var(--bg-color);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 2rem;
    flex-shrink: 0;
    overflow: hidden;
}

.item-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.item-price {
    font-family: 'Chewy', cursive;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

/* FOOTER */
footer {
    background-color: white;
    padding: 40px 5%;
    text-align: center;
    margin-top: 50px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 2rem;
    color: var(--text-color);
    transition: color 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .item-img-placeholder {
        width: 100%;
        height: 200px;
    }
}
