
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@300;400;500&display=swap');

/* ── CSS Variables (consistent colors, fonts, spacing) ── */
:root {
  --bg:        #f7f4ef;
  --surface:   #ffffff;
  --ink:       #1a1714;
  --muted:     #6b6560;
  --accent:    #c8773a;
  --accent2:   #2b4d6f;
  --border:    #e0dbd3;
  --radius:    12px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s ease;
}

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

/* ── Base ── */
html {
  scroll-behavior: smooth; /* smooth scrolling between sections */
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
}

img, video, iframe {
  max-width: 100%; /* responsive images/media */
  display: block;
}

/* ══════════════════════════════════════════
   HEADER / NAVIGATION
══════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;              /* Flexbox layout */
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* Nav links */
nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

/* Underline hover effect */
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

nav ul li a:hover {
  color: var(--ink);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   HERO / HOME SECTION
══════════════════════════════════════════ */
#home {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: flex;              /* Flexbox layout */
  align-items: center;
  gap: 4rem;
}

.hero-text {
  flex: 1;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  flex-shrink: 0;
}

.hero-image img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

/* ══════════════════════════════════════════
   BUTTONS (hover effects)
══════════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #b5662e;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200, 119, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent2);
  border: 1.5px solid var(--accent2);
}

.btn-outline:hover {
  background: var(--accent2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 77, 111, 0.3);
}

/* ══════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════ */
.divider {
  max-width: 1100px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
#about {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

#about h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}

#about p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 1rem;
}

#about strong {
  color: var(--ink);
}

/* ══════════════════════════════════════════
   FOOTER / CONTACT
══════════════════════════════════════════ */
footer {
  background: var(--accent2);
  color: #d6e4f0;
  margin-top: 4rem;
}

#contact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;                                        /* CSS Grid layout */
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

footer h3 {
  font-family: var(--font-head);
  font-size: 1.0rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-details p,
.contact-details a {
  font-size: 0.7rem;
  line-height: 2;
  color: #b8cfe0;
  text-decoration: none;
}

.contact-details a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer nav */
.footer-nav ul {
  list-style: none;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #b8cfe0;
  font-size: 0.7rem;
  line-height: 2;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-nav ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

/* Map */
.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: none;
  border-radius: var(--radius);
  opacity: 0.88;
  transition: opacity var(--transition);
}

.map-wrap iframe:hover {
  opacity: 1;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  color: #7fa3bf;
}

.footer-bottom a img {
  height: 28px;
  width: 28px;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.footer-bottom a:hover img {
  opacity: 1;
  transform: scale(1.15);
}

/* ══════════════════════════════════════════
   MEDIA QUERIES — RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {
  #home {
    gap: 2.5rem;
    padding: 4rem 2rem 3rem;
  }

  .hero-image img {
    width: 200px;
    height: 200px;
  }

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

  .map-wrap {
    grid-column: 1 / -1; /* map spans full width on tablet */
  }
}

/* ── Mobile (≤ 640px) ── */
@media (max-width: 640px) {
  /* Hamburger visible, nav hidden by default */
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(247, 244, 239, 0.97);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  nav.open {
    max-height: 300px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 2rem 1.5rem;
  }

  nav ul li a {
    font-size: 0.7rem;
    display: block;
    padding: 0.5rem 0;
  }

  /* Hero stacks vertically on mobile */
  #home {
    flex-direction: column-reverse;
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2rem;
  }

  .hero-text p {
    margin: 0 auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  /* About section */
  #about {
    padding: 3rem 1.5rem;
  }

  /* Contact grid → single column */
  #contact {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .map-wrap iframe {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }
}
