/* ---------- GOOGLE FONTS ---------- */
/* Put this in your HTML <head> as shown below; kept here just for reference:
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Lato:wght@300;400;500&display=swap" rel="stylesheet">
*/

/* ---------- ROOT + RESET ---------- */
:root {
  --color-bg: #FFFDF8;          /* off white */
  --color-accent: #E4B165;      /* golden glow */
  --color-accent-dark: #C17B52; /* terracotta */
  --color-text: #4B3326;        /* rich brown */
  --color-muted: #F3E2D2;
  --color-border: #E2D2C2;
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
  --radius-lg: 18px;
  --radius-md: 12px;
}

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

body {
  margin: 0;
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
}

/* ---------- GLOBAL LAYOUT ---------- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

@media (min-width: 900px) {
  .page-inner {
    padding: 4rem 1.5rem 5rem;
  }
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

/* ---------- HEADER / NAV ---------- */
.brand-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
}

@media (max-width: 720px) {
  .brand-logo {
    height: 48px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 210, 194, 0.7);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-links a.active {
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.2rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    padding: 1rem 1.5rem 1.25rem;
    box-shadow: var(--shadow-soft);
    border-radius: 0 0 0 18px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #3a2717;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--color-accent-dark);
  color: #fffaf3;
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
}

/* ---------- HERO (single image version) ---------- */
.hero {
  position: relative;
  height: min(75vh, 550px);
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1; /* always visible */
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35)
  );
  color: #ffffff;
}

.hero-content {
  max-width: 780px;
  text-align: center;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  margin-bottom: 0.8rem;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 540px;
  margin: 0 auto 1.4rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Make hero text white */
.hero-title,
.hero-subtitle,
.hero-kicker {
  color: #ffffff !important;
}

/* ---------- RESET STORY TEXT COLOR (FIX FOR INVISIBLE TEXT) ---------- */
.story-section,
.story-section h2,
.story-section p {
  color: var(--color-text) !important;
}

/* ---------- HOME STORY SECTION ---------- */
.story-section {
  background: radial-gradient(circle at top left, #f8e8d8, #fffdf8);
}

.story-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
}

.story-heading {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: #a57a58;
  margin-bottom: 0.8rem;
}

.story-text {
  font-size: 0.98rem;
}

.story-text p {
  text-indent: 1.3em;
}

/* ---------- FEATURED GALLERIES ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.78rem;
  color: #a57a58;
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.3rem;
}

@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #000;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, opacity 0.7s ease;
  opacity: 0.9;
}

.gallery-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 3, 0, 0.9), rgba(8, 3, 0, 0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.3rem;
  color: #fffaf3;
}

.gallery-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.gallery-card-sub {
  font-size: 0.85rem;
  opacity: 0.92;
}

/* ---------- SERVICES ---------- */
.service-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .service-layout {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.service-grid {
  display: grid;
  gap: 1.4rem;
}

.service-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.5rem 1.6rem;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: var(--shadow-soft);
}

.service-tagline {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #8b6242;
}

.service-price {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-meta {
  font-size: 0.9rem;
  color: #6c5240;
}

/* ---------- GALLERY PAGE DETAIL SECTIONS ---------- */
.gallery-section {
  margin-bottom: 3.5rem;
}

.gallery-section h2 {
  margin-bottom: 0.5rem;
}

.gallery-section p {
  font-size: 0.95rem;
  max-width: 560px;
}

/* unified gallery grid */
.gallery-strip {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.4rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 600px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* square images */
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* center the "Book Now" button under each gallery */
.gallery-cta {
  margin-top: 1.5rem;
  text-align: center;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    align-items: start;
  }
}

.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 1.7rem 1.7rem 1.9rem;
  background-color: #fffaf3;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

input,
textarea,
select {
  font-family: inherit;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  background-color: #fffdf8;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

/* ---------- TESTIMONIALS + FOOTER ---------- */
.footer {
  border-top: 1px solid var(--color-border);
  background: #fdf4e6;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.3rem 1.5rem 2rem;
}

.testimonials {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

@media (min-width: 900px) {
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.testimonial-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 174, 142, 0.7);
  padding: 1.3rem 1.3rem 1.1rem;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  font-size: 0.9rem;
}

.testimonial-card p {
  margin-bottom: 0.6rem;
}

.testimonial-name {
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #8a5a3d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93725b;
}
/* --- FORCE HERO TEXT WHITE --- */
.hero-title,
.hero-subtitle,
.hero-kicker,
.hero-content,
.hero-content p,
.hero-content h1,
.hero-content h2 {
  color: #ffffff !important;
}
