/* ==========================================
   FLIGHT DELIGHT - Premium Restaurant Stylesheet
   Location: Sunyani, Bono Region, Ghana
   Author: Professional Web Developer & Designer
   ========================================== */

/* Import Google Fonts: Cinzel for logos/luxury headers, Playfair Display for editorial headers, Outfit for clean geometric body text */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

/* CSS Variables */
:root {
    /* Color Palette - Obsidian & Brushed Gold */
    --bg-dark: #0A0A0C;             /* Obsidian black background */
    --bg-surface: #121215;          /* Deep dark slate card background */
    --bg-surface-elevated: #1A1A1E; /* Elevated glass card background */
    --primary-gold: #D4AF37;        /* Premium gold */
    --primary-gold-rgb: 212, 175, 55;
    --gold-light: #F3E5AB;          /* Pale champagne gold */
    --gold-dark: #AA771C;           /* Rich bronze/brass gold */
    --text-white: #FFFFFF;          /* Pure white headers */
    --text-champagne: #F4F4F5;      /* Main text (off-white/champagne) */
    --text-sand: #A1A1AA;           /* Muted text (sand gray) */
    --border-gold: rgba(212, 175, 55, 0.2);     /* Golden border tint */
    --border-gold-hover: rgba(212, 175, 55, 0.4);
    --border-dark: rgba(255, 255, 255, 0.05);   /* Dark divider tint */
    --shadow-gold: rgba(212, 175, 55, 0.1);
    
    /* Typography */
    --font-luxury: 'Cinzel', serif;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout & Styling Tokens */
    --max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --box-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.7);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
}

/* ==========================================
   Base & Reset Styles
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, rgba(139, 0, 0, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 100% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 40%);
    color: var(--text-champagne);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Common Section Layout */
section {
    padding: 90px 20px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '♦';
    font-size: 0.8rem;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    letter-spacing: 0;
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-header p {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-family: var(--font-luxury);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-gold) !important;
    font-family: var(--font-luxury);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--primary-gold);
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    color: var(--text-white) !important;
    background-color: var(--primary-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white) !important;
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: var(--bg-dark) !important;
    border-color: var(--text-white);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

/* ==========================================
   Header & Navigation
   ========================================== */
header {
    background-color: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.logo-container {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container img {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.logo-text h1 {
    font-family: var(--font-luxury);
    font-size: 1.4rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFFFFF, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    font-size: 0.65rem;
    font-family: var(--font-luxury);
    color: var(--text-sand);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-family: var(--font-luxury);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-sand);
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Active Nav Highlighting */
.nav-menu a.active {
    color: var(--primary-gold);
}

.nav-menu a.active::after {
    width: 80%;
    background-color: var(--primary-gold);
}

/* ==========================================
   Hero Section (index.html)
   ========================================== */
.hero-section {
    position: relative;
    height: 88vh;
    min-height: 600px;
    background: linear-gradient(rgba(10, 10, 12, 0.7), rgba(10, 10, 12, 0.95)), url('../images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: var(--text-white);
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-family: var(--font-luxury);
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-content h2 {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.15;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 45px;
    color: var(--text-sand);
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* ==========================================
   About Intro Section (index.html)
   ========================================== */
.about-intro {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

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

.about-intro-text h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-intro-text p {
    color: var(--text-sand);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.highlight-quote {
    border-left: 2px solid var(--primary-gold);
    padding-left: 25px;
    font-style: italic;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--primary-gold);
    margin: 35px 0;
    line-height: 1.6;
}

.about-intro-img {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--box-shadow);
}

.about-intro-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-intro-img:hover img {
    transform: scale(1.05);
}

/* ==========================================
   Featured Meals Section (index.html)
   ========================================== */
.featured-meals {
    background-color: var(--bg-dark);
}

.meal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.meal-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.meal-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.meal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.meal-card:hover::after {
    border-color: var(--border-gold-hover);
}

.meal-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

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

.meal-card:hover .meal-img-wrapper img {
    transform: scale(1.08);
}

.meal-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.meal-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.meal-info h3 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    color: var(--text-white);
    font-weight: 400;
}

.meal-info p {
    color: var(--text-sand);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.meal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    margin-top: auto;
}

.meal-location {
    font-size: 0.8rem;
    font-family: var(--font-luxury);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meal-location svg {
    stroke: var(--primary-gold);
}

.meal-link {
    font-size: 0.8rem;
    font-family: var(--font-luxury);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--text-white);
    position: relative;
}

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

.meal-link:hover {
    color: var(--primary-gold);
}

.meal-link:hover::after {
    width: 0;
}

.view-menu-btn-container {
    text-align: center;
    margin-top: 40px;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose-us {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    background-color: var(--bg-dark);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-surface-elevated);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
}

.feature-icon svg {
    stroke: var(--primary-gold);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 18px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-sand);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================
   Menu Page Layout (menu.html)
   ========================================== */
.menu-page-header {
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95)), url('../images/hero.jpg') no-repeat center center/cover;
    border-bottom: 1px solid var(--border-gold);
    color: var(--text-white);
    text-align: center;
    padding: 120px 20px;
}

.menu-page-header h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--primary-gold);
}

.menu-page-header p {
    font-size: 1.15rem;
    margin-top: 15px;
    color: var(--text-sand);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px auto 60px;
    flex-wrap: wrap;
    max-width: 800px;
}

.category-tab {
    padding: 12px 28px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-dark);
    border-radius: 50px;
    font-family: var(--font-luxury);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-sand);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--box-shadow);
}

.category-tab:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.category-tab.active {
    background-color: var(--primary-gold);
    color: var(--bg-dark) !important;
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-dark);
    box-shadow: var(--box-shadow);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.menu-img-wrapper {
    height: 260px;
    position: relative;
    overflow: hidden;
}

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

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

.menu-card-price {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    color: var(--primary-gold);
    border: 1px solid var(--border-gold);
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.menu-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-info h3 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 400;
}

.menu-info p {
    color: var(--text-sand);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.menu-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 20px;
    margin-top: auto;
}

.menu-tag {
    font-size: 0.7rem;
    font-family: var(--font-luxury);
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-gold);
    background-color: rgba(212, 175, 55, 0.08);
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.order-btn {
    font-size: 0.75rem;
    padding: 10px 20px;
}

/* ==========================================
   About Us Page (about.html)
   ========================================== */
.about-hero {
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95)), url('../images/hero.jpg') no-repeat center center/cover;
    color: var(--text-white);
    text-align: center;
    padding: 120px 20px;
    border-bottom: 1px solid var(--border-gold);
}

.about-hero h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--primary-gold);
}

.about-hero p {
    font-size: 1.15rem;
    margin-top: 15px;
    color: var(--text-sand);
}

.about-history {
    background-color: var(--bg-dark);
}

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

.about-history-text h3 {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-history-text p {
    color: var(--text-sand);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-history-img {
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-gold);
}

.about-history-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-history-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-top: 2px solid var(--primary-gold);
    border-left: 2px solid var(--primary-gold);
    z-index: 1;
    pointer-events: none;
}

.about-history-img::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid var(--primary-gold);
    border-right: 2px solid var(--primary-gold);
    z-index: 1;
    pointer-events: none;
}

/* Mission & Vision cards */
.mission-vision {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background-color: var(--bg-dark);
    padding: 60px 45px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-dark);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition-smooth);
}

.mv-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.1);
}

.mv-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.mv-icon svg {
    stroke: var(--primary-gold);
}

.mv-card h3 {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--text-sand);
    font-size: 1rem;
    line-height: 1.7;
}

/* Values section */
.restaurant-values {
    background-color: var(--bg-dark);
    text-align: center;
}

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

.value-item {
    padding: 30px;
    transition: var(--transition-smooth);
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item h4 {
    font-size: 1.35rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-white);
    margin: 20px 0;
}

.value-item p {
    color: var(--text-sand);
    font-size: 0.95rem;
    line-height: 1.65;
}

.value-img-placeholder {
    width: 90px;
    height: 90px;
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.value-item:hover .value-img-placeholder {
    background-color: var(--primary-gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: rotate(360deg);
}

.value-img-placeholder svg {
    stroke: currentColor;
    transition: var(--transition-smooth);
}

/* ==========================================
   Gallery Page (gallery.html)
   ========================================== */
.gallery-hero {
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95)), url('../images/hero.jpg') no-repeat center center/cover;
    color: var(--text-white);
    text-align: center;
    padding: 120px 20px;
    border-bottom: 1px solid var(--border-gold);
}

.gallery-hero h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--primary-gold);
}

.gallery-hero p {
    font-size: 1.15rem;
    margin-top: 15px;
    color: var(--text-sand);
}

/* Gallery Grid */
.gallery-section {
    background-color: var(--bg-dark);
}

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

.gallery-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-dark);
    background-color: var(--bg-surface);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.95), rgba(212, 175, 55, 0.15));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 25px;
    text-align: center;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

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

.gallery-overlay h3 {
    color: var(--text-white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-overlay p {
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-family: var(--font-luxury);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-zoom-icon {
    font-size: 1.2rem;
    color: var(--bg-dark);
    background-color: var(--primary-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: scale(0.8);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-card:hover .gallery-overlay h3,
.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

/* Pure CSS Lightbox Modal using :target */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Display lightbox when targeted by hash links */
.lightbox:target {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-white);
    font-size: 3.5rem;
    font-weight: 200;
    line-height: 1;
    z-index: 2001;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--primary-gold);
    transform: rotate(90deg);
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.lightbox-caption {
    color: var(--text-champagne);
    text-align: center;
    margin-top: 25px;
}

.lightbox-caption h3 {
    font-size: 1.6rem;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.lightbox-caption p {
    color: var(--text-sand);
    font-size: 0.95rem;
    max-width: 600px;
}

/* ==========================================
   Contact Page (contact.html)
   ========================================== */
.contact-hero {
    background: linear-gradient(rgba(10, 10, 12, 0.8), rgba(10, 10, 12, 0.95)), url('../images/hero.jpg') no-repeat center center/cover;
    color: var(--text-white);
    text-align: center;
    padding: 120px 20px;
    border-bottom: 1px solid var(--border-gold);
}

.contact-hero h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--primary-gold);
}

.contact-hero p {
    font-size: 1.15rem;
    margin-top: 15px;
    color: var(--text-sand);
}

.contact-section {
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

/* Contact Info Column */
.contact-info-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-gold);
    color: var(--text-champagne);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info-wrapper h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 35px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.contact-detail-list {
    margin-bottom: 45px;
}

.contact-detail-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.contact-detail-icon {
    color: var(--bg-dark);
    background-color: var(--primary-gold);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.contact-detail-icon svg {
    stroke: var(--bg-dark);
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    font-family: var(--font-luxury);
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: var(--primary-gold);
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: var(--text-sand);
    line-height: 1.6;
}

.opening-hours-wrapper {
    border-top: 1px solid var(--border-dark);
    padding-top: 35px;
}

.opening-hours-wrapper h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--text-sand);
}

.hours-list li span:first-child {
    color: var(--text-champagne);
}

.hours-list li span:last-child {
    font-family: var(--font-luxury);
    font-size: 0.85rem;
    color: var(--primary-gold);
}

/* Contact Form Column */
.contact-form-wrapper {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-dark);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.contact-form-wrapper > p {
    color: var(--text-sand);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-family: var(--font-luxury);
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-champagne);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    background-color: var(--bg-surface-elevated);
}

/* HTML5 form validation outline styles */
.form-group input:required:invalid:focus,
.form-group textarea:required:invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.15);
}

.form-group input:required:valid,
.form-group textarea:required:valid {
    border-color: rgba(34, 197, 94, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 0.85rem;
}

/* Mock Map Placeholder */
.map-section {
    background-color: var(--bg-dark);
    padding: 0;
}

.mock-map {
    height: 450px;
    background: linear-gradient(rgba(10, 10, 12, 0.4), rgba(10, 10, 12, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="%230f0f11" width="100" height="100"/><path d="M0,50 Q25,25 50,50 T100,50" fill="none" stroke="%23222226" stroke-width="1"/><path d="M50,0 Q25,25 50,50 T50,100" fill="none" stroke="%23222226" stroke-width="1"/><circle fill="%23D4AF37" cx="50" cy="50" r="3"/><circle fill="none" stroke="%23D4AF37" stroke-width="0.5" cx="50" cy="50" r="6"><animate attributeName="r" values="3;15" dur="3s" repeatCount="indefinite"/><animate attributeName="opacity" values="1;0" dur="3s" repeatCount="indefinite"/></circle><text fill="%23D4AF37" font-size="5" font-family="sans-serif" font-weight="bold" x="58" y="52">FLIGHT DELIGHT</text></svg>') repeat;
    background-size: 200px 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.mock-map-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-gold);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    max-width: 420px;
    backdrop-filter: blur(10px);
}

.mock-map-card h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    font-weight: 400;
}

.mock-map-card p {
    color: var(--text-sand);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mock-map-card a {
    color: var(--primary-gold);
    font-family: var(--font-luxury);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    position: relative;
}

.mock-map-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.mock-map-card a:hover::after {
    width: 0;
}

/* ==========================================
   Footer Component
   ========================================== */
footer {
    background-color: #050506;
    color: var(--text-champagne);
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-family: var(--font-luxury);
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-col h4 {
    font-size: 1rem;
    font-family: var(--font-luxury);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--primary-gold);
}

/* Footer About Col */
.footer-about p {
    color: var(--text-sand);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--text-sand);
}

.social-icon:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Footer Links Col */
.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: var(--text-sand);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

/* Footer Info Col */
.footer-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-info-icon {
    color: var(--primary-gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.footer-info-icon svg {
    stroke: var(--primary-gold);
}

.footer-info-text p {
    font-size: 0.95rem;
    color: var(--text-sand);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 35px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-sand);
    opacity: 0.7;
}

/* ==========================================
   Responsive Styling (Media Queries)
   ========================================== */

/* Breakpoint 1: Desktop / Laptop Transition (1200px) */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h2 {
        font-size: 3.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Breakpoint 2: Large Tablets / Laptops (992px) */
@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: 70px 20px;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-img img {
        height: 380px;
    }
    
    .about-history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-history-img img {
        height: 400px;
    }
    
    .about-history-img::before,
    .about-history-img::after {
        display: none; /* Hide decorative corners on smaller viewports */
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

/* Breakpoint 3: Tablets (768px) */
@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    
    .logo-container {
        margin-right: 0;
    }
    
    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        border-top: 1px solid var(--border-dark);
        padding-top: 15px;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Breakpoint 4: Small Mobile Devices (576px) */
@media (max-width: 576px) {
    .container {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        background-color: var(--bg-surface);
        border: 1px solid var(--border-dark);
        border-radius: var(--border-radius-sm);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a.active {
        background-color: var(--primary-gold);
        color: var(--bg-dark) !important;
        border-color: var(--primary-gold);
    }
    
    .meal-grid, .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
