/* Base & Reset */
:root {
    --bg-color: #fffdf7;
    /* Light creamy background */
    --text-primary: #2d3436;
    /* Dark readable text */
    --text-muted: #636e72;
    --accent-pink: #ff758f;
    --accent-yellow: #ffb703;
    --accent-honey: #f9a825;
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.08);
    --glass-border: rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
}

/* Background Gradients/Orbs */
.background-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 10% 20%, rgba(255, 117, 143, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 183, 3, 0.08) 0%, transparent 40%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: drift 25s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-pink);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-yellow);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 50px) rotate(10deg);
    }
}

/* Boba Particles */
.boba-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Boba animation styles removed - handled by Canvas in script.js */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    background: rgba(255, 253, 247, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid #fef3ef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-pink);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: white;
    border: 2px solid #fef3ef;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.lang-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Main Content */
main {
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0 8rem;
    min-height: 100vh;
    position: relative;
}

.hero-image-container {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    max-width: 260px;
    /* Reduced for vertical fit */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.floating-animation {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

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

.hero-title {
    font-size: 3.5rem;
    /* Reduced for vertical fit */
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-yellow) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--accent-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(255, 117, 143, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 117, 143, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--accent-pink);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

.arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -4px;
    animation: arrow-down 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

@keyframes arrow-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 5px;
    background: var(--accent-yellow);
    border-radius: 10px;
    opacity: 0.6;
}

/* Menu Section */
.menu {
    padding: 6rem 0;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    /* Desktop: keep on one line */
}

.menu-card {
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
    max-width: 360px;
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    border: 1px solid #fef3ef;
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.card-image-wrapper {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 117, 143, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay span {
    background: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    color: var(--accent-pink);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.menu-card:hover .overlay {
    opacity: 1;
}

.card-content {
    padding: 1.8rem;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Response for small screens */
@media (max-width: 900px) {
    .menu-grid {
        flex-direction: column;
        align-items: center;
    }

    .menu-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2rem;
    }
}

/* Links Section */
.links-section {
    padding: 6rem 0;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.glass-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    box-shadow: 0 6px 15px var(--card-shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.glass-link:hover {
    transform: translateY(-5px);
}

.glass-link.wolt:hover {
    border-color: #00c2e8;
}

.glass-link.bolt:hover {
    border-color: #34d186;
}

.glass-link.glovo:hover {
    border-color: #ffcc00;
}

.glass-link.instagram:hover {
    border-color: #e1306c;
}

.glass-link.facebook:hover {
    border-color: #1877f2;
}

/* Map Section */
.map-section {
    padding: 6rem 0 8rem;
}

.map-container {
    height: 400px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--card-shadow);
    border: 8px solid white;
}

/* Footer */
footer {
    padding: 3rem 0;
    background: #fffdf7;
    border-top: 2px solid #fef3ef;
    text-align: center;
}

.nuri-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.nuri-link {
    text-decoration: none;
    color: var(--accent-pink);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

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