/*
IMPORTANT:
We avoid Bootstrap display utilities (d-*-none)
for navigation visibility.

Reason:
- Prevent breakpoint conflicts
- Keep one layout authority
- Easier debugging & maintenance
*/


/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Bitter", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff; /* Background for entire site */
  --default-color: #352a26; /* Main text */
  --heading-color: #291812; /* Headings */
  --accent-color: #eb5f2d; /* Brand accents (e.g., buttons) */
  --surface-color: #ffffff; /* Boxed elements */
  --contrast-color: #ffffff; /* Text on accents */
}

/* Nav Menu Colors */
:root {
  --nav-color: #352a26; /* Nav links */
  --nav-hover-color: #eb5f2d; /* Hover/active */
  --nav-mobile-background-color: #ffffff; /* Mobile menu bg */
  --nav-dropdown-background-color: #ffffff; /* Dropdown bg */
  --nav-dropdown-color: #352a26; /* Dropdown links */
  --nav-dropdown-hover-color: #eb5f2d; /* Dropdown hover */
}

/* Color Presets */
.light-background {
  --background-color: #fff9f7;
  --surface-color: #ffffff;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/* ==========================
   Bootstrap Button Overrides
========================== */
:root {
  --bs-primary: var(--accent-color);
}

/* Primary button */
.btn-primary {
  --bs-btn-bg: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-color: var(--contrast-color);

  --bs-btn-hover-bg: color-mix(in srgb, var(--accent-color), black 12%);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--accent-color), black 12%);
  --bs-btn-hover-color: var(--contrast-color);

  --bs-btn-active-bg: color-mix(in srgb, var(--accent-color), black 18%);
  --bs-btn-active-border-color: color-mix(in srgb, var(--accent-color), black 18%);
}


/* General Styling */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* Global Sections */
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 66px;
  }
}

/* Global Section Titles */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title p {
  margin-bottom: 0;
}

/* ==========================
   Header
========================== */
.header {
  background: var(--background-color);
  padding: 14px 0;
  transition: all 0.3s ease;
  z-index: 997;
}

.scrolled .header {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* ==========================
   Brand
========================== */
.logo {
  text-decoration: none;
  color: inherit;
}

.brand-text {
  line-height: 1.1;
}
.logo-custom {
  /* This prevents the 500px image from blowing up the navbar */
  height: 60px; 
  width: auto;  /* Maintains the square aspect ratio */
  transition: all 0.3s ease; /* Smooth resizing when switching screens */
}

/* On mobile screens (smaller than 768px) */
@media (max-width: 768px) {
  .logo-custom {
    height: 40px; 
  }
}

.sitename {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}

.brand-location {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

/* ==========================
   Navigation
========================== */
.navmenu ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu a {
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-color);
  transition: color 0.2s ease;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--nav-hover-color);
}

/* ==========================
   CTA Button
========================== */
/* .btn-book {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
} */

.btn-book:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* ==========================
   Mobile Navigation
========================== */
/*
NOTE: Modern flexbox (display: flex) for mobile menu.
No vendor prefixes needed - browsers handle it fine.
We could use Bootstrap's collapse, but keeping it custom for control.
*/
.mobile-nav-toggle {
  font-size: 26px;
  cursor: pointer;
  color: var(--nav-color);
}


@media (max-width: 991px) {  /* Custom breakpoint, not Bootstrap-dictated */
  .navmenu ul {
    display: none;  /* Hidden by default on mobile */
    flex-direction: column;  /* Stack vertically when shown */
    gap: 15px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--nav-mobile-background-color);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .navmenu ul.mobile-active {  /* Shown via JS toggle */
    display: flex;
  }

  .btn-book {
    margin-top: 15px;  /* Stack CTA below nav on mobile if needed */
  }
}


/* Prevent body scroll when mobile menu is open */
body.mobile-nav-active {
  overflow: hidden;
}
/* Desktop: hide hamburger */
@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

/* Mobile: show hamburger */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
}
 

/* Smooth transition for mobile menu */
.navmenu ul {
  transition: all 0.3s ease;
}

/* Optional: nicer mobile menu alignment */
@media (max-width: 991px) {
  .navmenu ul.mobile-active {
    display: flex;
    align-items: center;
    text-align: center;
  }

  .navmenu ul.mobile-active a {
    font-size: 18px;
    padding: 12px 0;
  }
}

/* ==========================
   Footer
========================== */
.footer {
  background: var(--background-color);
  padding: 60px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-logo {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.footer p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

/* Footer Titles */
.footer-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--heading-color);
}

/* Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: var(--default-color);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* Contact icons */
.footer-contact i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  background: color-mix(in srgb, var(--background-color), black 3%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-bottom p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.footer-credit {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}
/*--------------------------------------------------------------
# Hero Section - Modern Full-Screen Style
--------------------------------------------------------------*/
/*
NOTE:
Hero sections manage their own background and overlay.
We override global section backgrounds here to prevent stacking issues.
*/

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: -1;
}

/* Subheading */
.hero .subheading {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 0.9;
}

/* Title */
.hero .hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

@media (max-width: 992px) {
  .hero .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-title {
    font-size: 2.8rem;
  }
}

/* Subtitle */
.hero .hero-subtitle {
  font-size: 1.3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.6;
}

/* Buttons */
.hero .btn-primary {
  background: var(--accent-color);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}

.hero .btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hero .btn-outline-white:hover {
  /* background: white; */
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Info items */
/* .hero .hero-info .info-item {
  opacity: 0.9;
}

.hero .hero-info small {
  font-size: 0.9rem;
  opacity: 0.8;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }
  
  .hero .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ==========================
   Hero Section
========================== */
/* ==========================
   Hero Section
========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;

  /* IMPORTANT: override global section bg */
  background: none;
}

/* Background image */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay using ::before */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Content above overlay */
.hero > .container {
  position: relative;
  z-index: 2;
}

/* Force light text inside hero */
.hero h1,
.hero p,
.hero span,
.hero small {
  color: #fff;
}


/* Subheading */
.hero .subheading {
  display: block;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

/* Title */
.hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.6rem;
  }
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}

/* Buttons */
.hero .btn-primary {
  background: var(--accent-color);
  border: none;
  font-weight: 600;
}

.hero .btn-outline-white {
  border: 2px solid #fff;
  color: #fff;
}

.hero .btn-outline-white:hover {
  background: #fff;
  color: var(--heading-color);
}

/* Info row */
/* .hero-info .info-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.hero-info small {
  font-size: 0.9rem;
  opacity: 0.85;
} */

/* Mobile tweaks */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero .btn {
    width: 100%;
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Inquiry Form - Floating Overlap
--------------------------------------------------------------*/
.inquiry-form-container {
  position: relative;
  margin-top: -100px;     /* Pulls it up over hero bottom - adjust as needed (-80 to -150) */
  z-index: 10;
  margin-bottom: 80px;    /* Space before next section */
}

.inquiry-form-bg {
  background: white;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.inquiry-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  height: 50px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.inquiry-form .btn-primary {
  background: var(--accent-color);
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.inquiry-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .inquiry-form-container {
    margin-top: -60px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .inquiry-form-bg {
    padding: 25px 20px;
    border-radius: 15px;
  }

  .inquiry-form .btn-primary {
    height: 50px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-img img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.feature-text {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-text {
  background: var(--accent-color) !important;
  color: white;
}

.feature-card:hover .feature-text h3,
.feature-card:hover .feature-text p {
  color: white;
}

.feature-card:hover .text-accent {
  color: white !important;
}

.reverse-order {
  flex-direction: column-reverse;
}

.text-accent {
  color: var(--accent-color);
}

.about-content .subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-color);
}

.about-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--accent-color);
  color: white;
}

/* Responsive */
@media (max-width: 992px) {
  .about-content h2 {
    font-size: 2.4rem;
  }

  .feature-img img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .reverse-order {
    flex-direction: column;
  }
}

/* Primary CTA */
.btn-primary {
  background-color: var(--accent-color)!important;
  border: 2px solid var(--accent-color)!important;
  color: var(--contrast-color)!important;
  font-weight: 600!important;
  letter-spacing: 0.5px!important;
  border-radius: 50px!important;
  box-shadow: 0 6px 18px rgba(235, 95, 45, 0.35)!important;
  transition: all 0.25s ease!important;
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 12%)!important;
  border-color: color-mix(in srgb, var(--accent-color), black 12%)!important;
  transform: translateY(-2px)!important;
}

/* Secondary CTA */
.btn-outline-brand {
  background: transparent!important;
  border: 2px solid var(--accent-color)!important;
  color: var(--accent-color)!important;
  font-weight: 600!important;
  border-radius: 50px!important;
  transition: all 0.25s ease!important;
}

.btn-outline-brand:hover {
  background: var(--accent-color)!important;
  color: white!important;
  transform: translateY(-2px)!important;
}

/* Alignment polish */
.about-actions .btn {
  min-width: 180px;
  text-align: center;
}




/* ==========================
   Services Swiper (your original - kept as-is, just added icon size)
========================== */
.servicesSwiper {
  padding-bottom: 50px;
}

.service-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.service-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Swiper pagination */
.servicesSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
}

.servicesSwiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* ==========================
   DESTINY Block - Circular Images
========================== */
.destiny-container {
  margin-top: 6rem;
}

.destiny-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.destiny-tile {
  text-align: center;
  transition: all 0.3s ease;
}

.destiny-tile:hover {
  transform: translateY(-8px);
}

.destiny-tile .letter-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.2rem;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.destiny-tile h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
}

/* Highlight Y tile */
.destiny-tile.highlight .letter-circle {
  box-shadow: 0 12px 35px rgba(235, 95, 45, 0.3); /* accent glow */
}

.destiny-tile.highlight h5 {
  color: var(--accent-color);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .destiny-tile .letter-circle {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .destiny-tile h5 {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
# Rooms Section - Fixed for Mobile
--------------------------------------------------------------*/
.room-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.room-img {
  display: block;
  position: relative;
  overflow: hidden;
}

.room-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.room-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.room-card:hover .room-img::after {
  opacity: 1;
}

.room-card:hover .room-img img {
  transform: scale(1.05);
}

.room-text {
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.reverse-order {
  flex-direction: column-reverse;
}

/* Ensure button is never cut off and has proper spacing */
.room-text .btn {
  align-self: center;
}

/* Mobile fixes */
@media (max-width: 768px) {
  .room-img img {
    height: 260px;
  }

  /* Remove aggressive negative margins on mobile */
  .room-text {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    padding: 30px 20px !important;
  }

  /* Increase row gap on small screens for better spacing between cards */
  .row.g-4.g-lg-5 {
    row-gap: 50px !important;
  }

  /* Ensure text content has breathing room */
  .room-text p {
    margin-bottom: 20px;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .room-text {
    padding: 25px 15px !important;
  }
}
/*--------------------------------------------------------------
# Resto & Bar Section
--------------------------------------------------------------*/
#resto-bar .subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-color);
  display: block;
  margin-bottom: 10px;
}

/* Main Image */
.resto-main-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resto-main-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.resto-main-img:hover img {
  transform: scale(1.05);
}

/* Center Icon */
.resto-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.resto-icon i {
  background: rgba(255,255,255,0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Highlight Cards */
.resto-highlight {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.resto-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Highlight Image */
.resto-highlight-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px;
}

.resto-highlight-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.resto-highlight:hover .resto-highlight-img img {
  transform: scale(1.1);
}

/* Highlight Text */
.resto-highlight-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.resto-highlight-text p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .resto-main-img img {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .resto-highlight {
    flex-direction: column;
    text-align: center;
  }

  .resto-highlight-img {
    margin: 0 auto 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section Custom Styles 
--------------------------------------------------------------*/

/* Testimonials Section Custom Styles */
.testimonials-swiper .testimonial-item {
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-swiper .testimonial-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-swiper blockquote p {
  font-style: italic;
  color: var(--default-color);
}

.testimonials-swiper .user-img {
  flex-shrink: 0;
  border: 4px solid var(--accent-color);
}

/* Swiper Overrides for modern look */
.swiper-pagination-bullet {
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
}


/*--------------------------------------------------------------
# Rooms.html styles
--------------------------------------------------------------*/
 .room-type-section {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.room-type-section h3 {
  color: var(--heading-color);
  font-weight: 700;
}

.swiper {
  border-radius: 12px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.book-now-btn {
  background: var(--accent-color);
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(235,95,45,0.25);
}

.book-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(235,95,45,0.35);
}

.no-rooms {
  padding: 80px 20px;
  font-size: 1.2rem;
  color: #666;
}

/*--------------------------------------------------------------
# Rooms Page - Availability Filter Form (Dedicated)
--------------------------------------------------------------*/
.rooms-filter-container {
  padding: 40px 0 20px;
  background: linear-gradient(to bottom, transparent 0%, var(--background-color) 100%);
}

.rooms-filter-card {
  background: var(--surface-color);
  padding: 35px 45px;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0e6e3;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.rooms-filter-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--accent-color), #f28a5e);
  border-radius: 24px 24px 0 0;
}

.rooms-availability-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 15px;
}

.rooms-availability-form .form-control,
.rooms-availability-form .form-select {
  height: 56px;
  border-radius: 12px;
  border: 1px solid #e0d7d4;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fdf9f7;
}

.rooms-availability-form .form-control:focus,
.rooms-availability-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
  background-color: #ffffff;
}

.btn-check-availability {
  background: var(--accent-color);
  border: none;
  border-radius: 12px;
  font-size: 15px;
  letter-spacing: 1.2px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.btn-check-availability:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.btn-check-availability:active {
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 992px) {
  .rooms-filter-card {
    padding: 30px 30px;
  }
}

@media (max-width: 767px) {
  .rooms-filter-container {
    padding: 30px 0 10px;
  }
  
  .rooms-filter-card {
    padding: 25px 20px;
    border-radius: 18px;
  }
  
  .rooms-availability-form .col-6 {
    margin-top: 10px;
  }
  
  .btn-check-availability {
    height: 56px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
#  Room Details Specific Styles 
--------------------------------------------------------------*/
.room-details-header {
      position: relative;
      margin-bottom: 50px;
    }

    .room-details-image img {
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 500px;
      object-fit: cover;
    }

    .room-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--accent-color);
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .room-info {
      padding: 30px;
      background: var(--surface-color);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       margin-top: 40px;  /* Positive margin instead of negative */
  /* Remove the negative margin and z-index */
      /* margin-top: -100px;
      position: relative;
      z-index: 2; */
    }

    @media (max-width: 992px) {
      .room-info {
        margin-top: 30px;
      }
    }

    .room-title {
      font-size: 2.4rem;
      margin-bottom: 15px;
    }

    .room-subtitle {
      font-size: 1.1rem;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      margin-bottom: 25px;
    }

    .room-features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 30px;
    }

    .room-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
    }

    .room-feature i {
      color: var(--accent-color);
      font-size: 18px;
    }

    .btn-book {
      background: var(--accent-color);
      color: white;
      padding: 14px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
    }

    .btn-book:hover {
      background: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-3px);
    }

    /* Swiper Gallery */
    .room-gallery .swiper {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .room-gallery .swiper-slide img {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .room-gallery .swiper-pagination {
      bottom: 15px;
    }

    .room-gallery .swiper-pagination-bullet {
      background: white;
      opacity: 0.7;
    }

    .room-gallery .swiper-pagination-bullet-active {
      background: var(--accent-color);
      opacity: 1;
    }

    /* Description & Review */
    .room-description {
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .guest-review {
      background: #f9f3f0;
      padding: 25px;
      border-radius: 12px;
      border-left: 4px solid var(--accent-color);
    }

    .guest-review p {
      font-style: italic;
      margin-bottom: 10px;
    }

    .guest-review .author {
      font-size: 14px;
      color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    /* Amenities */
    .amenities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .amenity-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
    }

    .amenity-item i {
      color: var(--accent-color);
      font-size: 18px;
    }

  /*--------------------------------------------------------------
#  Resto-Bar Specific Styles
--------------------------------------------------------------*/
.resto-hero {
      position: relative;
      height: 70vh;
      min-height: 500px;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('../img/trial/destiny-inn-image\ \(6\).jpeg') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: white;
    }

    .resto-hero h1 {
      font-size: 3.5rem;
      color: white;
    }

    .resto-hero p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 20px auto;
      opacity: 0.95;
    }

    .btn-resto {
      background: var(--accent-color);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(235,95,45,0.3);
    }

    .btn-resto:hover {
      background: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-4px);
    }

    .btn-resto-outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .btn-resto-outline:hover {
      background: white;
      color: var(--accent-color);
    }

    .story-section {
      background: #f9f3f0;
    }

    .enjoy-card {
      text-align: center;
      padding: 30px 20px;
      background: var(--surface-color);
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .enjoy-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .enjoy-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 20px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .enjoy-icon i {
      font-size: 36px;
      color: var(--accent-color);
    }

    .gallery-grid a {
      display: block;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .gallery-grid a:hover {
      transform: scale(1.03);
    }

    .gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .reservation-box {
      background: var(--surface-color);
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border-top: 5px solid var(--accent-color);
    }

    .reservation-box h3 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .reservation-box .form-control, .reservation-box .form-select {
      height: 52px;
      border-radius: 12px;
      border: 1px solid #ddd;
    }

    .cross-sell {
      background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
      color: white;
      border-radius: 16px;
      padding: 50px;
      text-align: center;
    }

    .cross-sell h3 {
      color: white;
      font-size: 28px;
    }

    @media (max-width: 768px) {
      .resto-hero h1 { font-size: 2.8rem; }
      .resto-hero { height: 60vh; }
      .reservation-box { padding: 30px 20px; }
      .cross-sell { padding: 40px 20px; }
    }



 /*--------------------------------------------------------------
#  /* Contact Page Styles 
--------------------------------------------------------------*/
.contact-section {
      background: linear-gradient(to bottom, var(--background-color) 50%, #f9f3f0 50%);
    }

    .contact-info-card {
      background: var(--surface-color);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      height: 100%;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 30px;
    }

    .contact-info-item:last-child {
      margin-bottom: 0;
    }

    .contact-icon {
      width: 60px;
      height: 60px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon i {
      font-size: 24px;
      color: var(--accent-color);
    }

    .contact-details h5 {
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .contact-details p {
      margin: 0;
      line-height: 1.6;
    }

    .contact-details a {
      color: var(--default-color);
      font-weight: 500;
    }

    .contact-details a:hover {
      color: var(--accent-color);
    }

    .contact-form-card {
      background: var(--surface-color);
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      border-top: 5px solid var(--accent-color);
    }

    .contact-form-card h2 {
      font-size: 32px;
      margin-bottom: 15px;
    }

    .contact-form-card p {
      color: color-mix(in srgb, var(--default-color), transparent 40%);
      margin-bottom: 40px;
    }

    .form-control, .form-select {
      height: 56px;
      border-radius: 12px;
      border: 1px solid #e0d7d4;
      padding: 12px 20px;
      font-size: 16px;
      background-color: #fdf9f7;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
      background-color: white;
    }

    textarea.form-control {
      height: auto;
      min-height: 140px;
    }

    .btn-send {
      background: var(--accent-color);
      color: white;
      padding: 14px 40px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      border: none;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
    }

    .btn-send:hover {
      background: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-4px);
      box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
    }

    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      height: 100%;
      min-height: 500px;
    }

    .social-links {
      margin-top: 40px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      color: var(--accent-color);
      border-radius: 50%;
      font-size: 20px;
      margin-right: 12px;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--accent-color);
      color: white;
      transform: translateY(-5px);
    }

    @media (max-width: 992px) {
      .contact-form-card {
        padding: 40px 30px;
        margin-top: 40px;
      }
      .map-container {
        min-height: 400px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 80px 0;
      }
      .contact-info-card, .contact-form-card {
        padding: 30px 20px;
      }
    }
 /*--------------------------------------------------------------
#  /* Conference Specific Styles 
--------------------------------------------------------------*/
.conference-hero {
      position: relative;
      height: 70vh;
      min-height: 500px;
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)), url('../img/trial/destiny-inn-conference-hall.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .conference-hero h1 {
      font-size: 3.5rem;
      color: white;
    }

    .conference-hero p {
      font-size: 1.3rem;
      max-width: 800px;
      margin: 20px auto;
      opacity: 0.95;
    }

    .btn-conference {
      background: var(--accent-color);
      color: white;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(235,95,45,0.3);
    }

    .btn-conference:hover {
      background: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-4px);
    }

    .btn-outline-conference {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .btn-outline-conference:hover {
      background: white;
      color: var(--accent-color);
    }

    .use-card {
      text-align: center;
      padding: 30px 20px;
      background: var(--surface-color);
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      height: 100%;
    }

    .use-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .use-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: color-mix(in srgb, var(--accent-color), transparent 90%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .use-icon i {
      font-size: 34px;
      color: var(--accent-color);
    }

    .package-card {
      background: var(--surface-color);
      border-radius: 16px;
      padding: 35px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      border-top: 5px solid var(--accent-color);
      transition: transform 0.3s ease;
    }

    .package-card:hover {
      transform: translateY(-8px);
    }

    .package-card h4 {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .package-card ul {
      list-style: none;
      padding: 0;
    }

    .package-card ul li {
      padding: 8px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .package-card ul li i {
      color: var(--accent-color);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 16px;
    }

    .feature-item i {
      color: var(--accent-color);
      font-size: 20px;
    }

    .booking-form-box {
      background: var(--surface-color);
      padding: 50px 40px;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border-top: 5px solid var(--accent-color);
      max-width: 900px;
      margin: 0 auto;
    }

    .booking-form-box h3 {
      font-size: 28px;
      margin-bottom: 15px;
    }

    .form-control, .form-select {
      height: 56px;
      border-radius: 12px;
      border: 1px solid #e0d7d4;
      background-color: #fdf9f7;
    }

    @media (max-width: 768px) {
      .conference-hero h1 { font-size: 2.8rem; }
      .conference-hero { height: 60vh; }
      .booking-form-box { padding: 40px 25px; }
    }

  
 /*--------------------------------------------------------------
#/* About Specific Styles
--------------------------------------------------------------*/


     
    .about-hero {
      position: relative;
      height: 70vh;
      min-height: 500px; 
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('../img/trial/about-hero.jpg') center/cover no-repeat; /* Replace with real exterior/reception photo */
      display: flex;
      align-items: center;
      color: white;
      text-align: center;
    }

    .about-hero h1 {
      font-size: 3.5rem;
      color: white;
    }

    .about-hero p {
      font-size: 1.3rem;
      max-width: 800px;
      margin: 20px auto;
      opacity: 0.95;
    }

    .btn-about {
      background: var(--accent-color);
      color: white;
      padding: 14px 36px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.4s ease;
    }

    .btn-about:hover {
      background: color-mix(in srgb, var(--accent-color), black 15%);
      transform: translateY(-4px);
    }

    .story-section {
      background: #f9f3f0;
    }

    /* Fixed Team Swiper Styles */
.teamSwiper1 .swiper-slide,
.teamSwiper2 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.team-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-card h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-card .role {
  font-style: italic;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 15px;
}

.team-card p:last-child {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Ensure Swiper height is consistent */
.teamSwiper1,
.teamSwiper2 {
  padding: 20px 0;
}
    .special-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .special-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      font-size: 16px;
    }

    .special-item i {
      color: var(--accent-color);
      font-size: 24px;
      flex-shrink: 0;
    }

    .future-section {
      background: #f9f3f0;
    }

    .closing-section {
      text-align: center;
      background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
      color: white;
      border-radius: 20px;
      padding: 60px 40px;
    }

    .closing-section h2 {
      color: white;
    }

    @media (max-width: 768px) {
      .about-hero h1 { font-size: 2.8rem; }
      .about-hero { height: 60vh; }
    }


 /*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/




























    /* ==========================
   Under Construction Section
========================== */

.under-construction-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.uc-icon img {
  width: 120px;
  height: auto;
  opacity: 0.85;
}

.under-construction-section h1 {
  font-size: 2.4rem;
  font-weight: 700;
}

.under-construction-section .lead {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* Mobile polish */
@media (max-width: 576px) {
  .uc-icon img {
    width: 90px;
  }

  .under-construction-section h1 {
    font-size: 2rem;
  }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/* ==========================
   Hotel Preloader
========================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper */
.hotel-loader {
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
}

/* Icon */
.hotel-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  animation: float 2.2s ease-in-out infinite;
}

/* Brand text */
.loader-text {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--heading-color);
  margin-bottom: 18px;
}

/* Progress bar */
.loader-bar {
  width: 140px;
  height: 4px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--accent-color);
  animation: loading 1.4s ease-in-out infinite;
}

/* Animations */
@keyframes loading {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(60%); }
  100% { transform: translateX(220%); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}





