/* =============================================
   ANDATEL GRANDE PATONG PHUKET — GLOBAL STYLES
   ============================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:   #1F3A52;
  --secondary: #E8DCC4;
  --accent:    #00AAFF;
  --bg:        #FFFFFF;
  --fg:        #1F2849;
  --muted:     #E8EEF5;
  --border:    #E8EBF0;
  --font-sans: 'Lato', sans-serif;
  --font-serif:'Playfair Display', Georgia, serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--fg); background: var(--bg); line-height: 1.7; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); line-height: 1.25; }
.serif { font-family: var(--font-serif); }
.sans  { font-family: var(--font-sans); }

/* ---------- Utility ---------- */
.container     { max-width: 1008px; margin: 0 auto; padding: 0 24px; }
.text-accent   { color: var(--accent); }
.text-primary  { color: var(--primary); }
.text-white    { color: #fff; }
.text-center   { text-align: center; }
.uppercase     { text-transform: uppercase; letter-spacing: 0.12em; }
.italic        { font-style: italic; }
.fw-300        { font-weight: 300; }
.fw-700        { font-weight: 700; }

/* Section spacing */
.section       { padding: 80px 0; }
.section-sm    { padding: 48px 0; }

/* Decorative rule */
.deco-line {
  width: 60px; height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
}
.deco-line-left { margin: 0 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: #0099ee;
  border-color: #0099ee;
}

/* ---------- TOP BAR ---------- */
.top-bar {
  background: #0a1e2e;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 0;
  position: relative;
  z-index: 9999;
  min-height: 40px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  height: 40px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar a:hover { color: var(--accent); }
.top-bar span { color: rgba(255,255,255,0.7); }

/* ---------- NAVIGATION ---------- */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(31,58,82,0.08);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 8px 12px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent); }
.nav-links .btn-primary { padding: 10px 24px; }
.nav-links .btn-primary::after { display: none; }
.nav-links .btn-accent { padding: 10px 24px; color: #fff; }
.nav-links .btn-accent::after { display: none; }

/* Language selector */
.lang-selector { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--accent); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #0a1e2e;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  min-width: 160px;
  z-index: 9999;
}
.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  transition: background 0.15s;
}
.lang-dropdown a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lang-selector:hover .lang-dropdown,
.lang-selector.open .lang-dropdown { display: block; }

/* Nav dropdown submenu (About > Restaurant, Gallery) */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(31,58,82,0.12);
  min-width: 180px;
  z-index: 9999;
}
.nav-submenu a {
  display: block;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.nav-submenu a:last-child { border-bottom: none; }
.nav-submenu a:hover { background: var(--muted); color: var(--accent); }
.nav-submenu a::after { display: none !important; }
.nav-dropdown:hover .nav-submenu,
.nav-dropdown.open .nav-submenu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(31,58,82,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 16px; display: block; text-align: center; }
.mobile-nav .mobile-sub {
  padding-left: 32px;
  font-size: 11px;
  color: #888;
  border-bottom-color: transparent;
}
.mobile-nav .mobile-sub:hover { color: var(--accent); }

/* ---------- PAGE HEADER ---------- */
.page-header {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.35);
  z-index: 1;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-header-content {
  position: relative;
  z-index: 2;
}
.page-header .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,23,42,0.2), rgba(15,23,42,0.72));
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-stars { color: var(--accent); font-size: 22px; margin-bottom: 16px; letter-spacing: 6px; }
.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* Booking widget */
.booking-widget {
  background: rgba(10, 30, 46, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0,170,255,0.25);
  border-top: 3px solid var(--accent);
  padding: 28px 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  max-width: 900px;
  margin: 0 auto;
}
.booking-widget-title {
  width: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.booking-field { flex: 1; min-width: 160px; }
.booking-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.booking-field input,
.booking-field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-bottom: 2px solid rgba(0,170,255,0.4);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  height: 48px;
}
.booking-field input::placeholder { color: rgba(255,255,255,0.45); }
.booking-field input:focus,
.booking-field select:focus {
  border-color: rgba(255,255,255,0.3);
  border-bottom-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.booking-field select option { color: var(--fg); background: #fff; }
.booking-field .btn {
  width: 100%;
  height: 48px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  white-space: nowrap;
  letter-spacing: 0.15em;
}

/* ---------- INTRO SECTION ---------- */
.intro-section { padding: 80px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--primary);
}
.section-body {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.8;
}
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.info-card {
  border: 1px solid var(--border);
  padding: 20px;
}
.info-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.info-card p { font-size: 13px; color: #666; }

/* Image frame */
.img-frame {
  position: relative;
}
.img-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.img-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 2px solid var(--accent);
  pointer-events: none;
  z-index: -1;
}

/* ---------- ROOMS SHOWCASE ---------- */
.rooms-showcase {
  background: var(--muted);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 24px,
    rgba(0,170,255,0.04) 24px,
    rgba(0,170,255,0.04) 25px
  );
  padding: 80px 0;
}
.rooms-showcase .two-col { gap: 60px; }
.room-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.room-price {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.room-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 16px;
  color: var(--primary);
}
.room-features {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.room-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #555;
}
.room-feature-item .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.view-collection {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.view-collection:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- POOL SECTION ---------- */
.pool-section {
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.pool-icon { display: none; }
.pool-section .section-label { color: rgba(255,255,255,0.6); }
.pool-section .section-title { color: #fff; }
.pool-section .section-body { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 32px; }
.pool-img-wrap {
  position: relative;
  max-width: 900px;
  margin: 40px auto 0;
  overflow: hidden;
}
.pool-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.pool-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
  padding: 40px 40px 32px;
  text-align: left;
}
.pool-img-overlay h3 { font-size: 1.4rem; margin-bottom: 4px; }
.pool-img-overlay p { font-size: 13px; opacity: 0.7; margin-bottom: 16px; }

/* ---------- SVG ICON ---------- */
.icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(0,170,255,0.1);
  border: 1px solid rgba(0,170,255,0.25);
  border-radius: 0;
  margin-bottom: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.icon-svg svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}
.icon-svg-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-svg-sm svg { width: 14px; height: 14px; stroke: currentColor; }
.pool-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  margin: 0 auto 24px;
  color: var(--accent);
}
.pool-icon-svg svg { width: 36px; height: 36px; stroke: currentColor; }

/* ---------- QUICK INFO GRID ---------- */
.quick-info { padding: 64px 0; }
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.quick-info-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.quick-info-card:last-child { border-right: none; }
.quick-info-card:hover { background: var(--muted); }
.quick-info-card h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.quick-info-card p { font-size: 14px; color: #666; }

/* ---------- FAQ SECTION ---------- */
.faq-section { padding: 80px 0; background: var(--muted); }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--primary);
  text-align: left;
  cursor: pointer;
  gap: 16px;
  background: none;
}
.faq-question .icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: #666;
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- ROOMS PAGE ---------- */
.rooms-list { padding: 80px 0; }
.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.room-card:last-child { margin-bottom: 0; }
.room-card.reverse { direction: rtl; }
.room-card.reverse > * { direction: ltr; }
.room-card .img-frame img { height: 400px; }
.room-size {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.room-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0 24px;
}
.room-tag {
  font-size: 12px;
  background: var(--muted);
  color: var(--primary);
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

/* Experience grid */
.experience-section { background: var(--primary); color: #fff; padding: 80px 0; }
.experience-section .section-label { color: rgba(255,255,255,0.6); }
.experience-section .section-title { color: #fff; }
.experience-section .section-body { color: rgba(255,255,255,0.75); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.experience-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px;
  transition: background 0.2s;
}
.experience-card:hover { background: rgba(255,255,255,0.12); }
.experience-card-icon { font-size: 28px; margin-bottom: 16px; color: var(--accent); }
.experience-card h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.experience-card p { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ---------- RESTAURANT PAGE ---------- */
.restaurant-info { padding: 80px 0; }
.restaurant-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.hours-card {
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.hours-card-icon { font-size: 22px; color: var(--primary); }
.hours-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.hours-card p { font-size: 14px; color: #555; }

/* Menu section */
.menu-section { background: var(--muted); padding: 80px 0; text-align: center; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}
.menu-card {
  background: #fff;
  padding: 36px 28px;
  border: 1px solid var(--border);
  text-align: left;
  transition: box-shadow 0.3s, transform 0.3s;
}
.menu-card:hover {
  box-shadow: 0 12px 40px rgba(31,58,82,0.12);
  transform: translateY(-4px);
}
.menu-card-icon { font-size: 32px; margin-bottom: 16px; }
.menu-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.menu-card p { font-size: 14px; color: #666; }

/* ---------- GALLERY PAGE ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 60px 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.3s;
}
.gallery-item:hover .gallery-overlay { background: rgba(15,23,42,0.4); }
.gallery-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* ---------- ABOUT PAGE ---------- */
.about-content { padding: 80px 0; }
.quote-section { padding: 80px 0; text-align: center; }
.quote-section blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--primary);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.quote-section cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}
.about-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-img-stack img { width: 100%; height: 200px; object-fit: cover; }
.about-stat {
  background: var(--accent);
  color: #fff;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  grid-column: span 2;
}
.about-stat h3 { font-size: 2rem; margin-bottom: 4px; }
.about-stat p { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

/* ---------- CONTACT PAGE ---------- */
.contact-content { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-card {
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}
.contact-card:hover { background: var(--muted); }
.contact-card-icon { font-size: 22px; color: var(--primary); }
.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-card p { font-size: 14px; color: #555; }
.contact-card a { color: #555; transition: color 0.2s; }
.contact-card a:hover { color: var(--accent); }

/* Contact form */
.contact-form-wrap {
  background: var(--muted);
  padding: 40px;
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 14px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); }
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.footer-col p { font-size: 13px; line-height: 1.8; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }

/* Newsletter */
.newsletter-form { display: flex; gap: 0; margin-top: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  color: #fff;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #0099ee; }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- LANGUAGE PLACEHOLDER ---------- */
.lang-placeholder {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.lang-placeholder h1 { font-size: 2rem; margin-bottom: 16px; color: var(--primary); }
.lang-placeholder p { color: #666; max-width: 500px; margin: 0 auto 32px; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 40px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 80vh; }
  .hero-title { font-size: 2.2rem; }
  .booking-widget { padding: 16px; }
  .booking-field { min-width: 100%; }

  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .img-frame::after { display: none; }
  .img-frame img { height: 280px; }

  .quick-info-grid { grid-template-columns: 1fr; border: none; }
  .quick-info-card { border: 1px solid var(--border); border-right: 1px solid var(--border); margin-bottom: 8px; }

  .room-card, .room-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-header { padding: 60px 24px; }
  .section { padding: 60px 0; }

  .experience-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .restaurant-hours { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .rooms-list { padding: 48px 0; }
}

/* =============================================
   ARTICLE PAGES
   ============================================= */

/* Article hero banner */
.article-page-hero {
  background: var(--primary);
  padding: 120px 24px 64px;
  text-align: center;
  color: #fff;
}
.article-breadcrumb {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.article-breadcrumb a { color: var(--accent); }
.article-category-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 24px;
}
.article-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4.5vw, 44px);
  line-height: 1.2;
  max-width: 760px;
  margin: 0 auto 24px;
  color: #fff;
}
.article-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

/* Article body */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--primary);
  margin: 56px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.article-body h2:first-of-type { margin-top: 0; border-top: none; }
.article-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 20px);
  color: var(--primary);
  margin: 32px 0 10px;
}
.article-body p {
  font-size: 16px;
  line-height: 1.85;
  color: #383838;
  margin-bottom: 20px;
}
.article-body a { color: var(--accent); text-decoration: underline; }
.article-body a:hover { color: var(--primary); }

/* Ordered list (numbered activities) */
.article-body .article-ol {
  list-style: none;
  counter-reset: act;
  margin: 8px 0 24px;
}
.article-body .article-ol li {
  counter-increment: act;
  padding: 20px 20px 20px 64px;
  margin-bottom: 16px;
  background: var(--muted);
  position: relative;
  font-size: 15px;
  line-height: 1.75;
  color: #383838;
}
.article-body .article-ol li::before {
  content: counter(act);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-body .article-ol li strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 6px;
}

/* Bullet list */
.article-body .article-ul {
  list-style: none;
  margin: 8px 0 24px;
}
.article-body .article-ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
  color: #383838;
  border-bottom: 1px solid var(--border);
}
.article-body .article-ul li:last-child { border-bottom: none; }
.article-body .article-ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Table of contents */
.toc-box {
  background: var(--muted);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  margin: 0 0 48px;
}
.toc-box .toc-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.toc-box ol {
  list-style: none;
  counter-reset: toc;
  margin: 0;
}
.toc-box ol li {
  counter-increment: toc;
  padding: 5px 0 5px 28px;
  position: relative;
  font-size: 14px;
  border-bottom: none;
}
.toc-box ol li::before {
  content: counter(toc) ".";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.toc-box ol li a { color: var(--primary); text-decoration: none; }
.toc-box ol li a:hover { color: var(--accent); text-decoration: underline; }

/* In-article CTA box */
.article-cta-box {
  background: var(--primary);
  color: #fff;
  padding: 36px 40px;
  margin: 48px 0;
  text-align: center;
}
.article-cta-box h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin: 0 0 12px;
}
.article-cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin: 0 0 24px;
}
.article-cta-box .btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.article-cta-box .btn-accent:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* Tip/info callout */
.article-tip {
  border: 1px solid var(--accent);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  margin: 28px 0;
  background: #f0f9ff;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
.article-tip strong { color: var(--accent); }

/* Article listing page */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.article-card {
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.article-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--muted);
}
.article-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.article-card:hover .article-card-img img { transform: scale(1.05); }
.article-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.article-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px;
}
.article-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.article-card-meta {
  font-size: 11px;
  color: #999;
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.article-card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.article-card-link:hover { color: var(--accent); }

@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; }
  .article-page-hero { padding: 100px 24px 48px; }
  .article-body { padding: 40px 20px 60px; }
  .article-cta-box { padding: 28px 24px; }
  .toc-box { padding: 20px 20px; }
}
