/* ==========================================================================
   BA DA BOM DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* Variables & Base Customization */
:root {
    --color-blue: #0B3C9B;
    --color-cream: #FBF9F4;
    --color-yellow: #FEEA9A;
    --color-orange: #FF5A1F;
    --color-black: #111111;
    --color-gray: #777777;
    --color-white: #FFFFFF;
    
    /* Fonts */
    --font-heading: 'Space Grotesk', 'Noto Sans KR', sans-serif;
    --font-body: 'Inter', 'Noto Sans KR', sans-serif;
    
    /* Dynamic variables updated via Scroll/JS */
    --accent-glow: 0 0 20px rgba(255, 90, 31, 0.4);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-cream);
    color: var(--color-black);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;
    line-height: 1.5;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-cream);
}
::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 4px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-blue);
    color: var(--color-cream);
}

.btn-primary:hover {
    background-color: var(--color-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 90, 31, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.btn-secondary:hover {
    background-color: var(--color-blue);
    color: var(--color-cream);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}


/* Full-Screen Intro Loader */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-cream);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.intro-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 480px;
    padding: 24px;
}

.mascot-loader-container {
    position: relative;
    margin-bottom: 24px;
}

.mascot-loader {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--color-blue);
    object-fit: cover;
    animation: loaderBounce 2s ease-in-out infinite;
}

/* Speech Bubble Styles */
.speech-bubble {
    position: absolute;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
}

.intro-bubble {
    top: -20px;
    right: -60px;
    transform: scale(0);
    animation: bubblePopIn 0.5s 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.intro-bubble::after {
    top: 30px;
    left: 20px;
    border-width: 10px 10px 0 0;
    border-color: var(--color-blue) transparent transparent transparent;
}

.intro-headline h1 {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 32px;
}

.btn-enter {
    animation: fadeInUp 0.8s 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Sticky Bottom Nav (Mobile) */
.mobile-bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    display: flex;
    justify-content: space-around;
    padding: 10px 16px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888888;
    font-size: 0.75rem;
    font-weight: 500;
    gap: 4px;
}

.nav-item i {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.nav-item.active {
    color: var(--color-yellow);
}

.nav-item.active i {
    transform: translateY(-2px);
}

/* Top Header (Mobile & Desktop) */
.desktop-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(251, 249, 244, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(11, 60, 155, 0.1);
    z-index: 90;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px; /* Thinner height on mobile */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem; /* Slightly smaller text size on mobile */
    font-weight: 700;
    color: var(--color-blue);
}

/* Hide desktop elements on mobile */
.desktop-nav,
.desktop-header .book-trigger {
    display: none;
}

.desktop-nav {
    display: none;
    gap: 32px;
}

.desktop-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-black);
}

.desktop-nav a:hover {
    color: var(--color-orange);
}

/* General Sections */
section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    transition: background-color 0.8s ease, color 0.8s ease;
}

.section-theme-bright {
    background-color: var(--color-cream);
    color: var(--color-black);
}

.section-theme-warm {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.section-theme-dark {
    background-color: var(--color-black);
    color: var(--color-cream);
}

.section-header {
    margin-bottom: 48px;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-blue);
    display: inline-block;
    margin-bottom: 8px;
}

.glow-tag {
    color: var(--color-orange);
    text-shadow: 0 0 10px rgba(255, 90, 31, 0.4);
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.glow-title {
    color: var(--color-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 600px;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-blue) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.05;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-bubble {
    position: relative;
    margin-bottom: 16px;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-weight: 700;
}

.hero-bubble::after {
    bottom: -8px;
    left: 20px;
    border-width: 8px 8px 0 0;
    border-color: var(--color-orange) transparent transparent transparent;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-blue);
    margin-bottom: 24px;
    line-height: 1.05;
}

.accent-orange {
    color: var(--color-orange);
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 500px;
    margin-bottom: 32px;
    color: var(--color-black);
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

.hero-mascot-area {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-frame {
    position: relative;
}

.hero-mascot {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 6px solid var(--color-blue);
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(11, 60, 155, 0.15);
    animation: loaderBounce 3s ease-in-out infinite;
}

.mascot-guide-bubble {
    bottom: -10px;
    left: -20px;
}

.mascot-guide-bubble::after {
    top: -8px;
    right: 30px;
    border-width: 0 8px 8px 0;
    border-color: transparent var(--color-blue) transparent transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--color-blue);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}

/* Why Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.why-card {
    background-color: var(--color-cream);
    padding: 32px;
    border-radius: 24px;
    border: 3px solid var(--color-black);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: scale(1.03) rotate(0.5deg);
    box-shadow: 6px 6px 0 var(--color-black);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-blue);
}

.why-card p {
    color: var(--color-black);
    font-size: 0.95rem;
}

/* Menu Mood Journey Section */
.mood-selector-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.mood-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 40px;
    border: 2px solid var(--color-blue);
    background-color: var(--color-cream);
    color: var(--color-blue);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mood-tab:hover {
    background-color: rgba(11, 60, 155, 0.05);
}

.mood-tab.active {
    background-color: var(--color-blue);
    color: var(--color-cream);
}

.mood-pane {
    display: none;
}

.mood-pane.active {
    display: block;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mood-header-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 20px;
    border-left: 5px solid var(--color-orange);
}

.mood-text h3 {
    font-size: 1.5rem;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.mood-text p {
    color: var(--color-gray);
}

.mascot-tip {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.mini-mascot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-blue);
    object-fit: cover;
}

.inline-bubble {
    position: relative;
    background-color: var(--color-blue);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    box-shadow: none;
}

/* Menu Grid & Cards */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.menu-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(11, 60, 155, 0.08);
    transition: var(--transition-smooth);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(11, 60, 155, 0.1);
    border-color: var(--color-blue);
}

.menu-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-card-body {
    padding: 24px;
}

.menu-card-body h4 {
    font-size: 1.25rem;
    color: var(--color-blue);
    margin-bottom: 8px;
}

.price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-orange);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.desc {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Micro-animations: Steam Waves (Ramyeon) */
.steam-float-container {
    position: absolute;
    bottom: 16px;
    left: 24px;
    display: flex;
    gap: 4px;
}

.steam-wave {
    width: 6px;
    height: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    display: inline-block;
    animation: steamFloat 2s ease-in-out infinite;
}

.steam-wave:nth-child(2) {
    animation-delay: 0.4s;
    height: 28px;
}

.steam-wave:nth-child(3) {
    animation-delay: 0.8s;
}

/* Micro-animations: Bubble Tea Bubles */
.bubble-float-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.bubble-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    bottom: -10px;
    animation: bubbleRise 3s infinite ease-in;
}

/* Cocktail Neon Highlight Section */
.neon-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 90, 31, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 90, 31, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.cocktail-showcase-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.neon-lead {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 32px;
}

.ambient-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    position: relative;
}

.ambient-light-glow {
    position: absolute;
    top: -10px;
    left: 20px;
    width: 30px;
    height: 30px;
    background: var(--color-orange);
    filter: blur(15px);
    opacity: 0.6;
}

.ambient-card h4 {
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.cocktail-showcase-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.neon-sign-board {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #FF5A1F;
    text-shadow: 0 0 10px #FF5A1F, 0 0 20px #FF5A1F, 0 0 40px #FF5A1F;
    margin-bottom: 32px;
    animation: neonPulse 1.5s infinite alternate;
}

.cocktail-rotating-holder {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid var(--color-orange);
    padding: 10px;
    box-shadow: 0 0 30px rgba(255, 90, 31, 0.3);
}

.floating-cocktail-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    animation: rotateSlow 20s linear infinite;
}

.light-beam {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 380px;
    background: linear-gradient(to bottom, rgba(11, 60, 155, 0.15), transparent);
    clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
    pointer-events: none;
}

/* Pinterest Masonry Grid */
.pinterest-masonry {
    column-count: 1;
    column-gap: 16px;
    width: 100%;
}

.masonry-item {
    background-color: var(--color-cream);
    margin-bottom: 16px;
    break-inside: avoid;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(11, 60, 155, 0.05);
    transition: var(--transition-smooth);
}

.masonry-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.masonry-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 60, 155, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--color-cream);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px;
    text-align: center;
}

.masonry-item:hover .masonry-hover {
    opacity: 1;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Events Section */
.events-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-card {
    background: var(--color-cream);
    border-radius: 20px;
    padding: 32px;
    border-left: 6px solid var(--color-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.timeline-date {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.timeline-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-blue);
}

/* Locations & Booking Section */
.locations-flex {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.location-card:hover {
    border-color: var(--color-orange);
}

.location-card h3 {
    font-size: 1.8rem;
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.loc-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-orange);
    margin-bottom: 16px;
}

.loc-desc {
    color: #cccccc;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.hours {
    background: rgba(0, 0, 0, 0.2);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.hours p {
    margin-bottom: 8px;
}

.hours p:last-child {
    margin-bottom: 0;
}

.loc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-cream);
    font-weight: 600;
    border-bottom: 2px solid var(--color-cream);
    padding-bottom: 4px;
}

.loc-link:hover {
    color: var(--color-orange);
    border-color: var(--color-orange);
}

/* Booking Centerpiece */
.booking-cta-block {
    background: var(--color-yellow);
    color: var(--color-black);
    border-radius: 30px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    border: 3px solid var(--color-black);
    margin-top: 40px;
}

.cta-mascot-holder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-black);
}

.cta-mascot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content h3 {
    font-size: 1.8rem;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.cta-content p {
    margin-bottom: 24px;
}

/* Footer Section */
.footer-section {
    background: var(--color-blue);
    color: var(--color-cream);
    padding: 60px 0 100px 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-mascot-box {
    position: relative;
    margin-bottom: 24px;
}

.footer-mascot {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--color-cream);
    object-fit: cover;
}

.footer-bubble {
    top: -24px;
    left: 80px;
    background-color: var(--color-orange);
}

.footer-bubble::after {
    bottom: -8px;
    left: 20px;
    border-width: 8px 8px 0 0;
    border-color: var(--color-orange) transparent transparent transparent;
}

.footer-info h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-yellow);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a:hover {
    color: var(--color-yellow);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(251, 249, 244, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--color-orange);
    transform: scale(1.1);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(251, 249, 244, 0.7);
}

/* Modal overlays */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: var(--color-cream);
    border: 3px solid var(--color-black);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--color-black);
}

.modal-header {
    margin-bottom: 24px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--color-blue);
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-black);
}

input, select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid rgba(11, 60, 155, 0.2);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-black);
    transition: var(--transition-smooth);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(11, 60, 155, 0.15);
}

/* Success Booking State */
.hidden {
    display: none !important;
}

.booking-success-box {
    text-align: center;
    padding: 24px 0;
    animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.success-mascot-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.success-mascot {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--color-blue);
    object-fit: cover;
}

.success-bubble {
    top: -20px;
    left: 80px;
    background-color: var(--color-orange);
}

.success-bubble::after {
    bottom: -8px;
    left: 20px;
    border-width: 8px 8px 0 0;
    border-color: var(--color-orange) transparent transparent transparent;
}

.booking-success-box h3 {
    font-size: 1.6rem;
    color: var(--color-blue);
    margin-bottom: 12px;
}

.booking-success-box p {
    color: var(--color-gray);
    margin-bottom: 24px;
}

/* Animations declarations */
@keyframes loaderBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(0.98);
    }
}

@keyframes bubblePopIn {
    to {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes steamFloat {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-8px) scaleY(1.2) skewX(2deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-16px) scaleY(0.8) skewX(-2deg);
        opacity: 0;
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-180px) scale(1.2);
        opacity: 0;
    }
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 10px #FF5A1F, 0 0 20px #FF5A1F, 0 0 30px #FF5A1F;
    }
    to {
        text-shadow: 0 0 15px #FF5A1F, 0 0 30px #FF5A1F, 0 0 50px #FF5A1F, 0 0 70px #FF5A1F;
    }
}

@keyframes rotateSlow {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styling */
@media(min-width: 768px) {
    /* Header layout changes */
    .desktop-header {
        display: block;
    }

    .header-container {
        height: 80px;
        padding: 0 24px;
    }

    .logo-link {
        gap: 12px;
    }

    .nav-logo {
        display: block;
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .desktop-nav {
        display: flex;
    }

    .desktop-header .book-trigger {
        display: inline-flex;
    }
    
    .mobile-bottom-nav {
        display: none;
    }

    #hero {
        padding-top: 140px;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-mascot {
        width: 380px;
        height: 380px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pinterest-masonry {
        column-count: 2;
    }

    .locations-flex {
        flex-direction: row;
    }

    .location-card {
        flex: 1;
    }

    .booking-cta-block {
        flex-direction: row;
        text-align: left;
        padding: 48px;
        justify-content: center;
    }

    .cta-mascot-holder {
        width: 110px;
        height: 110px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-mascot-box {
        margin-bottom: 0;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .social-icons {
        justify-content: flex-start;
    }
}

@media(min-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .pinterest-masonry {
        column-count: 3;
    }

    .cocktail-showcase-layout {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
    }

    .cocktail-rotating-holder {
        width: 320px;
        height: 320px;
    }
}

/* Mobile responsive fixes for modal booking form */
@media(max-width: 576px) {
    .modal-card {
        padding: 24px 16px;
        width: 95%;
        border-radius: 16px;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .modal-close {
        top: 12px;
        right: 16px;
        font-size: 1.75rem;
    }
    .modal-header {
        margin-bottom: 16px;
        padding-right: 28px;
    }
    .booking-success-box {
        padding: 12px 0;
    }
    .success-bubble {
        left: 0;
        top: auto;
        bottom: -45px;
        white-space: normal;
        text-align: center;
        width: 100%;
    }
}

/* Mobile responsive fixes for footer mascot speech bubble */
@media(max-width: 767px) {
    .footer-mascot-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 16px;
        position: relative;
    }
    .footer-bubble {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 16px;
        white-space: normal;
        text-align: center;
        max-width: 280px;
        display: inline-block;
    }
    .footer-bubble::after {
        top: auto;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 8px 8px 0 8px;
        border-color: var(--color-orange) transparent transparent transparent;
    }
}


