:root {
  --kt-brown-dark: #3d2a1c;
  --kt-brown: #7a4a2b;
  --kt-gold: #c8952f;
  --kt-gold-light: #e0b558;
  --kt-green: #3f5c3f;
  --kt-cream: #fbf7f0;
  --kt-text: #2b2620;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--kt-text);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--kt-brown-dark);
}

a { text-decoration: none; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-cream { background: var(--kt-cream); }

.section-label {
  color: var(--kt-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: .85rem;
}

.section-title { margin-bottom: 1rem; }

/* Buttons */
.btn-book, .btn-gold {
  background: linear-gradient(135deg, var(--kt-gold), var(--kt-gold-light));
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: .55rem 1.4rem;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-book:hover, .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(200,149,47,.35);
  color: #fff;
}
.btn-outline-kt {
  border: 2px solid var(--kt-brown);
  color: var(--kt-brown);
  border-radius: 6px;
  font-weight: 600;
  padding: .5rem 1.3rem;
  background: transparent;
}
.btn-outline-kt:hover { background: var(--kt-brown); color: #fff; }

/* Topbar */
.topbar {
  background: var(--kt-brown-dark);
  color: #f1e6d6;
  font-size: .85rem;
  padding: .45rem 0;
}
.topbar a { color: #f1e6d6; margin-right: 1.25rem; }
.topbar a:hover { color: var(--kt-gold-light); }
.topbar-social a { margin-right: 0; margin-left: .9rem; font-size: 1rem; }

/* Navbar */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: .6rem 0;
}
.main-nav .nav-link {
  color: var(--kt-text);
  font-weight: 500;
  margin: 0 .4rem;
  position: relative;
}
.main-nav .nav-link.active, .main-nav .nav-link:hover { color: var(--kt-gold); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,8,.55), rgba(20,14,8,.75));
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: 3rem; }
.hero p.lead { color: #f1e6d6; }

.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(20,14,8,.65);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }

/* Stats */
.stats-section { background: var(--kt-brown-dark); color: #fff; }
.stat-item { text-align: center; padding: 1rem; }
.stat-number { font-family: var(--font-heading); font-size: 2.75rem; color: var(--kt-gold-light); font-weight: 700; }
.stat-label { text-transform: uppercase; letter-spacing: 1px; font-size: .85rem; color: #e6d9c4; }

/* Cards */
.kt-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
  background: #fff;
}
.kt-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,.13); }
.kt-card img { height: 230px; object-fit: cover; width: 100%; }
.kt-card .kt-card-body { padding: 1.4rem; }
.kt-price { color: var(--kt-gold); font-weight: 700; font-size: 1.15rem; }

.service-icon-card {
  border-radius: 12px;
  padding: 2rem 1.5rem;
  background: var(--kt-cream);
  height: 100%;
  text-align: center;
  transition: transform .2s ease;
}
.service-icon-card:hover { transform: translateY(-4px); }
.service-icon-card .icon {
  width: 64px; height: 64px; line-height: 64px;
  border-radius: 50%;
  background: var(--kt-brown-dark);
  color: var(--kt-gold-light);
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}

/* Team */
.team-card { text-align: center; }
.team-card img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 12px;
}
.team-card h5 { margin-top: 1rem; margin-bottom: .1rem; }
.team-card .position { color: var(--kt-gold); font-weight: 600; font-size: .9rem; }

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.07);
  text-align: center;
  margin: 1rem;
}
.testimonial-card img { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; }
.testimonial-card .rating { color: var(--kt-gold); margin-bottom: .6rem; }
.testimonial-card .guest-name { font-weight: 600; color: var(--kt-brown-dark); }

/* Gallery */
.gallery-filters { text-align: center; margin-bottom: 2rem; }
.gallery-filters button {
  border: 1px solid var(--kt-brown);
  background: transparent;
  color: var(--kt-brown);
  padding: .4rem 1.1rem;
  border-radius: 30px;
  margin: .25rem;
  font-size: .9rem;
  font-weight: 500;
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--kt-brown); color: #fff; }
.gallery-item { border-radius: 10px; overflow: hidden; margin-bottom: 1.2rem; display: block; position: relative; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65), transparent);
  color: #fff; padding: .8rem; font-size: .85rem; opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .caption { opacity: 1; }

/* Story */
.story-quote {
  border-left: 4px solid var(--kt-gold);
  padding-left: 1.2rem;
  font-style: italic;
  color: var(--kt-brown);
}

/* Forms */
.kt-form-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 34px rgba(0,0,0,.08);
  padding: 2.2rem;
}
.form-label { font-weight: 500; }
.form-control, .form-select {
  border-radius: 8px;
  padding: .6rem .8rem;
  border: 1px solid #ddd2c2;
}
.form-control:focus, .form-select:focus {
  border-color: var(--kt-gold);
  box-shadow: 0 0 0 .2rem rgba(200,149,47,.15);
}

/* FAQ */
.accordion-button:not(.collapsed) {
  background: var(--kt-cream);
  color: var(--kt-brown-dark);
}
.accordion-button:focus { box-shadow: none; }

/* Map */
.map-embed iframe { width: 100%; height: 400px; border: 0; border-radius: 12px; }

/* Footer */
.site-footer { background: var(--kt-brown-dark); color: #e6d9c4; padding: 4rem 0 0; }
.site-footer h5 { color: #fff; margin-bottom: 1.1rem; }
.site-footer p { color: #cbb999; }
.site-footer hr { border-color: rgba(255,255,255,.12); margin-top: 2.5rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #cbb999; }
.footer-links a:hover { color: var(--kt-gold-light); }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #fff; margin-right: .5rem;
}
.footer-social a:hover { background: var(--kt-gold); }

/* Offers */
.offer-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--kt-gold); color: #fff;
  padding: .3rem .8rem; border-radius: 20px; font-size: .8rem; font-weight: 600;
}

@media (max-width: 991px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { min-height: 70vh; }
}

@media (max-width: 767px) {
  .section { padding: 3rem 0; }
  .section-sm { padding: 2rem 0; }
  .kt-form-card { padding: 1.5rem; }
  .map-embed iframe { height: 280px; }
  .gallery-item img { height: 160px; }
  .kt-card img { height: 190px; }
  .team-card img { height: 150px; }
  .testimonial-card { padding: 1.5rem; margin: .5rem; }
  .service-icon-card { padding: 1.5rem 1.2rem; }
  .stat-number { font-size: 2.1rem; }
  .hero h1 { font-size: 1.9rem; }
  .page-hero { min-height: 32vh; }
  .page-hero h1 { font-size: 1.8rem; }
}
