/* =========================
   CSS RESET / BASE
   ========================= */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cta-color: #2f6f62;
}


/* Remove default margin */
* {
  margin: 0;
}

/* Set core body defaults */
html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  color: #222;
  background-color: #fff;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements inherit font */
input,
button,
textarea,
select {
  font: inherit;
}

/* Avoid text overflow */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
   font-weight: 600;
  line-height: 1.5;
}

h2 {
    font-size:2.5em;
    margin-bottom:1em;
}

p {
    font-size:1.25em;
    font-weight:lighter;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.5em;
        text-align:center!important;
    }
    p {
        font-size: 1.1em;
        text-align:center;
    }
}

.logo img {
    height:30px;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Root stacking context */
#root,
#__next {
  isolation: isolate;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    padding 0.3s ease;
  background: transparent;
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  transition: color 0.3s ease;
}

/* CTA Button */
.cta-btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid white;
  color: white;
  transition: all 0.25s ease;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Scrolled state */
.navbar.scrolled {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .logo {
  color: #1f3d2b;
}

.navbar.scrolled .cta-btn {
  background: #1f3d2b;
  border-color: #1f3d2b;
  color: white;
}

.navbar.scrolled .cta-btn:hover {
  background: #2e5a40;
}

section {
    padding: 0 2em; 
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/images/hero/hero-desktop.jpg");
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
}

/* Optional overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  color: white;
}

.hero-content h1 {
  font-size: 5em;
  margin-bottom: 12px;
}

.hero-content p {
  max-width: 100%;
}
@media (max-width: 768px) {
    .hero-content h1 {
        font-size:2.5em;
    }
}

/* ===== MOBILE RESPONSIVENESS ====== */

@media (max-width: 768px) {
  .nav-inner {
    padding: 16px 18px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .cta-btn {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .hero-bg {
    background-image: url("/images/hero/hero-mobile.jpg");
  }
  section {
    padding: 0;
  }
}

/* ===== VALUE PROP SECTION ===== */

.value-prop {
    margin-top:5em;
}
.value-prop-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.value-prop-content {
    padding:0 2em;
}

.value-prop-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.value-prop-image img {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .value-prop-inner {
    grid-template-columns: 1fr;
  }

  .value-prop-image {
    padding:0;
  }
  .value-prop-image img {
    border-radius: 0;
  }

  .value-prop-content h2 {
    text-align: left;
  }
}

/* ===== GALLERY ===== */

.gallery {
    margin-top: 2em;
}
.gallery-heading {
  text-align: center;
  padding: 0 1em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    }
    .gallery-grid img {
        border-radius:0
    }
    .gallery-heading {
    display:none;
    }
    .gallery {
        margin-top: 0
    }
}

/* ===== ABOUT SECTION (WITH OWNERS IMAGE) ===== */

.about-centered {
  max-width: 1024px;
  margin: 5em auto;
  text-align: center;
}

.about-avatar {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-avatar img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eaeaea;
}

.about-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1em ;
  padding: 0 2em;
  line-height: 1.6;
  color: #333;
}

/* ===== RATINGS SECTION ===== */

.ratings {
  background-color: rgba(47, 111, 98, 0.06);
}
.ratings-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2em;
}

.ratings-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.rating-item {
  text-align: center;
}

.badge {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.rating-score .score {
  font-size: 2.2rem;
  font-weight: 600;
  display: block;
}

.stars {
  letter-spacing: 2px;
  font-size: 1rem;
}

.reviews-count {
  font-size: 1.6rem;
  font-weight: 600;
}

.muted {
  color: #666;
  font-size: 0.95rem;
}
.host-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

.host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.host-info strong {
  display: block;
  margin-bottom: 0.2rem;
}
@media (max-width: 768px) {
  .ratings-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .host-card {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== CTA SECTION ===== */

.cta-inner {
  max-width: 1024px;
  text-align: center;
  margin: 2.5em auto;
  padding:2em;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Primary CTA button */

.cta-primary {
  display: inline-block;
  padding: 20px 40px;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--cta-color);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta-primary:hover {
  background-color: #275e53;
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */

.site-footer {
  background-color: rgba(47, 111, 98, 0.06);
  padding: 2.5rem 1rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  font-size: 1.1rem;
  font-weight: 600;
  margin:1em auto;
}

.footer-info p {
  font-size: 0.9rem;
  color: #555;
  margin: 0.2rem 0;
}

.remembrance {
  background-color: #fafafa; /* very light, neutral */
  padding: 4rem 1.5rem;
}

.remembrance-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.remembrance-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.remembrance h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.remembrance-text p {
  max-width: 1024px;
  margin: 0 auto 1.25rem;
  line-height: 1.7;
}

.remembrance-name {
  margin-top: 2rem;
  font-size: 1.05rem;
}

.remembrance-verse {
  margin-top: 1.5rem;
  font-style: italic;
  color: #555;
}

.remembrance-verse span {
  display: block;
  margin-top: 0.25rem;
  font-style: normal;
  font-size: 0.95rem;
}

.remembrance-inner img {
    margin:1em auto;
}
