/* ==========================================================================
   AURA FINE DINING - PREMIUM CSS DESIGN SYSTEM & STYLESHEET
   Created by ASvybe
   ========================================================================== */

/* 1. CSS VARIABLES & SYSTEM DESIGN TOKENS */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #222222;
    --bg-glass: rgba(26, 26, 26, 0.85);
    
    --color-gold: #f59e0b;
    --color-gold-muted: #c5a880;
    --color-gold-light: #fef3c7;
    --color-cream: #f5f5f4;
    --color-cream-muted: #a8a29e;
    --color-dark: #0f0f0f;
    --color-white: #ffffff;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(245, 158, 11, 0.15);
    --border-gold: 1px solid rgba(197, 168, 128, 0.2);
    --border-gold-focus: 1px solid rgba(245, 158, 11, 0.6);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 50px;
    
    --container-max-width: 1200px;
    --header-height: 80px;
}

/* 2. BASE RESET & INITIAL SETUP */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--border-radius-pill);
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-muted);
}

/* 3. REUSABLE COMPONENTS & UTILITIES */
.section-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 100px 24px;
}

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

.text-gold {
    color: var(--color-gold);
}

.section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--color-cream-muted);
    font-size: 1.05rem;
}

.divider-gold {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 0 0 30px 0;
}

.divider-gold.center {
    margin: 0 auto 30px auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

.btn-gold:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--color-gold-muted);
    color: var(--color-cream);
    background: transparent;
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* Ripple effect container */
.ripple {
    position: relative;
    overflow: hidden;
}

/* 4. HEADER & NAVIGATION */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 1000;
    transition: var(--transition-medium);
}

.header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.header-container {
    max-width: var(--container-max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-cream);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cream-muted);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

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

.btn-nav {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* MOBILE TOGGLE */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-cream);
    transition: var(--transition-fast);
}

/* 5. HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(18, 18, 18, 0.7) 0%, 
                rgba(18, 18, 18, 0.85) 60%, 
                rgba(18, 18, 18, 1) 100%);
    z-index: 2;
}

.hero-content-container {
    position: relative;
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 24px;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
}

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

.hero-pretitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-gold-muted);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-cream);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s ease forwards;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-cream-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s ease forwards;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s ease forwards;
}

.scroll-indicator-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator {
    width: 28px;
    height: 48px;
    border: 1px solid var(--color-gold-muted);
    border-radius: var(--border-radius-pill);
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-arrow {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: var(--border-radius-pill);
    margin-top: 8px;
    animation: scrollMove 2s infinite ease-in-out;
}

/* 6. ABOUT US SECTION */
.about-section {
    background-color: var(--bg-primary);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content-col {
    display: flex;
    flex-direction: column;
}

.about-text {
    color: var(--color-cream-muted);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.signature-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.chef-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-cream);
    margin-bottom: 4px;
}

.chef-title {
    font-size: 0.85rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sig-font {
    font-family: 'Playfair Display', cursive;
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-gold-muted);
    opacity: 0.75;
    letter-spacing: 1px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.about-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: var(--border-gold);
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.02);
    border-color: rgba(245, 158, 11, 0.4);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--bg-secondary);
    border: var(--border-gold);
    box-shadow: var(--shadow-soft);
    padding: 24px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    animation: pulse 4s infinite ease-in-out;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
}

.badge-txt {
    font-size: 0.75rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cream);
    margin-top: 8px;
    line-height: 1.3;
}

/* 7. INTERACTIVE MENU HIGHLIGHTS */
.menu-section {
    background-color: var(--bg-secondary);
    position: relative;
}

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

.menu-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--bg-primary);
    padding: 6px;
    border-radius: var(--border-radius-pill);
    border: var(--border-gold);
    box-shadow: var(--shadow-soft);
}

.menu-tab-btn {
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-pill);
    color: var(--color-cream-muted);
    transition: var(--transition-fast);
}

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

.menu-tab-btn.active {
    background-color: var(--color-gold);
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

/* Menu Panels */
.menu-panels-container {
    position: relative;
    width: 100%;
}

.menu-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.menu-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.menu-item-card {
    background-color: var(--bg-primary);
    padding: 36px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.menu-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-gold);
    transition: var(--transition-medium);
    border-top-left-radius: var(--border-radius-md);
    border-bottom-left-radius: var(--border-radius-md);
}

.menu-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 168, 128, 0.15);
    box-shadow: var(--shadow-soft);
}

.menu-item-card:hover::before {
    height: 100%;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 14px;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-cream);
    transition: var(--transition-fast);
}

.menu-item-card:hover .menu-item-title {
    color: var(--color-gold);
}

.menu-item-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold-muted);
}

.menu-item-card:hover .menu-item-price {
    color: var(--color-gold);
}

.menu-item-desc {
    color: var(--color-cream-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 300;
}

.menu-item-footer {
    display: flex;
    align-items: center;
}

.diet-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    border: 1px solid transparent;
}

.diet-badge.veg {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.15);
    background-color: rgba(74, 222, 128, 0.03);
}

.diet-badge.non-veg {
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.15);
    background-color: rgba(248, 113, 113, 0.03);
}

.diet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}

.diet-badge.veg .diet-dot {
    background-color: #4ade80;
    box-shadow: 0 0 8px #4ade80;
}

.diet-badge.non-veg .diet-dot {
    background-color: #f87171;
    box-shadow: 0 0 8px #f87171;
}

/* 8. SERVICES & FEATURES SECTION */
.services-section {
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: var(--border-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.15);
    box-shadow: var(--shadow-soft);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 158, 11, 0.05);
    border-radius: 50%;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 158, 11, 0.15);
    transition: var(--transition-fast);
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.service-card:hover .service-icon {
    color: var(--color-dark);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 16px;
}

.service-desc {
    color: var(--color-cream-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

/* 9. BOOK A TABLE RESERVATION FORM */
.booking-section {
    position: relative;
    background-color: var(--color-dark);
    overflow: hidden;
}

.booking-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/restaurant_interior.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scale(1.05);
    z-index: 1;
}

.booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(18, 18, 18, 0.92) 0%, 
                rgba(18, 18, 18, 0.88) 50%, 
                rgba(18, 18, 18, 0.92) 100%);
    z-index: 2;
}

.booking-section .section-container {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 100px 24px;
}

.booking-container {
    background-color: var(--bg-glass);
    border: var(--border-gold);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.booking-lead {
    color: var(--color-cream-muted);
    margin-bottom: 40px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

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

.form-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-muted);
}

.form-input {
    background-color: rgba(18, 18, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 14px 18px;
    color: var(--color-cream);
    font-size: 16px; /* Prevents auto zoom-in on iOS focus */
    transition: var(--transition-fast);
    outline: none;
    width: 100%;
}

/* Custom styling for select option elements inside dark theme */
.form-input option {
    background-color: var(--bg-secondary);
    color: var(--color-cream);
}

.form-input optgroup {
    background-color: var(--bg-primary);
    color: var(--color-gold-muted);
    font-style: normal;
    font-weight: 600;
}

.form-input:focus {
    border-color: var(--color-gold);
    background-color: rgba(18, 18, 18, 0.9);
    box-shadow: var(--shadow-gold);
}

/* Style date picker icon color */
::-webkit-calendar-picker-indicator {
    filter: invert(0.8) sepia(50%) saturate(1000%) hue-rotate(5deg);
    cursor: pointer;
}

.form-btn-wrapper {
    margin-top: 40px;
}

/* 10. LOCATION & OPERATING HOURS */
.location-section {
    background-color: var(--bg-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.hours-col {
    display: flex;
    flex-direction: column;
}

.hours-schedule {
    margin: 30px 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.05rem;
}

.schedule-row.highlight {
    color: var(--color-gold);
    font-weight: 500;
    border-bottom-color: rgba(245, 158, 11, 0.2);
}

.schedule-row .day {
    font-family: var(--font-body);
}

.schedule-row .time {
    color: var(--color-cream-muted);
}

.schedule-row.highlight .time {
    color: var(--color-gold-muted);
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item .icon {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.contact-item .text {
    color: var(--color-cream-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item .text a:hover {
    color: var(--color-gold);
}

.map-col {
    width: 100%;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: var(--border-gold);
    box-shadow: var(--shadow-soft);
}

/* Premium Map Dark Filter */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(0.92) contrast(1.2) sepia(0.2) hue-rotate(320deg);
    transition: var(--transition-medium);
}

.map-wrapper:hover iframe {
    filter: grayscale(0.5) invert(0.92) contrast(1.2) sepia(0.2) hue-rotate(320deg);
}

/* 11. ELEGANT FOOTER */
.footer {
    background-color: var(--color-dark);
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    color: var(--color-cream-muted);
    font-size: 0.95rem;
}

.footer .section-container {
    padding: 80px 24px 30px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about-text {
    max-width: 380px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-cream);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links a {
    color: var(--color-cream-muted);
}

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

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream-muted);
    transition: var(--transition-fast);
}

.social-icon {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: var(--color-dark);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.85rem;
}

.credit-link {
    color: var(--color-gold-muted);
    font-weight: 500;
    transition: var(--transition-fast);
}

.credit-link:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

/* 12. ANIMATIONS & REVEALS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(18px);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(245, 158, 11, 0.08);
    }
}

/* Scroll Reveal Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }


/* ==========================================================================
   13. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* LARGE SCREEN LAPTOPS */
@media (max-width: 1200px) {
    .section-container {
        padding: 80px 24px;
    }
    .hero-title {
        font-size: 3.8rem;
    }
}

/* TABLETS (max-width: 992px) */
@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-col {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .experience-badge {
        bottom: -20px;
        left: -20px;
        width: 140px;
        height: 140px;
        padding: 16px;
    }
    
    .badge-num {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .map-col {
        height: 380px;
    }
    
    .map-wrapper {
        height: 100%;
    }
}

/* MOBILE LANDSCAPES & SMALL TABLETS (max-width: 768px) */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1040;
        animation: fadeIn 0.3s ease forwards;
    }

    /* MOBILE NAVIGATION */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid rgba(197, 168, 128, 0.15);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        transition: var(--transition-medium);
        z-index: 1050;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
        gap: 50px;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.05rem;
        display: block;
    }
    
    .nav-cta-wrapper {
        width: 100%;
    }
    
    .btn-nav {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
    
    /* Hero section adjust */
    .hero-section {
        background-attachment: scroll;
        height: calc(100vh - var(--header-height));
        min-height: 560px;
    }
    .hero-parallax-bg {
        background-attachment: scroll;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    
    /* Horizontal scroll for menu tabs on mobile */
    .menu-tabs-wrapper {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        margin-bottom: 40px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .menu-tabs-wrapper::-webkit-scrollbar {
        display: none;
    }
    .menu-tabs-nav {
        flex-wrap: nowrap;
        justify-content: flex-start;
        border-radius: var(--border-radius-pill);
        padding: 4px;
        margin: 0 auto;
    }
    .menu-tab-btn {
        white-space: nowrap;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Booking form adjust */
    .booking-container {
        padding: 40px 24px;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-group.full-width-tablet {
        grid-column: span 1;
    }
    
    .booking-parallax-bg {
        background-attachment: scroll;
    }
    
    /* Footer adjust */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* SMARTPHONES PORTRAITS (max-width: 576px) */
@media (max-width: 576px) {
    .section-container {
        padding: 60px 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 20px auto 0 auto;
        width: 100%;
        max-width: 200px;
        height: auto;
        padding: 20px;
        border-radius: var(--border-radius-md);
    }
    
    .badge-num {
        font-size: 2.2rem;
    }
    
    .menu-item-card {
        padding: 24px;
    }
    
    .menu-item-title {
        font-size: 1.15rem;
    }
    
    .menu-item-price {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-col {
        height: 280px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
