:root {
    --primary: #eb94a4; /* Soft pink */
    --primary-glow: rgba(235, 148, 164, 0.4);
    --secondary: #9ecfc5; /* Mint green */
    --accent: #b19bc6; /* Lavender */
    --accent-gold: #f7d58a; /* Warm yellow */
    --bg-light: #fdf7f0; /* Creamy background */
    --text-main: #5c4e60; /* Soft dark for readability */
    --text-muted: #8b7a8f;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* Soft creamy gradient background */
    background: linear-gradient(135deg, #fdf7f0 0%, #fae6e9 50%, #eaf4f2 100%);
}

h1, .logo {
    font-family: 'Grand Hotel', cursive;
}

h2.slogan {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Background Animated Blobs */
.blob {
    position: absolute;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.7;
    animation: float 12s infinite ease-in-out alternate;
    border-radius: 50%;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    animation-delay: -4s;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    animation-delay: -8s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 10px 40px 0 rgba(235, 148, 164, 0.15);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    margin: 1.5rem 2rem;
    border-radius: 100px;
}

.logo {
    font-size: 2.2rem;
    color: var(--accent);
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    border: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background: #e38294;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 6px 20px rgba(158, 207, 197, 0.4);
}

.btn-secondary:hover {
    background: #88c0b5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 207, 197, 0.5);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 5rem 4rem;
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #fff;
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(235, 148, 164, 0.2);
}

.hero-content h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(to right, var(--primary) 0%, #ffb6c1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Micro-animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Menu Section */
.menu-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--text-main);
}

.category-block {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 2rem;
    border-bottom: 2px dashed var(--primary-glow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.product-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(235, 148, 164, 0.3);
    border-color: var(--primary);
}

.product-img {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.product-card h4 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.product-card .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        margin: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding: 3rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}
