/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS (:root system)
   ========================================== */
:root {
    /* Color Palette */
    --color-primary: #d76f28;
    --color-primary-hover: #b55518;
    --color-bg-light: #fdfcf7;
    --color-bg-alt: #f4f0e6;
    --color-bg-dark: #2b1d1d;
    --color-text-dark: #3c2c2c;
    --color-text-muted: #786865;
    --color-border: #e8dec9;
    --color-overlay: rgba(43, 29, 29, 0.55);
    
    /* Typography */
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Decoration */
    --border-radius: 4px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 30px rgba(2, 0, 20, 0.08);
    --shadow-lg: 0 20px 50px rgba(2, 0, 20, 0.15);
    
    /* Motion */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* ==========================================
   PRELOADER SYSTEM
   ========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #16100d;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 320px;
    width: 90%;
}

.preloader-logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(215, 111, 40, 0.15);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: preloaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-logo {
    width: 55px;
    height: auto;
    object-fit: contain;
    animation: preloaderPulse 1.8s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
    0% { transform: scale(0.92); opacity: 0.8; }
    100% { transform: scale(1.08); opacity: 1; }
}

.preloader-text-box {
    margin-bottom: 1.5rem;
}

.preloader-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 4px;
}

.preloader-sub {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.preloader-progress-track {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--color-primary), #f5a25d);
    border-radius: 4px;
    transition: width 0.1s linear;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-fast);
}

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

ul {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    outline: none;
    transition: var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(215, 111, 40, 0.1);
}

/* ==========================================
   GLOBAL UTILITIES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

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

.subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(215, 111, 40, 0.3);
}

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

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

/* ==========================================
   LAYOUT: PAGE VIEW SYSTEM (SPA)
   ========================================== */
.page-view {
    opacity: 1;
    transition: opacity var(--transition-slow);
}

.page-view.hidden {
    display: none;
    opacity: 0;
}

/* ==========================================
   COMPONENT: HEADER & NAVIGATION
   ========================================== */
.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
}

.header-wrapper.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-wrapper.sticky .nav-links a {
    color: var(--color-text-dark);
}

.header-wrapper.sticky .social-icons a {
    color: var(--color-text-dark);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    gap: 1.5rem;
}

.header-wrapper.sticky .navbar {
    height: 80px;
}

/* Far-Left Margin Logo */
.logo-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.nav-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-wrapper.sticky .nav-logo {
    height: 48px;
}

.nav-logo-white {
    display: block;
    opacity: 1;
}

.nav-logo-colored {
    display: none;
    opacity: 0;
}

.header-wrapper.sticky .nav-logo-white {
    display: none;
    opacity: 0;
}

.header-wrapper.sticky .nav-logo-colored {
    display: block;
    opacity: 1;
}

/* Navigation Menu (Center-Left) */
.nav-menu {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
    display: inline-block;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-bg-light);
    letter-spacing: 0.03em;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

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

.nav-links a:hover::after,
.nav-links li.active > a::after {
    width: 100%;
}

.nav-links a i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.nav-links li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-bg-light);
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    width: 200px;
    padding: var(--spacing-xs) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    z-index: 100;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    color: var(--color-text-dark) !important;
    display: block;
    padding: 0.6rem var(--spacing-sm);
    font-size: 0.875rem;
    text-transform: none;
    white-space: normal;
}

.dropdown a::after {
    display: none;
}

.dropdown a:hover {
    background-color: var(--color-bg-alt);
    color: var(--color-primary) !important;
}

/* Social & CTA Right */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex-shrink: 0;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    color: var(--color-bg-light);
    font-size: 0.875rem;
}

.social-icons a:hover {
    color: var(--color-primary);
}

.btn-book-nav {
    padding: 0.65rem 1.6rem;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-bg-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.header-wrapper.sticky .menu-toggle span {
    background-color: var(--color-text-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: #ffffff !important;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: #ffffff !important;
}

/* ==========================================
   COMPONENT: HERO SLIDER & BIG HERO LOGO
   ========================================== */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 680px;
    max-height: 880px;
    width: 100%;
    overflow: hidden;
}

.hero-brand-box {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-big-logo {
    height: 110px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
    animation: heroLogoFloat 4s ease-in-out infinite alternate;
}

@keyframes heroLogoFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.hero-main-title {
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.hero-tagline {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.slider-container {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 0, 20, 0.5) 0%, rgba(2, 0, 20, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--color-bg-light);
    max-width: 800px;
    padding: 0 var(--spacing-md);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s ease 0.3s, opacity 1s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.slide-content p {
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-arrow-left {
    left: var(--spacing-md);
}

.slider-arrow-right {
    right: var(--spacing-md);
}

/* ==========================================
   COMPONENT: SUB-HERO (PAGE BANNERS)
   ========================================== */
.sub-hero {
    height: 60vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-light);
}

.sub-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 0, 20, 0.5);
}

.sub-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sub-hero-content h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-xs);
}

/* ==========================================
   COMPONENT: ABOUT US SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-content {
    padding-right: var(--spacing-md);
}

.about-content .body-text {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.about-content .learn-more {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
}

.about-content .learn-more:hover {
    color: var(--color-primary);
}

/* Overlapping Image Layout */
.about-images {
    position: relative;
    height: 480px;
}

.about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 85%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 75%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 8px solid var(--color-bg-light);
}

/* ==========================================
   COMPONENT: ONGOING OFFERS
   ========================================== */
.offers-section {
    background-color: var(--color-bg-alt);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.offer-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.offer-img-box {
    overflow: hidden;
    height: 240px;
}

.offer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.offer-card:hover .offer-img-box img {
    transform: scale(1.05);
}

.offer-content {
    padding: var(--spacing-md);
}

.offer-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.offer-content ul {
    margin-bottom: var(--spacing-md);
}

.offer-content li {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.offer-content li::before {
    content: '•';
    color: var(--color-primary);
    font-size: 1.2rem;
}

.offer-content .btn {
    width: 100%;
}

/* ==========================================
   COMPONENT: PARALLAX VIDEO BANNER
   ========================================== */
.parallax-banner {
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-light);
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
}

.parallax-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.play-btn {
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.25rem;
    color: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    animation: pulsePlay 2s infinite;
    transition: var(--transition-fast);
}

.play-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    transform: scale(1.1);
}

/* ==========================================
   COMPONENT: WE SERVE FOOD SECTION
   ========================================== */
.food-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.food-images {
    position: relative;
    height: 480px;
}

.food-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 85%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.food-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 75%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    border: 8px solid var(--color-bg-light);
}

.food-content {
    padding-left: var(--spacing-md);
}

.food-content .body-text {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.food-content .learn-more {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-dark);
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 2px;
}

.food-content .learn-more:hover {
    color: var(--color-primary);
}

/* ==========================================
   COMPONENT: FEATURED ROOMS GRID
   ========================================== */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: var(--spacing-lg);
}

.room-card {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(2, 0, 20, 0) 40%, rgba(2, 0, 20, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--spacing-md);
    color: var(--color-bg-light);
    transition: var(--transition-slow);
}

.room-card:hover .room-img {
    transform: scale(1.06);
}

.room-card:hover .room-overlay {
    background: linear-gradient(180deg, rgba(2, 0, 20, 0.2) 0%, rgba(2, 0, 20, 0.85) 100%);
}

.room-overlay span {
    font-size: 0.875rem;
    opacity: 0.85;
    margin-bottom: 4px;
}

.room-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

/* ==========================================
   COMPONENT: CTA BAR CARD (Reservation Info)
   ========================================== */
.cta-card-wrapper {
    margin-top: var(--spacing-lg);
}

.cta-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: var(--spacing-md) var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
}

/* ==========================================
   COMPONENT: INSTAGRAM FEED GALLERY
   ========================================== */
.instagram-feed {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
}

.insta-item {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(215, 111, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-light);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.insta-item:hover .insta-overlay {
    opacity: 1;
}

/* ==========================================
   COMPONENT: FOOTER
   ========================================== */
footer {
    background-color: var(--color-bg-dark);
    color: var(--color-bg-light);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr 1.2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.footer-col a.footer-link {
    color: var(--color-primary);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 1px;
}

.footer-col a.footer-link:hover {
    color: var(--color-bg-light);
    border-color: var(--color-bg-light);
}

.footer-nav-list li {
    margin-bottom: var(--spacing-xs);
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

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

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-bottom: var(--spacing-sm);
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-bg-light);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   PAGE: BLOG SPECIFIC LAYOUT
   ========================================== */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.blog-posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.blog-post-card {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.blog-post-img-box {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-post-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date-badge {
    position: absolute;
    bottom: var(--spacing-sm);
    left: var(--spacing-sm);
    background-color: var(--color-primary);
    color: var(--color-bg-light);
    padding: 0.85rem 1.25rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    line-height: 1.1;
}

.blog-date-badge span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.blog-post-content {
    padding: var(--spacing-md);
}

.blog-post-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.blog-post-content h2:hover {
    color: var(--color-primary);
}

.blog-post-content p {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.blog-post-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-sm);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Sidebar Widgets */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.widget {
    background-color: var(--color-bg-alt);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
}

.widget-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-border);
    padding-bottom: var(--spacing-xs);
}

/* Search Widget */
.search-widget .search-box {
    display: flex;
}

.search-widget input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background-color: var(--color-bg-light);
}

.search-widget .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Category Widget */
.category-list li {
    margin-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-xs);
}

.category-list a {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.category-list a:hover {
    color: var(--color-primary);
}

/* Recent Post Widget */
.recent-posts {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.recent-post-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.recent-post-info h5 {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.recent-post-info h5:hover {
    color: var(--color-primary);
}

.recent-post-info span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ==========================================
   PAGE: CONTACT SPECIFIC LAYOUT
   ========================================= */
.map-container {
    width: 100%;
    height: 450px;
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-col h3,
.contact-info-col h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

/* Contact Info Items */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-info-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-top: 2px;
}

.contact-info-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-info-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ==========================================
   MODALS (Video, Booking)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 0, 20, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2000;
    transition: var(--transition-slow);
}

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

.modal-content {
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-slow);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.modal-close-btn:hover {
    color: var(--color-text-dark);
}

/* Video Frame specific */
.video-modal-content {
    max-width: 900px;
    width: 95%;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.video-modal-content .modal-close-btn {
    top: -35px;
    right: 0;
    color: var(--color-bg-light);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Booking Modal Form */
.booking-modal-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.booking-form .btn {
    margin-top: var(--spacing-xs);
}

/* ==========================================
   TOAST NOTIFICATION SYSTEM
   ========================================== */
.toast-container {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    z-index: 3000;
}

.toast {
    background-color: var(--color-bg-dark);
    color: var(--color-bg-light);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--color-primary);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #2ed573;
}

/* ==========================================
   KEYFRAME ANIMATIONS
   ========================================== */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ==========================================
   DYNAMIC IMAGE VISUAL ENHANCEMENTS & LIGHTBOX
   ========================================== */
.reveal-img {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-img.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Image Wrappers & Hover Effects */
.clickable-img {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.clickable-img img {
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
}

.clickable-img:hover img {
    transform: scale(1.08) rotate(0.4deg);
    filter: brightness(1.06) contrast(1.02);
}

/* Glassmorphism Light Sweep */
.clickable-img::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: transform 0.9s ease;
    pointer-events: none;
    opacity: 0;
}

.clickable-img:hover::after {
    transform: translate(300%, 0) rotate(30deg);
    opacity: 1;
}

/* Image Zoom Overlay Icon */
.img-zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 29, 29, 0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.35s ease;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    gap: 8px;
    z-index: 5;
    pointer-events: none;
}

.clickable-img:hover .img-zoom-overlay {
    opacity: 1;
}

.img-zoom-overlay i {
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* Floating Badges on Images */
.img-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

.clickable-img:hover .img-badge {
    transform: translateY(-3px);
}

/* Lightbox Modal */
.lightbox-modal-content {
    max-width: 900px;
    width: 92%;
    background-color: #16100d;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-height: 75vh;
    width: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-caption {
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

/* ==========================================
   RESPONSIVE DESIGN (Breakpoints)
   ========================================== */
@media (max-width: 1100px) {
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    /* Navigation Mobile Toggle & Off-canvas Drawer */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #1a1210;
        box-shadow: 10px 0 35px rgba(0, 0, 0, 0.5);
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1001;
        padding: 5.5rem 1.8rem 2rem 1.8rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.8rem !important;
        width: 100%;
    }
    
    .nav-links > li {
        width: 100%;
    }
    
    .nav-links a {
        color: #ffffff !important;
        font-size: 1.1rem;
        font-weight: 500;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .dropdown {
        position: static;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0.4rem;
        padding: 0.4rem 0.8rem;
        border-radius: 4px;
    }
    
    .nav-links li:hover .dropdown,
    .nav-links li.dropdown-open .dropdown {
        display: block;
    }
    
    .dropdown a {
        color: rgba(255, 255, 255, 0.75) !important;
        font-size: 0.95rem;
        border-bottom: none;
        padding: 0.4rem 0;
    }
    
    .nav-actions {
        display: none; /* Hide top right bar on mobile to keep header clean */
    }
}

@media (max-width: 768px) {
        display: none; /* Hide on mobile to simplify header */
    }
    
    /* Hero */
    .slide-content h2 {
        font-size: 2.75rem;
    }
    
    /* About & Food Grids */
    .about-grid, .food-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-content, .food-content {
        padding: 0;
        text-align: center;
    }
    
    .about-images, .food-images {
        height: 350px;
        margin-top: var(--spacing-md);
    }
    
    /* Offers Grid */
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Rooms Grid */
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .room-card {
        height: 300px;
    }
    
    /* CTA Card */
    .cta-card {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    /* Instagram Grid */
    .instagram-feed {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .insta-item:nth-child(n+4) {
        display: none; /* Hide last 2 on mobile */
    }
    
    /* Blog Layout */
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    /* Contact Layout */
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 2.25rem;
    }
    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-xs);
        text-align: center;
    }
}
