/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #fffaf3;
  --color-bg-alt: #f5ede1;
  --color-dark: #1a1410;
  --color-coffee: #3d2817;
  --color-coffee-light: #6b4423;
  --color-accent: #c89656;
  --color-accent-dark: #a87838;
  --color-cream: #f9efe0;
  --color-text: #2a2018;
  --color-muted: #6b5d50;
  --color-line: #e8dccb;
  --color-red: #8e2424;
  --color-red-dark: #6b1818;

  --shadow-sm: 0 2px 10px rgba(58, 40, 23, 0.08);
  --shadow-md: 0 10px 30px rgba(58, 40, 23, 0.12);
  --shadow-lg: 0 20px 50px rgba(58, 40, 23, 0.18);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.accent { color: var(--color-accent-dark); font-style: italic; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 14px;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(142, 36, 36, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--color-red);
  border-bottom-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(142, 36, 36, 0.35);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
  padding: 8px 0;
  transition: var(--transition);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: var(--color-accent); }

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.nav-cta:hover {
  background: #fff;
  color: var(--color-red) !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}
.btn-secondary {
  background: var(--color-coffee);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(135deg, rgba(26, 20, 16, 0.65), rgba(61, 40, 23, 0.55)),
    url('assets/banner1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(200, 150, 86, 0.18), transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  animation: fadeUp 1s ease;
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--color-accent); }
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 620px;
  opacity: 0.92;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-badges {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.badge-item { display: flex; flex-direction: column; gap: 4px; }
.badge-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--color-accent);
  font-weight: 700;
}
.badge-item span { font-size: 0.85rem; opacity: 0.85; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 1.6s ease infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: linear-gradient(135deg, var(--color-coffee), var(--color-dark));
  color: var(--color-cream);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head--light .section-title { color: #fff; }
.section-head--light .eyebrow { color: var(--color-accent); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ============ ABOUT ============ */
.about-image {
  position: relative;
  height: 540px;
}
.image-frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame:first-child {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
}
.image-frame:first-child img { width: 100%; height: 100%; object-fit: cover; }
.image-frame--accent {
  width: 55%;
  height: 50%;
  bottom: 0;
  right: 0;
  border: 8px solid var(--color-bg);
}
.image-frame--accent img { width: 100%; height: 100%; object-fit: cover; }

.about-text p {
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 1.05rem;
}
.check-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.check-list li {
  padding-left: 32px;
  position: relative;
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px; height: 22px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--color-line);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
  width: 70px; height: 70px;
  line-height: 70px;
  background: var(--color-cream);
  border-radius: 50%;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--color-accent);
  transform: rotate(-5deg) scale(1.05);
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* ============ ROOMS ============ */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.room-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.room-img {
  height: 250px;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.08); }
.room-body { padding: 28px; }
.room-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.room-body p {
  color: var(--color-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.room-cta {
  display: inline-flex;
  color: var(--color-accent-dark);
  font-weight: 600;
  position: relative;
  transition: var(--transition);
}
.room-cta:hover { gap: 8px; color: var(--color-coffee); }

/* ============ ATTRACTIONS ============ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.attraction {
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 150, 86, 0.25);
  transition: var(--transition);
}
.attraction:hover {
  background: rgba(200, 150, 86, 0.12);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}
.attraction h4 {
  color: var(--color-cream);
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.attraction span {
  color: var(--color-accent);
  font-size: 0.85rem;
}

/* ============ MAP ============ */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #fff;
}
.map-wrapper iframe { display: block; }
.map-cta {
  text-align: center;
  margin-top: 30px;
}

/* ============ CONTACT ============ */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  box-shadow: var(--shadow-lg);
}
.contact-info { padding: 60px 50px; }
.contact-info p {
  color: var(--color-muted);
  margin-bottom: 30px;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.contact-list span {
  width: 42px; height: 42px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-action {
  background: linear-gradient(135deg, var(--color-coffee), var(--color-dark));
  color: #fff;
  display: flex;
  align-items: center;
  padding: 40px;
}
.contact-action-inner { width: 100%; text-align: center; }
.contact-action h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.contact-action p {
  opacity: 0.85;
  margin-bottom: 28px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-dark);
  color: #c9bfb1;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer ul { display: grid; gap: 10px; }
.footer ul a { transition: var(--transition); font-size: 0.92rem; }
.footer ul a:hover { color: var(--color-accent); }
.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #7a6f60;
}

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 50px; }
  .about-image { height: 420px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-info { padding: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .brand-name { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--color-red);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a { padding: 14px 20px; }
  .nav-links .nav-cta { text-align: center; margin-top: 8px; }

  .hero { background-attachment: scroll; padding: 120px 0 80px; min-height: auto; }
  .hero-badges { gap: 28px; }
  .badge-item strong { font-size: 1.5rem; }

  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }

  .hero-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 28px; height: 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .image-frame:first-child { width: 85%; height: 75%; }
  .image-frame--accent { width: 50%; height: 45%; }
}
