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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: #3a3a3a;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: #cd9e64;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #a67a3c;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #3a3a3a;
  line-height: 1.3;
}

/* ===== Top Bar ===== */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar .address {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.top-bar .address:hover {
  color: #3a3a3a;
}

.top-bar .address .icon {
  color: #cd9e64;
  margin-right: 6px;
}

.logo {
  text-align: center;
}

.logo img {
  height: 70px;
  margin: 0 auto;
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  color: #3a3a3a;
  text-decoration: none;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 18px;
  color: #cd9e64;
}

.lang-switch {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-switch:hover {
  color: #3a3a3a;
}

.lang-switch img {
  width: 22px;
  height: 15px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.btn-book {
  display: inline-block;
  background: #cd9e64;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.btn-book:hover {
  background: #b8854a;
  color: #fff;
}

/* ===== Promo Banner ===== */
.promo-banner {
  background: #5c9201;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 15px;
  line-height: 1.5;
}

.promo-banner a {
  color: #fff;
  text-decoration: underline;
}

.promo-banner a:hover {
  color: #e0e0e0;
}

/* ===== Navigation ===== */
.main-nav {
  background: #edbf88;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  display: block;
  padding: 16px 28px;
  color: #5a3e28;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.3);
  color: #3a2510;
}


/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #5a3e28;
  cursor: pointer;
  padding: 14px 20px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 280px;
  background: url('../images/hero.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.hero-placeholder {
  background: linear-gradient(135deg, #5a3e28 0%, #8b6a4a 50%, #cd9e64 100%);
}

/* ===== Container ===== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Section ===== */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 8px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #cd9e64;
  margin-top: 12px;
  margin-bottom: 30px;
}

.section-subtitle {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #5a3e28;
}

.section-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #cd9e64;
  margin-top: 8px;
}

.section-intro {
  margin-bottom: 20px;
  color: #666;
}

/* ===== Service Cards (Homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.service-card {
  background: #fdf8f2;
  border-radius: 6px;
  padding: 30px 24px;
  border: 1px solid #f0e4d4;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(205, 158, 100, 0.15);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #5a3e28;
}

.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 14px;
}

.service-card .price-hint {
  font-size: 14px;
  color: #cd9e64;
  font-weight: 600;
}

/* ===== Pricelist ===== */
.price-note {
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
}

.price-highlight {
  color: #b8432f;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 30px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table tr {
  border-bottom: 1px solid #f0e4d4;
}

.price-table tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 20px 0;
  vertical-align: top;
}

.price-table td:first-child {
  width: 60%;
  padding-right: 20px;
}

.price-table td:last-child {
  width: 40%;
  text-align: right;
  white-space: nowrap;
}

.price-table .service-name {
  font-weight: 700;
  font-size: 17px;
  color: #3a3a3a;
  margin-bottom: 6px;
}

.price-table .service-desc {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

.price-line {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.price-old {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 6px;
}

.price-new {
  color: #b8432f;
  font-weight: 600;
}

.price-regular {
  font-weight: 600;
  color: #3a3a3a;
}

.price-duration {
  color: #888;
  font-size: 13px;
}

/* ===== Cancellation Notice ===== */
.cancellation-notice {
  background: #fdf8f2;
  border-left: 4px solid #cd9e64;
  padding: 20px 24px;
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

.cancellation-notice strong {
  color: #3a3a3a;
}

/* ===== References ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.review-card {
  background: #fdf8f2;
  border-radius: 6px;
  padding: 28px 24px;
  border: 1px solid #f0e4d4;
}

.review-card .stars {
  color: #cd9e64;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-card blockquote {
  font-style: italic;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-card .reviewer {
  font-weight: 700;
  color: #5a3e28;
  font-size: 14px;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #5a3e28;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
}

.contact-info .label {
  font-weight: 700;
  color: #3a3a3a;
  display: inline-block;
  min-width: 70px;
}

.contact-map {
  border-radius: 6px;
  overflow: hidden;
  min-height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
}

.transport-info {
  margin-top: 40px;
}

.transport-info h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: #5a3e28;
}

.transport-info ul {
  list-style: none;
  padding: 0;
}

.transport-info li {
  padding: 8px 0;
  font-size: 15px;
  color: #555;
  border-bottom: 1px solid #f0e4d4;
}

.transport-info li:last-child {
  border-bottom: none;
}

.transport-info li strong {
  color: #3a3a3a;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: #5a3e28;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta-banner h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-banner .btn-book {
  font-size: 16px;
  padding: 14px 36px;
}

/* ===== Footer ===== */
.footer {
  background: #3a2510;
  color: #bbb;
  text-align: center;
  padding: 30px 20px;
  font-size: 13px;
}

.footer a {
  color: #cd9e64;
}

.footer a:hover {
  color: #edbf88;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
  }

  .top-bar .address {
    order: 2;
  }

  .top-bar .btn-book {
    order: 3;
    padding: 10px 20px;
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
  }

  .main-nav ul.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero {
    height: 220px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .price-table td:first-child {
    width: 55%;
  }

  .price-table td:last-child {
    width: 45%;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .price-table td {
    display: block;
    width: 100% !important;
    text-align: left !important;
    padding: 0;
  }

  .price-table td:first-child {
    padding-top: 16px;
    padding-bottom: 8px;
  }

  .price-table td:last-child {
    padding-bottom: 16px;
  }

  .price-table tr {
    border-bottom: 1px solid #f0e4d4;
  }
}
