:root {
    --primary-color: #92caff;
    /* deeper blue for accents / navbar background */
    --secondary-color: #e6f3ff;
    /* soft background */
    --text-color: #0d1a4f;
    /* slightly darker for better contrast */
    --font-family: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
}

.comic-neue-regular {
    font-family: "Comic Neue", cursive;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Comic Neue', cursive;
    font-size: 1rem;
    color: var(--text-color);
    user-select: none;
}

.language-switcher span {
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.language-switcher .active {
    font-weight: bold;
    text-decoration: underline;
    color: #000e55;
}


.hero-header {
    text-align: center;
    padding: 40px 20px 100px;
    background: linear-gradient(to bottom right, #d9eff7, #bee4ff);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hero-header .logo {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.hero-header h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 8px;
    font-family: 'Comic Neue', cursive;
}

.hero-header h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #32518a;
    margin-bottom: 20px;
}

.hero-header .tagline {
    font-size: 1.1rem;
    color: #333c6e;
    font-weight: 500;
    margin-bottom: 8px;
}

.hero-header .note {
    font-size: 0.95rem;
    color: #5b6a9a;
    font-style: italic;
}

.since-text {
    font-size: 1rem;
    color: #4a5e88;
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 10px;
}


.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--text-color);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #000e55;
    transform: translateY(-2px);
}



@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


.scroll-down-hint {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 25px;
    animation: bounce 1.5s infinite;
}

.logo {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
}


section {
    padding: 20px;
    text-align: center;
}

#gallery {
    background-color: var(--secondary-color);
    padding: 10px 20px;
    text-align: center;
    border-radius: 40px 40px;
    /* <-- NEW */
    margin-top: -60px;
    /* <-- gently pulls it up */
    position: relative;
    z-index: 1;
    box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



#gallery h2 {
    font-size: 2rem;
    color: var(--text-color);
    position: relative;
    margin-bottom: 40px;
}

.gallery-subtext {
    font-size: 1rem;
    color: #555;
    margin-top: -10px;
    margin-bottom: 40px;
    font-style: italic;
}


.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.food-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.food-card p {
    margin-top: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.more-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    border-radius: 15px;
    padding: 20px;
    height: 180px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-note {
    margin-top: 30px;
    font-size: 1rem;
    color: #444;
    font-style: italic;
}


#precautions {
    background-color: var(--secondary-color);
    padding: 0px 20px 40px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: none;
    border-top: 4px dashed var(--primary-color);

    position: relative;
}

#precautions {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#precautions .desc {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}


#precautions::before {
    content: "🐾";
    font-size: 2rem;
    position: absolute;
    top: -20px;
    left: 20px;
}

#precautions::after {
    content: "🐾";
    font-size: 2rem;
    position: absolute;
    bottom: -20px;
    right: 20px;
}

#precautions h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#precautions p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

#pricing {
    background-color: var(--secondary-color);
    padding: 0px 20px 40px 20px;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: none;
    border-top: 4px dashed var(--primary-color);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

#pricing::before {
    content: "💸";
    font-size: 2rem;
    position: absolute;
    top: -20px;
    left: 20px;
}

#pricing::after {
    content: "🐾";
    font-size: 2rem;
    position: absolute;
    bottom: -20px;
    right: 20px;
}

#pricing h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#pricing .desc {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

#pricing .price-box {
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 24px;
    margin: 0 auto 20px;
    max-width: 500px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

#pricing .price-box h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

#pricing .price-box p {
    font-size: 1rem;
    color: #333;
    margin: 8px 0;
}

#pricing .price-note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

#pricing .price-box ul.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

#pricing .price-box ul.price-list li {
    font-size: 1rem;
    padding: 8px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

#pricing .monthly {
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 500;
    color: var(--text-color);
}

#contact {
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 20px 20px 0px 0px;
    margin: 40px auto auto auto;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}



.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 480px) {
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Comic Neue', sans-serif;
    border: 2px solid transparent;
}

.contact-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}

/* WhatsApp: soft green */
.whatsapp-button {
    background-color: #43f88b;
    color: #064d3c;
    border-color: #80e4b3;
}

.whatsapp-button:hover {
    background-color: rgb(130, 218, 165)
}

/* Instagram: soft pink-red */
.instagram-button {
    background-color: #ffa1b1;
    color: #6b2b34;
    border-color: #f28fa3;
}

.instagram-button:hover {
    background-color: #f7abb9;
}

.contact-icon {
    width: 22px;
    height: 22px;
}

.whatsapp-form {
    margin-top: 30px;
    text-align: center;
}

.whatsapp-form h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.whatsapp-form input {
    display: block;
    margin: 10px auto;
    padding: 10px 15px;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    font-family: 'Comic Neue', cursive;
}

.whatsapp-form button {
    padding: 12px 24px;
    background-color: #43f88b;
    color: #064d3c;
    border: none;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-family: 'Comic Neue', cursive;
    margin-top: 10px;
}

.whatsapp-form button:hover {
    background-color: rgb(130, 218, 165);
    transform: translateY(-2px);
}





footer {
    background-color: var(--secondary-color);
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Comic Neue', sans-serif;
}

footer p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0 0 10px 0;
}

.back-to-top {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--text-color);
    text-decoration: none;
    background-color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 999px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.back-to-top:hover {
    background-color: #cdebf6;
    transform: translateY(-2px);
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #43f88b;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp img {
    width: 28px;
    height: 28px;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e6f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.splash-icon {
    width: 120px;
    height: 120px;
    animation: popIn 0.5s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}