:root {
    --pink-hot: #FF1493;
    --pink-soft: #FF69B4;
    --pink-pale: #FFB6C1;
    --pink-cream: #FFF0F5;
    --sand: #F5DEB3;
    --ocean-dark: #006994;
    --ocean-light: #40E0D0;
    --sunset-orange: #FF6B35;
    --coconut: #8B4513;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--pink-hot);
    color: #fff;
    overflow-x: hidden;
}

/* Holiday Banner */
.holiday-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 20, 147, 0.9);
    color: #fff;
    text-align: center;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    left: 1rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-float 2s infinite;
}

.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 20, 147, 0.7);
}

@keyframes pulse-float {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 20, 147, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(255, 20, 147, 0.8); }
}

.floating-call-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-call-text {
    display: inline;
}

@media (max-width: 480px) {
    .floating-call {
        padding: 1rem;
        border-radius: 50%;
    }
    
    .floating-call-text {
        display: none;
    }
    
    .floating-call-icon {
        width: 28px;
        height: 28px;
    }
}

/* Animated background */
.bg-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, 
        var(--pink-hot) 0%, 
        var(--pink-soft) 40%, 
        var(--ocean-light) 70%, 
        var(--ocean-dark) 100%);
}

.bg-waves::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F5DEB3' fill-opacity='0.3' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,197.3C672,213,768,203,864,170.7C960,139,1056,85,1152,74.7C1248,64,1344,96,1392,112L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header/Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 2rem;
    position: relative;
}

.logo-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.logo-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

.brand-name {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 8vw, 5rem);
    text-shadow: 4px 4px 0 var(--sunset-orange), 
                 8px 8px 0 rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 10px rgba(255,255,255,0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255,255,255,0.6)); }
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--pink-cream), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1rem;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 20, 147, 0.7);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(255, 20, 147, 0.5); }
    50% { box-shadow: 0 8px 40px rgba(255, 20, 147, 0.8); }
}

/* Section styling */
section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 3px 3px 0 var(--sunset-orange);
}

/* Food Gallery */
.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.food-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.food-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.food-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.food-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.food-card:hover .food-card-overlay {
    transform: translateY(0);
}

.food-card-title {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Menu Section */
.menu-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.menu-notice {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.3);
    border-radius: 10px;
}

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

.menu-category {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--sand);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px dashed rgba(255, 255, 255, 0.3);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 400;
    font-size: 1rem;
}

.item-price {
    font-weight: 600;
    color: var(--sand);
    white-space: nowrap;
    margin-left: 1rem;
}

/* Info Section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.info-icon {
    margin-bottom: 1rem;
    color: var(--sand);
}

.info-icon svg {
    width: 48px;
    height: 48px;
}

.info-title {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sand);
}

.info-content {
    font-weight: 300;
    line-height: 1.8;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--pink-cream);
    margin-top: 0.5rem;
}

/* Highlights */
.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.highlight-tag {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
    transition: transform 0.3s ease;
}

.highlight-tag:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 4rem;
}

.footer-brand {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #1877F2;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.facebook-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.facebook-link:hover {
    background: #166FE5;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-container {
        padding: 0;
    }
    
    .logo-image {
        width: 160px;
        height: 160px;
    }
    
    section {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .menu-section {
        padding: 1.25rem;
        border-radius: 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .menu-category {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .menu-item {
        padding: 0.5rem 0;
    }
    
    .item-name {
        font-size: 0.9rem;
    }
    
    .item-price {
        font-size: 0.9rem;
    }
    
    .menu-notice {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .food-gallery {
        gap: 1rem;
    }
    
    .highlights {
        gap: 0.75rem;
    }
    
    .highlight-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}
