
/* ---------------------------------------------------------
   Global Base Styles (matches original homepage)
   --------------------------------------------------------- */

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f5f7f4;
    color: #2e3d2f;
}

/* ---------------------------------------------------------
   Hero Section
   --------------------------------------------------------- */

.hero {
    background: url('images/fern-hero.webp') center/cover no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ---------------------------------------------------------
   Logo
   --------------------------------------------------------- */

.logo {
    width: 60%;
    max-width: 90%;
    height: auto;
    margin-bottom: 1rem;
    image-rendering: auto;
}

/* ---------------------------------------------------------
   Main Content
   --------------------------------------------------------- */

.content {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 20px;
    text-align: center;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #3c5f3c;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.2rem;
    transition: background 0.2s ease;
    margin: 0.5rem;
}

.btn:hover {
    background: #2f4c2f;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

footer {
    text-align: center;
    margin: 3rem 0 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---------------------------------------------------------
   Airbnb Status Panel (restored formatting)
   --------------------------------------------------------- */

.airbnb-panel {
    background: #d2ebd2; /* pale fern green */
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 14px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 700px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: transform 0.15s ease;
    text-decoration: none !important;
}

.airbnb-panel:hover {
    transform: scale(1.01);
}

.airbnb-panel h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #2e3d2f;
}

.airbnb-panel a {
    text-decoration: none !important;
    color: inherit; /* optional: removes the blue link colour */
}


/* Match the current HTML structure */
#review-box.review {
    background: #e8f5e8; /* pale inner green */
    border-radius: 12px;
    padding: 1.2rem;
    margin-top: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#review-box.review p {
    margin: 0 0 0.8rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
}


#review-box.review .author {
    font-weight: bold;
    font-size: 1.1rem;
    color: #2e3d2f;
}

.gallery-background {
    background: url('images/fern-hero.webp') center/cover no-repeat fixed;
    padding: 2rem 0;
}

.gallery-watermark {
    position: relative;
}

.gallery-watermark::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/fern-hero.webp') center/cover no-repeat;
    opacity: 0.12; /* subtle and soft */
    z-index: -1;
    pointer-events: none;
    filter: blur(1px); /* optional: softens the texture */
}
.credibility-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.credibility-panel {
  background: rgba(255,255,255,0.85);
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 480px;
  margin: 1.5rem auto;
  font-size: 1.1rem;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
}

.credibility-item {
  margin-bottom: 0.5rem;
}

.features-list {
    text-align: left;
    max-width: 650px;
    margin: 2rem auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

.btn-spaced {
    margin-bottom: 1.5rem;
    display: inline-block;
}
