@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Manrope:wght@400;500;700&display=swap');

:root {
  --bg-top: #fff9f3;
  --bg-mid: #f7eee3;
  --bg-bottom: #f0ddca;
  --panel: #fffefc;
  --line: #d8b898;
  --text: #231b16;
  --brand: #7f2d16;
  --brand-soft: #f6e2cd;
  --accent: #0f766e;
}

* {
  box-sizing: border-box;
}

/* Global page layout and background styling */
body {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 230, 204, 0.6) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 45%, var(--bg-bottom));
}

header,
/*main,*/
footer {
  width: min(1020px, 94vw);
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

header {
  background: linear-gradient(135deg, #fff8f0 0%, #f9e7d4 100%);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 20px rgba(47, 30, 17, 0.08);
}

h1 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--brand);
  text-align: center;
}

.tagline {
  margin: 0.35rem auto 0.95rem;
  text-align: center;
  font-weight: 600;
  max-width: 52ch;
}

/* Shared navigation styles, including current-page state */
nav {
  text-align: center;
}

nav a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
  margin: 0 0.2rem;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

nav .current-page {
  color: #ffffff;
  background: var(--brand);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  text-decoration: none;
}

main {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(35, 27, 22, 0.06);
}

h2,
h3 {
  color: var(--brand);
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 0;
}

/* Reusable page section helpers */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.hero-text {
  background: #fff7ee;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.hero img,
.card img,
.gallery-strip img,
.detail-grid img,
.about-box img {
  width: 100%;
  
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 700;
}

.btn-primary {
  color: #ffffff;
  background: var(--brand);
}

.btn-secondary {
  color: var(--brand);
  border-color: var(--brand);
  background: #fff9f3;
}

.box-cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin: 1rem;
}

.card {
  background: #fff9f3;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
}

.price {
  font-weight: 800;
  color: var(--accent);
}

.gallery-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.box-section-heading {
  grid-column: 1 / -1;
  margin: 0 0 0.2rem;
}

.about-box > .box-section-heading {
  grid-column: 1 / -1;
}

.section-note {
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
}

.video-wrap {
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.video-wrap iframe {
  width: 100%;
}

.detail-grid,
.about-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.list-panel {
  background: #fff7ee;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
}

/* Shared form controls for contact page */
form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;

  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.helper-text {
  font-size: 0.93rem;
}

.form-status {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--accent);
}

ul {
  padding-left: 1.2rem;
}

footer {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff2e2 0%, #f6dfc7 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
}

footer a {
  color: var(--brand);
}

/* Responsive breakpoints for tablet and mobile */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
  }

  nav a {
    margin: 0;
  }

  nav .divider {
    display: none;
  }

}

