@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Open+Sans:wght@400;600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #333;
  background: #f0ece8;
}

/* ── Header ── */
.site-header {
  position: relative;
  height: 160px;
  background-color: #5a2e10;
  background-image: url('images/header-bg.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.35));
}

.site-title {
  position: relative;
  z-index: 1;
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  text-align: center;
  padding: 0 1rem;
}

/* ── Navigation ── */
nav {
  background-color: #7a3e1a;
  position: relative;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

nav ul li a {
  display: block;
  padding: 0.75rem 2rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #5a2e10;
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-toggle {
  display: none;
}

/* ── Mobile nav ── */
@media (max-width: 600px) {
  .site-title {
    font-size: 2rem;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    letter-spacing: 0.05em;
  }

  .nav-toggle:hover {
    background-color: #5a2e10;
  }

  nav ul {
    display: none;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.15);
  }

  nav.open ul {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    padding: 0.85rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  nav ul li:last-child a {
    border-bottom: none;
  }

  .container {
    padding: 1.5rem 1rem;
  }
}

/* ── Main content ── */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: #fff;
  min-height: calc(100vh - 230px);
}

.container h1 {
  font-size: 1.6rem;
  color: #5a2e10;
  margin-bottom: 1rem;
}

.container h2 {
  font-size: 1.2rem;
  color: #5a2e10;
  margin: 1.5rem 0 0.5rem;
}

.container p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #444;
}

.container a {
  color: #7a3e1a;
}

.container a:hover {
  text-decoration: underline;
}

.container a.btn {
  color: #fff;
}

/* ── Pricing table ── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}

.pricing-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e8ddd5;
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

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

.pricing-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.5rem;
}

/* ── Booking section ── */
.location-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8ddd5;
}

.location-block:last-child {
  border-bottom: none;
}

.address {
  font-style: normal;
  line-height: 1.7;
  margin: 0.5rem 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background-color: #5a2e10;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}

.btn:hover {
  background-color: #7a3e1a;
  color: #fff;
}

.office-photo {
  max-width: 100%;
  width: 400px;
  margin: 1rem 0;
  border: 1px solid #ddd;
}

/* ── Footer ── */
footer {
  background-color: #2c1a0e;
  color: #bbb;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}
