/* ============================================
   HOP chafe' — Global Styles
   Emerald Green: #00594D | Gold: #D4AF37 | Beige: #F5F1EB
============================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:  #00594D;
  --green-dark: #003d35;
  --green-light: #006b5c;
  --gold:   #D4AF37;
  --gold-light: #e8c84a;
  --beige:  #F5F1EB;
  --beige-dark: #ece5d8;
  --white:  #ffffff;
  --dark:   #1a1a1a;
  --text:   #3a3a3a;
  --text-light: #6b6b6b;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: 'Lato', sans-serif; }

/* ---- Typography helpers ---- */
.section-eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.section-title span { color: var(--green); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- Layout helpers ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }

/* ---- Gold divider ---- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}
.gold-divider.left { margin-left: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.1rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,89,77,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 24px rgba(0,89,77,0.45);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #c9a42e, var(--gold));
  box-shadow: 0 6px 28px rgba(212,175,55,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(0, 89, 77, 0.97);
  backdrop-filter: blur(16px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
}

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(212,175,55,0.4);
  flex-shrink: 0;
}

.logo-mark span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.logo-mark::after {
  content: '☕';
  position: absolute;
  font-size: 0.55rem;
  bottom: 6px;
  right: 5px;
  opacity: 0.7;
  z-index: 2;
}

.logo-text-block { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2px;
  border: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
}

.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
}

.lang-btn:hover:not(.active) { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.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 */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .lang-toggle { margin-top: 1rem; }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/302899/pexels-photo-302899.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,61,53,0.82) 0%,
    rgba(0,89,77,0.68) 45%,
    rgba(0,40,35,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 820px;
  animation: fadeUp 1.1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: fadeIn 1.3s ease 0.2s both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.3rem;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 1.1s ease 0.15s both;
}

.hero-title .highlight { color: var(--gold); font-style: italic; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  animation: fadeUp 1.1s ease 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.1s ease 0.45s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1s both;
  z-index: 1;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ---- About Section ---- */
.about-section { background: var(--beige); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-main:hover img { transform: scale(1.04); }

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,89,77,0.35);
  border: 4px solid var(--white);
}

.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  opacity: 0.9;
}

.about-text { padding-left: 1rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,89,77,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--green);
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.feature-desc { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* ---- Menu Preview ---- */
.menu-preview { background: var(--white); }

.menu-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.menu-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow);
  group: true;
}

.menu-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-cat-card:hover .menu-cat-img { transform: scale(1.08); }

.menu-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,61,53,0.88) 0%, rgba(0,61,53,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}
.menu-cat-card:hover .menu-cat-overlay {
  background: linear-gradient(to top, rgba(0,61,53,0.95) 0%, rgba(0,61,53,0.4) 60%, rgba(0,61,53,0.1) 100%);
}

.menu-cat-icon { font-size: 2rem; margin-bottom: 0.5rem; color: var(--gold); }
.menu-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.menu-cat-count { font-size: 0.8rem; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; }

.menu-cat-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: var(--transition);
}
.menu-cat-card:hover .menu-cat-arrow { opacity: 1; transform: translateY(0); }

.menu-cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Accommodation Preview ---- */
.accommodation-preview { background: var(--beige); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.room-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-info { padding: 1.5rem; }

.room-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.room-desc { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; line-height: 1.6; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(0,89,77,0.06);
  color: var(--green);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.77rem;
  font-weight: 700;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--beige-dark);
}

.room-price { font-family: 'Playfair Display', serif; }
.room-price-label { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.room-price-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}
.room-price-num span { font-size: 0.8rem; color: var(--text-light); font-family: 'Lato', sans-serif; }

/* ---- Reviews ---- */
.reviews-section { background: var(--green-dark); overflow: hidden; }
.reviews-section .section-title { color: var(--white); }
.reviews-section .section-subtitle { color: rgba(255,255,255,0.7); }

.reviews-carousel {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.review-slide {
  min-width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  max-width: 680px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
}

.review-quote-icon {
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 1rem;
  left: 1.8rem;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.2rem;
}
.review-stars i { color: var(--gold); font-size: 1.1rem; }

.review-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.review-author-origin { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---- Location Section ---- */
.location-section { background: var(--white); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.location-info { padding-right: 1rem; }

.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: var(--beige);
  border-radius: var(--radius);
}
.location-detail:first-of-type { margin-top: 2rem; }

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.location-detail-title { font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; font-size: 0.95rem; }
.location-detail-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- Contact/Booking Section ---- */
.contact-section { background: var(--beige); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-group {
  margin-top: 1.3rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--beige);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,89,77,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit { margin-top: 1.8rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }

.contact-info { padding-top: 1rem; }

.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.contact-method:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.contact-method-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--white);
}
.icon-phone { background: var(--green); }
.icon-whatsapp { background: #25D366; }
.icon-email { background: #EA4335; }
.icon-insta { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }

.contact-method-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; text-transform: uppercase; }
.contact-method-value { font-weight: 700; color: var(--dark); font-size: 0.95rem; }

/* ---- Footer ---- */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
}

.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; max-width: 260px; }

.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.88rem;
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.newsletter-form .btn { justify-content: center; font-size: 0.82rem; padding: 0.75rem 1.5rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,61,53,0.8), rgba(0,89,77,0.6));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.7rem;
}
.page-hero-content .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--gold); font-size: 1.1rem; }

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .lang-toggle { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-text { padding-left: 0; }
  .about-badge { right: 1rem; }

  .menu-categories { grid-template-columns: repeat(2, 1fr); }

  .rooms-grid { grid-template-columns: repeat(2, 1fr); }

  .location-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2.1rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .menu-categories { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .review-card { padding: 2rem 1.5rem; }
  .contact-grid { gap: 2rem; }
  .booking-form { padding: 1.8rem 1.5rem; }
  .about-badge { width: 90px; height: 90px; }
  .about-badge-num { font-size: 1.5rem; }
}
