/* ==========================================
   CAFÉ MORGENROT - PASTEL DESIGN
   Warm, Cozy, Inviting Atmosphere
   ========================================== */

:root {
    --pastel-rose: #E85B81;
    --pastel-peach: #F8C27A;
    --pastel-mint: #A0D88A;
    --pastel-lavender: #C4B2F0;
    --pastel-cream: #FFF1DD;
    --pastel-coral: #E14F56;
    --accent-strong: #C62852;
    --accent-strong-hover: #A81F3F;
    
    --dark: #2D2424;
    --dark-light: #423636;
    --text-gray: #4A3F3F;
    --text-light: #5D4F4F;
    
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(255, 181, 197, 0.15);
    --shadow-md: 0 8px 30px rgba(255, 181, 197, 0.2);
    --shadow-lg: 0 12px 40px rgba(255, 181, 197, 0.25);
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sticky-footer-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    line-height: 1.7;
    background: var(--pastel-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    transition: var(--transition);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--pastel-rose);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pastel-rose);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-reserve {
    background: var(--accent-strong) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-soft) !important;
}

.btn-reserve:hover {
    background: var(--accent-strong-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary,
.btn-reserve {
    background: var(--accent-strong);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-reserve:hover {
    background: var(--accent-strong-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-strong);
    border: 2px solid var(--accent-strong);
}

.btn-secondary:hover {
    background: var(--accent-strong);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(255, 241, 221, 0.45) 0%, rgba(255, 240, 245, 0.35) 100%), url('../assets/coffee-hero.webp');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--pastel-rose) 0%, transparent 40%),
        radial-gradient(circle at 80% 60%, var(--pastel-lavender) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, var(--pastel-mint) 0%, transparent 40%);
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--pastel-cream) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 840px;
    padding: 36px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-gray);
}

.coffee-icon {
    font-size: 1.3rem;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.highlight {
    color: var(--pastel-rose);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    color: var(--text-gray);
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pastel-rose), transparent);
}

/* ==========================================
   SECTION COMMON
   ========================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--accent-strong);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   ATMOSPHERE / SCENT SECTION
   ========================================== */
.atmosphere {
    background: var(--white);
}

.scent-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.scent-card {
    background: var(--pastel-cream);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.scent-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.scent-card[data-scent="morning"] {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE4C4 100%);
}

.scent-card[data-scent="noon"] {
    background: linear-gradient(135deg, #E6FFE6 0%, #D4F1D4 100%);
}

.scent-card[data-scent="afternoon"] {
    background: linear-gradient(135deg, #FFE6F0 0%, #FFD4E5 100%);
}

.scent-card[data-scent="evening"] {
    background: linear-gradient(135deg, #E6E6FA 0%, #D8D8F6 100%);
}

.scent-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.scent-time {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.scent-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.scent-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.note {
    padding: 0.4rem 1rem;
    background: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-gray);
    box-shadow: var(--shadow-soft);
}

.scent-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-style: italic;
}

/* ==========================================
   MENU SECTION
   ========================================== */
.menu {
    background: var(--pastel-cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.menu-tab:hover {
    border-color: var(--pastel-rose);
    color: var(--pastel-rose);
}

.menu-tab.active {
    background: var(--accent-strong);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 2x2 Grid für Saisonale Specials (4 Items) */
#seasonal .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.menu-item.special {
    border: 2px solid var(--pastel-rose);
}

.special-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.4rem 1rem;
    background: var(--accent-strong);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.menu-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark);
    flex: 1;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pastel-rose);
    white-space: nowrap;
}

.description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: var(--pastel-cream);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-gray);
}

.seasonal-banner {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-cream) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.season-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.seasonal-banner h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.seasonal-banner p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-soft);
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}

.lightbox-close:hover {
    background: var(--pastel-rose);
    border-color: var(--pastel-rose);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--pastel-rose);
    border-color: var(--pastel-rose);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.lightbox-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================
   RESERVATION SECTION
   ========================================== */
.reservation {
    background: var(--pastel-cream);
}

.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-coral) 100%);
    color: var(--white);
}

.info-card.highlight h4,
.info-card.highlight p {
    color: var(--white);
}

.reservation-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.reservation-form h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--pastel-cream);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pastel-rose);
    box-shadow: 0 0 0 4px rgba(255, 181, 197, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ==========================================
   MAP SECTION
   ========================================== */
.map-wrapper {
    margin-top: 4rem;
}

.map-wrapper h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.map-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.map-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ==========================================
   STICKY FOOTER
   ========================================== */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f5d5df;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.sticky-footer.hidden {
    transform: translateY(100%);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    gap: 1.25rem;
}

.sticky-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-icon {
    font-size: 1.5rem;
}

.sticky-text strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
}

.sticky-text span {
    color: var(--dark);
    font-size: 0.85rem;
}

.btn-reserve-footer {
    background: var(--dark);
    color: var(--white);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid var(--accent-strong);
}

.btn-reserve-footer:hover {
    background: var(--accent-strong);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   MAIN FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
    margin-bottom: 0;
}

.has-sticky-space .footer {
    margin-bottom: var(--sticky-footer-height);
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 181, 197, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: default;
    color: rgba(255, 255, 255, 0.8);
}

.social-links .social-icon svg {
    width: 24px;
    height: 24px;
}

.social-links .social-icon:hover {
    background: var(--pastel-rose);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--pastel-rose);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.hours-day {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.hours-time {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.2px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.86);
    gap: 2rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pastel-rose);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    :root {
        --sticky-footer-height: 110px;
    }
    
    .sticky-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }
    
    .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --sticky-footer-height: 90px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-features,
    .hero-buttons {
        flex-direction: column;
    }
    
    .scent-cards {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sticky-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem 1rem;
        padding: 0.6rem 0;
    }
    
    .sticky-item {
        gap: 0.5rem;
    }
    
    .sticky-text strong {
        font-size: 0.9rem;
    }
    
    .sticky-text span {
        font-size: 0.78rem;
    }
    
    .btn-reserve-footer {
        grid-column: auto;
        width: auto;
        text-align: center;
        padding: 0.65rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 480px) {
    .menu-tabs {
        flex-direction: column;
    }
}
