/* ==========================================================================
   ALKA FACTORY SHOP - MODERN INDUSTRIAL-CHIC CSS STYLE SHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-bg-black: #0d0d0d;
    --color-bg-dark: #121212;
    --color-bg-panel: #181818;
    --color-bg-card: #222222;
    --color-bg-card-hover: #2a2a2a;
    
    --color-primary: #C86A4B;       /* Warm Terracotta / Roasted Brick */
    --color-primary-hover: #e07f5f; /* Lighter Terracotta */
    --color-primary-dark: #994c32;  /* Darker Terracotta */
    
    --color-wood: #D7C49E;          /* Muted Oak Wood */
    --color-cream: #F5EBE6;         /* Milk/Cream Text */
    --color-muted: #a3958f;         /* Cocoa/Muted Text */
    --color-border: #2c2c2c;        /* Iron Border */
    --color-border-glow: #C86A4B55; /* Glowing Terracotta */
    
    --color-star: #F39C12;          /* Honey Gold */
    --color-white: #ffffff;
    --color-overlay: rgba(13, 13, 13, 0.75);
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions & Shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 25px rgba(200, 106, 75, 0.25);
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --border-radius-sm: 4px;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-black);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Links & Buttons */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

p {
    font-weight: 300;
}

/* --------------------------------------------------------------------------
   3. Layout & Reusable Utilities
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 7rem 0;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-tagline {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-description {
    color: var(--color-muted);
    font-size: 1.1rem;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-white);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    border-radius: var(--border-radius-lg);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

.btn-xs {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--border-radius-sm);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation (Glassmorphic)
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 70px;
}

.logo {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--color-primary);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-cream);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-cta {
    display: none;
}

/* Hamburger menu button */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--color-cream);
    transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: url('assets/hero_bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 50%, rgba(13,13,13,0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px; /* offset for header */
}

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

.rating-badge {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
}

.rating-badge .stars {
    color: var(--color-star);
    display: flex;
    gap: 2px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    background: linear-gradient(to right, var(--color-white) 60%, var(--color-wood));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

.hero-scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-muted);
}

.hero-scroll-down a:hover {
    color: var(--color-primary);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

.arrow-down {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: 8px;
    animation: arrow-bounce 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 15px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(5px) rotate(45deg); }
}

/* --------------------------------------------------------------------------
   6. About & Highlights Section
   -------------------------------------------------------------------------- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.highlight-card {
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary-hover);
    box-shadow: var(--shadow-premium);
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
    letter-spacing: 0.05em;
    z-index: 2;
}

.laptop-work-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f1412 0%, #2a1612 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.laptop-work-placeholder::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgba(200, 106, 75, 0.03), rgba(200, 106, 75, 0.03) 10px, transparent 10px, transparent 20px);
}

.work-vibe-overlay {
    text-align: center;
    color: var(--color-wood);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.work-vibe-overlay i {
    font-size: 3rem;
    color: var(--color-primary);
    text-shadow: var(--shadow-glow);
}

.work-vibe-overlay span {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-content {
    padding: 2.5rem 2rem 2.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--color-bg-dark);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3.5rem;
    margin-bottom: 1.5rem;
    z-index: 3;
    transition: var(--transition-smooth);
}

.highlight-card:hover .card-icon-circle {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: rotate(360deg);
}

.card-icon-circle i {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.highlight-card:hover .card-icon-circle i {
    color: var(--color-white);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

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

/* --------------------------------------------------------------------------
   7. Menu / Offerings Section
   -------------------------------------------------------------------------- */
.menu-section {
    background-color: var(--color-bg-black);
}

.menu-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.menu-tabs {
    display: flex;
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    padding: 0.5rem;
    border-radius: 50px;
    gap: 0.5rem;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--color-muted);
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn i {
    font-size: 1rem;
}

.tab-btn:hover {
    color: var(--color-white);
}

.tab-btn.active {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    margin-bottom: 4rem;
}

.menu-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--color-border);
    transition: var(--transition-fast);
}

.menu-item:hover {
    border-bottom-color: var(--color-primary);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.menu-item:hover .menu-item-header h4 {
    color: var(--color-primary-hover);
}

.menu-item-header .price {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-wood);
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.tag {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-wood);
    padding: 0.1rem 0.4rem;
    border-radius: var(--border-radius-sm);
    margin-left: 0.4rem;
    vertical-align: middle;
}

/* Dining options badges */
.dining-options-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-top: 1px solid var(--color-border);
    padding-top: 3rem;
}

.option-badge {
    background-color: rgba(200, 106, 75, 0.08);
    border: 1px solid rgba(200, 106, 75, 0.15);
    color: var(--color-cream);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.option-badge i {
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   8. Amenities & Accessibility Section
   -------------------------------------------------------------------------- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.amenity-card {
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.amenity-card:hover {
    border-color: var(--color-primary-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.amenity-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.15);
    color: var(--color-primary-hover);
}

.amenity-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

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

/* --------------------------------------------------------------------------
   9. Contact & Map Section
   -------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-bg-black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h2 {
    margin-bottom: 1.5rem;
}

.panel-intro {
    color: var(--color-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    gap: 1.25rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(200, 106, 75, 0.1);
    border: 1px solid rgba(200, 106, 75, 0.2);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.detail-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.detail-text p {
    color: var(--color-cream);
    font-size: 1rem;
}

.detail-text .subtext {
    display: block;
    color: var(--color-muted);
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.detail-text .alert-text {
    color: var(--color-wood);
    font-weight: 500;
}

.detail-text .alert-text i {
    margin-right: 0.25rem;
}

.hover-underline:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-cream);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Map Card */
.map-panel {
    background-color: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
}

.map-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.map-badge {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-wood);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-badge i {
    color: var(--color-primary);
}

#map {
    height: 380px;
    width: 100%;
    background-color: var(--color-bg-dark); /* Fallback */
    z-index: 10;
}

/* Custom leaflet theme overriding */
.leaflet-container {
    background: #0d0d0d !important;
}

/* Lightening attribution for aesthetics */
.leaflet-container .leaflet-control-attribution {
    background: rgba(13, 13, 13, 0.8) !important;
    color: #666 !important;
    font-size: 0.75rem;
}

.leaflet-bar {
    border: 1px solid var(--color-border) !important;
    box-shadow: none !important;
}

.leaflet-bar a {
    background-color: var(--color-bg-panel) !important;
    color: var(--color-cream) !important;
    border-bottom: 1px solid var(--color-border) !important;
    transition: var(--transition-fast);
}

.leaflet-bar a:hover {
    background-color: var(--color-bg-card) !important;
    color: var(--color-primary) !important;
}

/* Popup style customization */
.leaflet-popup-content-wrapper {
    background-color: var(--color-bg-panel) !important;
    color: var(--color-cream) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--shadow-premium) !important;
    font-family: var(--font-body);
}

.leaflet-popup-tip {
    background-color: var(--color-bg-panel) !important;
    border: 1px solid var(--color-border) !important;
}

.map-popup-content {
    padding: 0.5rem;
}

.map-popup-content h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.map-popup-content p {
    font-size: 0.8rem;
    color: var(--color-muted);
}

.map-card-footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.map-card-footer p {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.map-card-footer p i {
    color: var(--color-primary);
}

/* --------------------------------------------------------------------------
   10. Footer Section
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #080808;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-content-wrap {
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

.footer-brand {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
}

.brand-tagline {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-wood);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-newsletter p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    padding: 0.25rem;
    border-radius: var(--border-radius-md);
}

.newsletter-form input {
    background: none;
    border: none;
    outline: none;
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    flex-grow: 1;
}

.newsletter-form input::placeholder {
    color: #555;
}

.newsletter-form .btn {
    padding: 0.5rem 1.25rem;
}

.msg-feedback {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.msg-feedback.success {
    color: #27ae60;
}

.footer-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-border);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #555;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #555;
}

.footer-legal a:hover {
    color: var(--color-muted);
}

/* --------------------------------------------------------------------------
   11. Responsive Styles (Media Queries)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 3.25rem;
    }
    
    .highlights-grid {
        gap: 1.5rem;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }

    h2 {
        font-size: 2rem;
    }

    /* Hamburger & Mobile Nav */
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-bg-dark);
        border-left: 1px solid var(--color-border);
        padding: 100px 2rem 2rem 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    .desktop-cta {
        display: none;
    }

    .mobile-cta {
        display: inline-flex;
        margin-top: 1.5rem;
        width: 100%;
    }

    /* Hero Section */
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

    /* Highlights & Grid Layouts */
    .highlights-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 2rem;
    }

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

    .amenities-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .map-panel {
        order: -1; /* place map first on mobile contact section */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-tagline {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .rating-badge {
        flex-direction: column;
        gap: 0.35rem;
        border-radius: var(--border-radius-lg);
        padding: 0.75rem 1.25rem;
    }

    .section-padding {
        padding: 4rem 0;
    }

    h2 {
        font-size: 1.75rem;
    }
    
    .tab-btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------------------------------
   12. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid items */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
