:root {
    --primary-color: #87CEEB; /* Soft Sky Blue */
    --secondary-color: #FFD700; /* Soft Golden Yellow */
    --accent-color: #f8f9fa;
    --bg-color: #ffffff;
    --text-color: #333333;
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    --card-bg: #fdfdfd;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Bubbly Background */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f7fa 0%, #fff9c4 100%);
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(135, 206, 235, 0.2);
    border-radius: 50%;
    animation: rise var(--duration) infinite ease-in;
    pointer-events: none;
    box-shadow: inset -5px -5px 10px rgba(0,0,0,0.05);
}

@keyframes rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh) scale(1.5);
        opacity: 0;
    }
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--secondary-color);
    z-index: -1;
    opacity: 0.4;
    border-radius: 10px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #444;
}

/* Header & Nav */
header {
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #444;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%; /* Bubbly circle logo */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

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

nav a {
    text-decoration: none;
    color: #666;
    font-weight: 700;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    padding-top: 80px;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #333;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #666;
}

.hero-image-placeholder {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box {
    width: 380px;
    height: 380px;
    background: white;
    border: 8px solid var(--primary-color);
    border-radius: 50%; /* Circular bubbly image box */
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-weight: bold;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
    animation: bounce 6s infinite ease-in-out;
    overflow: hidden; /* Keep image inside circle */
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn.primary {
    background-color: var(--secondary-color);
    color: #555;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn.secondary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.btn:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Menu Section */
section {
    padding: 8rem 10%;
}

.menu {
    background: #fdfdfd;
}

.menu-image-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 10px solid white;
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
}

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

.menu-category {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-bottom: 8px solid var(--secondary-color);
}

.menu-category h3 {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1.8rem;
}

.menu-item-placeholder {
    font-style: italic;
    color: #999;
}

/* Events Section */
.events {
    background: #f0faff;
}

.events-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.events-carousel {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

.event-card {
    min-width: 300px;
    background: white;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 2px solid #eee;
    transition: transform 0.3s, border-color 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.event-date {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event-info h4 {
    font-size: 1.4rem;
    color: #444;
    margin-bottom: 0.5rem;
}

.event-info p {
    color: #777;
}

/* Contact Section */
.contact {
    text-align: center;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.email {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
    margin: 2rem 0;
    font-family: var(--font-heading);
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icon {
    padding: 1rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    text-align: center;
    padding: 4rem;
    background: #f8f9fa;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 120px;
        padding-bottom: 5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .image-box {
        width: 280px;
        height: 280px;
        margin-top: 3rem;
    }
    
    nav ul {
        display: none;
    }
}
