:root {
  --bg: #ffffff;
  --ink: #141414;
  --muted: #6f6f6f;
  --line: rgba(0, 0, 0, 0.12);

  --serif: "Playfair Display", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --container: 1100px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------------- NAV ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

/* LOGO FIX */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 74px;
}

.brand-logo {
  height: 34px;      /* change if you want bigger/smaller */
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links a {
  opacity: 0.75;
  transition: opacity 180ms ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links .is-active { opacity: 1; }

.lang {
  justify-self: end;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}
.lang:hover { opacity: 1; }

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #111;
  margin: 5px 0;
  border-radius: 2px;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 14px 24px 22px;
  background: rgba(255,255,255,0.95);
}

.mobile-menu[hidden] { display: none; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  opacity: 0.8;
}
.mobile-menu a.is-active { opacity: 1; }

.lang-mobile {
  margin-top: 6px;
  opacity: 0.9;
}

/* ---------------- HERO ---------------- */
.hero {

  min-height: 86vh;
  overflow: hidden;
  padding-bottom: 90px; /* space for booking overlap */
  isolation: isolate;   
z-index: 10;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.55)),
    url("./assets/qendrobg1.png") center/cover no-repeat;
  transform: scale(1.02);
}

/* Hero overlay */
.hero-overlay {
  position: relative;
  z-index: 1;
  height: 86vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 28px;
  color: #fff;

  /* prevents overlay from blocking booking clicks if overlapping */
  pointer-events: none;
}

.hero-kicker {
  font-family: var(--sans);
  letter-spacing: 0.28em;
  font-size: 12px;
  margin: 0 0 10px;
  opacity: 0.9;
}

/* If you use logo image inside H1 */
.hero-title {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hero logo sizing */
.hero-logo {
  width: min(520px, 78vw);
  height: auto;
  display: block;
}

.hero-caption {
  font-family: var(--sans);
  font-size: 13px;
  opacity: 0.85;
  margin: 10px 0 0;
}

/* ---------------- BOOKING BAR ---------------- */
.booking {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: 999;

  width: min(980px, calc(100% - 48px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0,0,0,0.18);

  pointer-events: auto;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 1fr;
  gap: 0;
  align-items: stretch;
}

.field {
  padding: 14px 16px 16px;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
}

.field-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select {
  font-family: var(--sans);
  border: 0;
  outline: none;
  font-size: 16px;
  padding: 4px 0;
  background: transparent;
}

.btn {
  border: 0;
  background: #111;
  color: #fff;
  font-family: var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 18px 16px;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px); opacity: 0.9; }

/* ---------------- FEATURE ---------------- */
.feature {
  padding: 70px 0 28px; 
  position: relative;
  z-index: 999;
}

.feature-grid {

  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.feature-left {
  position: relative;

   background:
    linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.05)),
    url("./assets/room.jpg") center/cover no-repeat;
}

.feature-panel {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 28px;
  max-width: 420px;
  margin-top: 28px;
}

.feature-panel h2 {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 10px;
}
.feature-panel p {
  font-family: var(--sans);
  opacity: 0.9;
  margin: 0 0 18px;
  line-height: 1.55;
}

.btn-ghost {
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-left::before {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 14px;
}



/* ---------------- AMENITIES ---------------- */
.amenities {
  padding: 36px 0 54px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}

.amenity {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px 10px;
}

.amenity-icon {
  width: 48px;
  line-height: 1;
  margin-bottom: 10px;
    font-size: 42px;
    color: rgba(0,0,0,0.75);
}

.amenity-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

.amenities-text {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--sans);
  color: #2b2b2b;
  line-height: 1.75;
  font-size: 14px;
}
.amenities-text p { margin: 12px 0; }

/* ---------------- IMAGE BLOCK ---------------- */
/* ---------------- SPLIT IMAGE BLOCK ---------------- */


.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 360px;
}

/* shared image styles */
.image-tile {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* LEFT IMAGE */
.image-story {
  background-image: url("./assets/story.jpeg"); /* receptionist image */
}

/* RIGHT IMAGE */
.image-nearby {
  background-image: url("./assets/nearby.jpeg"); /* nature image */
}

/* overlay text */
.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.1)
  );
}

.image-overlay h3 {
  font-family: var(--serif);
  font-size: 38px;
  color: #fff;
  margin: 0;
}

/* subtle hover (optional but nice) */
.image-tile:hover {
  filter: brightness(1.05);
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 280px;
  }

  .image-overlay h3 {
    font-size: 30px;
  }
}


/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links, .lang { display: none; }
  .nav-toggle { display: inline-block; }

  .booking { bottom: -50px; }
  .booking-grid { grid-template-columns: 1fr; }
  .field { border-right: 0; border-bottom: 1px solid var(--line); }
  .btn { width: 100%; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-panel { max-width: none; }
  .feature-left::before { min-height: 360px; }
}

@media (max-width: 520px) {
  .container { width: calc(100% - 28px); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-overlay { height: 82vh; }

  .brand-logo { height: 28px; }
  .hero-logo { width: min(420px, 86vw); }
}
/* ---------------- FOOTER ---------------- */
.site-footer {
  background: #a13d34;
  color: #e6e6e6;
  padding: 70px 0 0;
  font-family: var(--sans);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 14px;
  filter: drop-shadow(2px -9px 9px #f4b6b0 );
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: #bdbdbd;
  max-width: 260px;
}

.site-footer h4 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: #bdbdbd;
  margin-bottom: 8px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 13px;
  margin: 0 0 10px;
  color: #bdbdbd;
}

.footer-contact i {
  margin-right: 8px;
  opacity: 0.85;
}

.footer-social .social-icons {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 160ms ease, transform 160ms ease;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: #9a9a9a;
}

/* ---------------- FOOTER RESPONSIVE ---------------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
