:root {
  --maroon: #7a1f2b;     /* hotel primary color */
  --light-grey: #f4f4f4;
  --border-grey: #e5e5e5;
}

/* Smooth scrolling for anchor links */
html { scroll-behavior: smooth; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  background: #fff;
}

/* Layout helper */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Fixed Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  letter-spacing: .2px;
}

.nav a {
  text-decoration: none;
  color: #111;
  font-weight: 700;
  margin-left: 16px;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  padding: 120px 0 70px;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 10px;
}

.hero p {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 18px;
  border-radius: 8px;
  background: #0b5ed7;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  color: #0b5ed7;
  border: 2px solid #0b5ed7;
}

/* Sections */
.section {
  padding: 90px 0;
  border-top: 1px solid #f0f0f0;

  /* IMPORTANT: prevents the fixed header covering section titles */
  scroll-margin-top: 90px;
}

.section h2 {
  font-size: 34px;
  margin: 0 0 10px;
}

.section p {
  margin: 0;
  max-width: 820px;
  line-height: 1.7;
}

/* Actions under sections */
.section-actions {
  margin-top: 18px;
}

/* Cards grid */
.grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.ph {
  height: 180px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #666;
}

.ph.big { height: 220px; }

.pad {
  padding: 14px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.card small {
  color: #666;
}

/* Recreation note */
.note {
  margin-top: 16px;
  padding: 12px 14px;
  background: #f7f7f7;
  border: 1px solid #eee;
  border-radius: 12px;
  max-width: 820px;
}

/* Airport split images */
.split {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Map */
.map-wrapper {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
}

/* Social buttons */
.social {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  color: #111;
  font-weight: 700;
}

.social-btn:hover {
  border-color: #0b5ed7;
  color: #0b5ed7;
}

/* Contact */
.contact-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
}

.contact-form {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font: inherit;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Footer */
.footer {
  border-top: 1px solid #eee;
  padding: 20px;
  text-align: center;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }

  /* Simple mobile approach: hide nav links.
     If you want a hamburger menu, tell me and I'll add it. */
  .nav { display: none; }
}
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--light-grey);
  z-index: 1000;

  /* thin maroon separator */
  border-bottom: 2px solid var(--maroon);
}
.btn {
  background: var(--maroon);
  color: #fff;
}

.btn.outline {
  background: transparent;
  color: var(--maroon);
  border: 2px solid var(--maroon);
}
footer *,
.footer *,
.copyright,
.bottom-bar {
  background-color: var(--maroon) !important;
  color: #ffffff !important;
}
:root{
  --maroon:#7a1f2b;
}

/* full footer bar */
.site-footer{
  background: var(--maroon);
  margin-top: 30px;
}

/* centered white text */
.footer-bottom{
  background: var(--maroon);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  letter-spacing: 0.2px;
}

/* keep year white too */
.footer-bottom span{
  color:#fff;
}
.hero-slideshow {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(0,0,0,0.30);
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-slideshow h1,
.hero-slideshow p {
  color: #fff;
}
 .hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: contain;        /* ✅ shows full photo */
  background-position: center;
  background-repeat: no-repeat;    /* ✅ prevents tiling */
  background-color: #000;          /* ✅ fills empty space */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
  opacity: 1;
}

/* BACK IMAGE — fills entire area */
.hero-slideshow .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;        /* fills sides */
  background-position: center;
  z-index: 0;
}

/* FRONT IMAGE — full photo, no crop */
.hero-slideshow .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: contain;      /* shows whole image */
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
/* ============================= */
/* HERO SLIDESHOW – SWIPE EFFECT */
/* ============================= */

.hero-slideshow {
  position: relative;
  height: 120vh;
  overflow: hidden;
}

/* base slide */
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  transform: translateX(100%);
  transition: transform 0.9s ease;
  will-change: transform;
}

/* visible slide */
.hero-slideshow .slide.active {
  transform: translateX(0);
  z-index: 2;
}

/* slide leaving to the left */
.hero-slideshow .slide.exit-left {
  transform: translateX(-100%);
  z-index: 1;
}

/* BACK IMAGE – fills sides */
.hero-slideshow .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* FRONT IMAGE – full photo */
.hero-slideshow .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* text overlay */
.hero-overlay {
  position: relative;
  z-index: 5;
  height: 100%;
  background: rgba(0,0,0,0.30);
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-slideshow h1,
.hero-slideshow p {
  color: #fff;
}
/* Hero buttons – force white text */
.hero-slideshow .btn {
  color: #ffffff;
}

/* Outline button visible on dark background */
.hero-slideshow .btn.outline {
  color: #ffffff;
  border-color: #ffffff;
}

/* Optional hover polish */
.hero-slideshow .btn.outline:hover {
  background: rgba(255,255,255,0.15);
}
.room-img{
  width: 100%;
  height: 220px;        /* you can increase if needed */
  object-fit: contain;  /* ✅ shows full image */
  background: #f4f4f4;  /* fills empty space nicely */
  display: block;
}
.food-img {
  width: 100%;
  height: auto;        /* 🔑 VERY IMPORTANT */
  max-height: 380px;   /* controls size but does NOT crop */
  object-fit: contain;/* shows full image */
  display: block;
  background: #f4f4f4; /* soft fill if needed */
}
.food-img {
  width: 100%;
  height: auto;        /* 🔑 VERY IMPORTANT */
  max-height: 380px;   /* controls size but does NOT crop */
  object-fit: contain;/* shows full image */
  display: block;
  background: #f4f4f4; /* soft fill if needed */
}
.room-img {
  width: 100%;
  height: 300px;          /* 🔑 controls visual size */
  object-fit: contain;    /* ✅ no cropping */
  background: #f4f4f4;    /* soft fill for empty space */
  display: block;
}
 /* Social section wrapper */
.social-section{
  margin-top: 60px;
  padding: 40px 20px;
  text-align: center;
}

.social-title{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 18px;
}

/* icons row */
.social-media{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* base button */
.social-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0,0,0,.18);
  transition: transform .2s ease, filter .2s ease;
}

.social-icon i{
  font-size: 24px;
  line-height: 1;
}

/* BRAND-LOOK COLORS (original feel) */
.social-icon.facebook{ background:#1877F2; }
.social-icon.tiktok{ background:#000000; }
.social-icon.whatsapp{ background:#25D366; }

/* Instagram “original” gradient */
.social-icon.instagram{
  background: radial-gradient(circle at 30% 110%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* hover */
.social-icon:hover{
  transform: translateY(-3px);
  filter: brightness(1.05);
}
#airport .container {
  max-width: 760px;   /* 🔥 tighter, elegant width */
  padding-left: 16px;
  padding-right: 16px;
}
.section-actions {
  display: flex;
  justify-content: center;   /* centers horizontally */
  margin-top: 24px;
}
/* ✅ Center cards ONLY in Recreation */
#recreation .grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: center;   /* centers the whole grid */
  gap: 24px;
}
/* ===== MENU PAGE (Restaurant & Bar Menu) ===== */

.menu-hero{
  position: relative;
  height: 52vh;
  min-height: 340px;
  overflow: hidden;
}

.menu-hero__bg{
  position: absolute;
  inset: 0;
  background-image: url("menu/menu-hero.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.menu-hero__title{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 28px 42px;
  box-shadow: 0 18px 40px rgba(0,0,0,.20);
  text-align: center;
}

.menu-hero__title h1{
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  font-weight: 900;
}

.menu-actions{
  padding: 42px 20px 20px;
  display: grid;
  place-items: center;
  gap: 18px;
}

.menu-btn{
  display: inline-block;
  background: #0b5ed7;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 18px 54px;
  border-radius: 2px;
  letter-spacing: .3px;
}

.menu-btn:hover{ filter: brightness(.95); }

.menu-page{
  padding: 20px 0 70px;
}

.menu-block{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  scroll-margin-top: 90px;
}

.menu-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 18px;
}

.menu-big{
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 1px;
}

.menu-sub{
  font-size: 18px;
  font-weight: 800;
  color: #444;
}

.menu-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
}

.menu-col{
  border-radius: 12px;
}

.menu-cat{
  margin: 6px 0 10px;
  font-size: 22px;
  font-weight: 900;
}

.menu-minihead{
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #333;
}

.menu-item{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed #e8e8e8;
}

.menu-item:last-child{ border-bottom: none; }

.menu-name{
  font-weight: 800;
}

.menu-tag{
  font-weight: 700;
  color: #2f5fc2;
  font-size: 12px;
}

.menu-desc{
  color: #444;
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.35;
}

.menu-price{
  font-weight: 900;
  color: #e08a00;
  min-width: 62px;
  text-align: right;
}

@media (max-width: 900px){
  .menu-grid{ grid-template-columns: 1fr; }
  .menu-hero__title{ width: min(92vw, 520px); padding: 22px 18px; }
}
/* MENU banner on top of wallpaper */
.menu-hero.hero-slideshow{
  position: relative;
  height: 60vh;        /* adjust: 50vh / 70vh */
  overflow: hidden;
}

.menu-hero .slide{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.menu-hero .slide.active{ opacity: 1; }

.menu-hero .hero-overlay{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.25); /* dark overlay for readability */
  z-index: 2;
}

.menu-hero-title{
  background: #fff;
  padding: 28px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

.menu-hero-title h1{
  margin: 0;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
}
/* MENU HERO TEXT FIX */
.hero-slideshow.menu-hero .menu-hero-title h1{
  color: #111 !important;   /* make text visible */
}
.hero-slideshow.menu-hero .menu-hero-title{
  min-width: 320px;
}

.hero-slideshow.menu-hero .menu-hero-title h1{
  letter-spacing: 1px;
}
.gallery-img {
  width: 100%;        /* responsive */
  height: auto;       /* keeps original ratio */
  display: block;
  border-radius: 14px;
}
/* ===== MENU PAGE ===== */
.menu-hero{
  position: relative;
  min-height: 70vh;
  display:flex;
  align-items:center;
  background: url("images/menu-bg.jpg") center/cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.menu-hero__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
}
.menu-hero__content{
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 900px;
}
.menu-title{ font-size: clamp(34px, 4vw, 56px); margin: 0 0 10px; }
.menu-sub{ color: rgba(255,255,255,.88); margin: 0 0 6px; }
.menu-note{ color: rgba(255,255,255,.78); margin: 0 0 18px; }

.menu-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 14px; }
.chip{
  display:inline-flex; padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
}
.chip:hover{ background: rgba(255,255,255,.14); }

.menu-section .menu-head{ text-align:center; margin-bottom: 18px; }
.menu-h2{ margin: 0 0 6px; }
.menu-desc{ margin:0; color: rgba(255,255,255,.78); }

.menu-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .menu-grid{ grid-template-columns: 1fr; }
}

.menu-card{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 14px 16px;
}
.menu-row{ display:flex; justify-content:space-between; gap:14px; align-items:flex-start; }
.menu-item__name{ font-weight: 800; }
.menu-item__desc{ color: rgba(255,255,255,.75); font-size: 14px; margin-top: 3px; }
.menu-price{
  font-weight: 900;
  color: #111;
  background: linear-gradient(180deg, rgba(212,160,23,.98), rgba(184,137,16,.98));
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
}

.menu-footer{ padding-top: 20px; }
.menu-contact{
  text-align:center;
  color: rgba(255,255,255,.85);
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 18px;
}
/* ============================
   MOBILE HAMBURGER + DRAWER
   Paste at VERY BOTTOM
   ============================ */

/* Overlay (click outside to close) */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 999;          /* below the drawer */
}

/* Hamburger button base */
.hamburger{
  display: none;         /* hidden on desktop */
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}

.hamburger span{
  display: block;
  height: 3px;
  margin: 6px 0;
 background: #7a1f2b;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Optional: animate into X when open */
.hamburger.is-open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Desktop nav normal */
.nav{
  display: flex;
  align-items: center;
}

/* Mobile drawer */
@media (max-width: 900px){

  /* show hamburger */
  .hamburger{ display: inline-flex; align-items:center; justify-content:center; }

  /* drawer panel */
  .nav{
    position: fixed;
    top: 0;
    right: -320px;              /* hidden */
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    padding: 90px 18px 18px;
    display: flex;              /* IMPORTANT: not none */
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-left: 1px solid #eee;
    z-index: 1000;
    transition: right .25s ease;
  }

  .nav.open{ right: 0; }

  .nav a{
    margin-left: 0;             /* remove desktop spacing */
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
}
/* ===== FORCE HAMBURGER VISIBILITY ===== */

.hamburger{
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2000; /* stay above header */
}

/* The 3 lines */
.hamburger span{
  display: block !important;
  width: 28px !important;
  height: 3px !important;
  margin: 6px auto !important;
  border-radius: 99px;
  background: #7a1f2b !important;  /* MAROON — visible on white */
}
/* FINAL: show hamburger only on mobile */
.hamburger{ display:none !important; }

@media (max-width: 900px){
  .hamburger{ display:inline-flex !important; }
  .hamburger span{ background:#7a1f2b !important; }
}
