:root {
  --primary: #6C8363;
  --background: #FAFAF8;
  --accent: #A37774;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Josefin Sans', sans-serif;
  background-color: var(--background);
  color: var(--primary);
  overflow-x: hidden;
  scroll-behavior: smooth;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Kalnia', serif;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(6px);
  padding: 1rem 2rem;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(108, 131, 99, 0.1);
}

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


header h1 {
  font-family: 'Kalnia', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

nav a:hover {
  color: var(--accent);
}

nav {
  display: flex;
  align-items: center;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding-top: 6rem;
  background: url('assets/IMG_5474.jpg') center/cover no-repeat;
  text-align: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-top: 7rem;
  }

  .hero-icon {
    height: 120px; /* optional: slightly smaller */
  }
}

/* Hazy overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15); /* light haze */
  backdrop-filter: blur(2px);            /* subtle softness */
  z-index: 1;
}

/* Keep content above overlay */
.hero > * {
  position: relative;
  z-index: 2;
}



.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(108, 131, 99, 0.35);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero h2 {
  font-family: 'Kalnia', serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--background);
}

.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.btn {
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

section {
  width: 100%;
  padding: 2rem 1rem;
}


.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-inner-button-only {
  width: 100%;
  padding: 2rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

section h2 {
  font-family: 'Kalnia', serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
  text-align: center;
}

section p {
  max-width: 900px;
  margin: 0;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
}
.gallery img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(108, 131, 99, 0.2);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--background);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-top: auto;
}

/* Mobile Nav */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--background);
    flex-direction: column;
    width: 200px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-logo img {
  height: 40px;   /* adjust as needed */
  width: auto;
}

.hero p {
  color: #FAFAF8;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-icon {
  width: auto;          /* adjust size */
  height: 150px;
  margin-bottom: 1rem;
  opacity: 0.75;
}

section + section {
  margin-top: 0;
}

h2, p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

/* Page offset for fixed header */
.page-offset {
  padding-top: 120px;
}

/* Contact form */
.contact-form {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--primary);
  gap: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Josefin Sans', sans-serif;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(108, 131, 99, 0.3);
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}


/* ===============================
   CONTACT PAGE LAYOUT
================================== */

.contact-main {
  padding: 5rem 2rem;
}

.contact-split {
  display: flex;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

/* LEFT SIDE */
.contact-left {
  flex: 1;
  min-width: 0;
}

.contact-left h2 {
  margin-bottom: 1rem;
}

.contact-left p {
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Mailchimp iframe */
.mailchimp-frame {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* RIGHT SIDE */
.contact-right {
  flex: 1;
  min-width: 0;
  padding-top: 150px;
}

/* Map */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact details */
.contact-details {
  padding: 2rem;
  border-radius: 20px;
  background: #f8f8f6;
}

.contact-details h3 {
  margin-bottom: 1.5rem;
}

.contact-details p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 950px) {
  .contact-split {
    flex-direction: column;
    gap: 3rem;
  }

  .mailchimp-frame {
    min-height: 550px;
  }

  .map-container {
    height: 350px;
  }
}


.btn-link {
  text-decoration: none;
}

.offer-slider {
  width: 100%;
  overflow: hidden;
  background: #F3F4F1;
  padding: 2.5rem 0 3rem;
  margin-top: -1px;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollSlider 60s linear infinite;
}

.slide {
  min-width: 260px;
  margin: 0 1.5rem;
  padding: 1.2rem 2rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
  border-radius: 30px;
  font-family: 'Kalnia', serif;
  font-size: 1.1rem;
  color: var(--primary);
  text-align: center;
  box-shadow: 0 6px 20px rgba(108, 131, 99, 0.08);
  white-space: nowrap;
  transition: transform 0.3s ease;
}

.slide:hover {
  transform: scale(1.05);
}

/* Button under slider */
.slider-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Animation */
@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.price-list {
  max-width: 600px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  font-size: 1.05rem;
  box-shadow: 0 6px 20px rgba(108, 131, 99, 0.08);
}

/* Prices page layout */
.prices-page {
  min-height: calc(100vh - 160px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
}

/* Rounded content box */
.prices-card {
  background: #ffffff;
  max-width: 700px;
  width: 100%;
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Title */
.prices-card h2 {
  margin-bottom: 1.5rem;
}

/* Message text */
.prices-message {
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Optional active nav styling */
nav a.active {
  opacity: 0.6;
}

.contact-page {
  text-align: left;
}

/* Ensure page clears fixed header */
.contact-main {
  padding-top: 140px; /* adjust if your header is taller */
  padding-bottom: 4rem;
}

/* Keep text left-aligned for contact page */
.contact-page .section-inner {
  text-align: left;
  max-width: 650px;
  margin: 0 auto;
}

/* Mailchimp iframe styling */
.mailchimp-frame {
  display: block;
  width: 100%;
  height: 900px;
  border: none;
  margin-top: 2rem;
}

/* Footer Social Icons */
footer .social-icons {
  margin-top: 10px;
}

footer .social-icons a {
  display: inline-block;
  line-height: 0;
}

footer .social-icons a svg {
  width: 30px;       /* ensures it isn’t cut off */
  height: 30px;
  color: var(--background);  /* your site accent color */
  transition: color 0.3s ease;
}

footer .social-icons a:hover svg {
  color: var(--accent);
}

/* Contact section Instagram link styling */
.contact-section a {
  display: block;           /* makes it act like a block for centering */
  text-align: center;       /* centers the text */
  color: var(--accent);     /* your site accent colour */
  font-weight: 600;         /* optional: slightly bolder */
  font-size: 1.1rem;        /* optional: slightly bigger */
  text-decoration: none;    /* remove underline */
  margin-top: 10px;         /* spacing above the link */
  transition: color 0.3s ease;
}

.contact-section a:hover {
  color: var(--primary);    /* changes to primary colour on hover */
}
