:root {
  --teal-dark: #122a2a;
  --teal-mid: #1e5f5f;
  --teal-accent: #377e80;
  --teal-light: #59bdb1;
  --cream: #edeee8;
  --cream-dark: #d9dad3;
  --text-dark: #122a2a;
  --text-mid: #2b3535;
  --text-muted: #5a6b6b;
  --white: #fafafa;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 50px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text-mid);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.5px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--cream);
  color: var(--teal-accent);
}
.nav-links a.active {
  font-weight: 600;
}
.nav-auth {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-register,
.btn-login {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-register {
  border: 1.5px solid var(--teal-accent);
  color: var(--teal-accent);
  background: transparent;
}
.btn-register:hover {
  background: var(--teal-accent);
  color: var(--white);
}
.btn-login {
  background: var(--teal-dark);
  color: var(--white);
}
.btn-login:hover {
  background: var(--teal-accent);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  transition: all 0.3s;
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  padding: 16px 24px 24px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.mobile-menu a:hover {
  background: var(--cream);
  color: var(--teal-accent);
}
@media (max-width: 960px) {
  .nav-links,
  .nav-auth {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-container {
    gap: 0;
  }
}

/* HERO */
.hotel-hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, #0b1f1f 0%, #122a2a 45%, #1e5f5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 120px;
  overflow: hidden;
}
.hotel-hero::before {
  content: "🏨";
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  opacity: 0.04;
  pointer-events: none;
}
.hotel-hero-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  background: rgba(89, 189, 177, 0.12);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  border: 1px solid rgba(89, 189, 177, 0.25);
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* SEARCH PANEL */
.search-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.search-fields {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding: 20px;
  flex-wrap: wrap;
}
.field-group {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field-group label i {
  margin-right: 5px;
  color: var(--teal-accent);
}
.field-group input {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  background: var(--cream);
  transition: border-color 0.2s;
}
.field-group input:focus {
  border-color: var(--teal-accent);
  background: var(--white);
}
.search-btn {
  align-self: flex-end;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  padding: 0 28px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-btn:hover {
  background: var(--teal-accent);
}

/* QUICK FILTERS */
.quick-filters {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 24px;
}
.qf {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--cream-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.qf i {
  color: var(--teal-accent);
  font-size: 12px;
}
.qf:hover {
  border-color: var(--teal-accent);
  color: var(--teal-accent);
}
.qf.active {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}
.qf.active i {
  color: var(--teal-light);
}

/* SECTION SHARED */
.section-header {
  text-align: center;
  padding: 56px 24px 32px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-accent);
  margin-bottom: 10px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
}

/* HOTEL GRID */
.destinations-section {
  padding-bottom: 72px;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.hotel-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.hotel-card-media {
  position: relative;
  overflow: hidden;
}
.hotel-card-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s;
}
.hotel-card:hover .hotel-card-media img {
  transform: scale(1.06);
}
.hotel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--teal-accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.hotel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 42, 42, 0.7) 0%,
    transparent 55%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.hotel-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.hotel-price span {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}
.hotel-card-body {
  padding: 20px 22px 22px;
}
.hotel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.hotel-meta span {
  font-size: 13px;
  color: var(--text-muted);
}
.hotel-meta i {
  margin-right: 4px;
  color: var(--teal-accent);
}
.hotel-rating {
  font-weight: 600;
  color: var(--teal-dark) !important;
}
.hotel-rating i {
  color: #f59e0b !important;
}
.hotel-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.hotel-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.hotel-amenities {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hotel-amenities span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hotel-amenities i {
  color: var(--teal-accent);
}
.btn-book {
  width: 100%;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-book:hover {
  background: var(--teal-accent);
}

/* WHY */
.why-section {
  background: var(--white);
  padding-bottom: 72px;
}
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}
.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* TRUST */
.trust-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 36px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.trust-item:last-child {
  border-right: none;
}
.trust-item i {
  font-size: 24px;
  color: var(--teal-light);
}
.trust-item span {
  font-size: 15px;
  font-weight: 600;
}

/* FOOTER */
.site-footer {
  background: #0b1f1f;
  color: rgba(255, 255, 255, 0.75);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 40px 48px;
}
.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}
.footer-social a:hover {
  background: var(--teal-accent);
  border-color: var(--teal-accent);
  color: var(--white);
}
.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-group a:hover {
  color: var(--teal-light);
}
.footer-newsletter h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.newsletter-form button {
  padding: 11px 18px;
  background: var(--teal-accent);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.newsletter-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .fa-heart {
  color: #e74c3c;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--teal-light);
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .hotel-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    padding: 12px 24px;
  }
  .why-card {
    max-width: 100%;
    flex-basis: 100%;
  }
  .search-fields {
    flex-direction: column;
  }
  .search-btn {
    width: 100%;
    height: 44px;
  }
}
@media (max-width: 680px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 32px;
  }
  .footer-brand,
  .footer-newsletter {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 20px 24px;
  }
}
