:root {
  --pink: #f3cbd4;
  --blue: #c6d7f3;
  --beige: #fffaf5;
  --white: #ffffff;
  --text: #333;
}
html, body {
  background-color: var(--beige);
  margin: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.page-width {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}  
  
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: bold;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
    line-height: 1.8rem;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
html, body {
  height: 100%;
}

main {
  flex: 1;
}
p {
  font-size: 1.1rem;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  text-align: left;
}
/* HEADER FIX */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  background: linear-gradient(to right, var(--pink), var(--blue));
  flex-wrap: wrap;
  font-size: 1.4rem;
  z-index: 10;
}

.site-brand {
  display: flex;
  align-items: center;
  height: 80px;
}

.site-logo {
  height: 140px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

/* Navigation */
.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  font-weight: 900;
  color: #fffaf5;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.site-nav a:hover {
  background: rgba(255,255,255,0.2);
}

.site-nav a.active {
  background: rgba(83, 87, 87, 0.843);
}
/* Hero Index */
.hero {
  display: flex;
  justify-content: center;  
  align-items: center;      
  gap: 2rem;                
  max-width: 1000px;        
  margin: 1rem auto;        
  padding: 0.5rem;
}
.hero img {
  width: 400px;
  height: auto;
  border-radius: 10px;
}
.hero-content {
  max-width: 500px;
}
.hero-content h2 {
  margin-bottom: 0.5rem;
}

.hero-content a {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--blue);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 1rem;
}
/* About*/
.about-post {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
}
#about {
  max-width: 900px;
  margin: 1rem auto;
  padding: 0.5rem;
  text-align: left;
}
#about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* Seperator Bar */
.separator-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  background-color: var(--beige);
}
.separator-bar::before {
  content: '';
  display: block;
  width: 300px;
  height: 12px;
  background-image: repeating-linear-gradient(to right,
    var(--blue) 0 6px,
    transparent 6px 12px,
    var(--pink) 12px 18px,
    transparent 18px 24px);
}

/* Contact */
/* CONTACT SECTION */
#contact.contact {
  margin: 3rem auto;
}

/* Top intro block */
.contact-hero {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
}

.contact-hero h2 {
  margin-bottom: 0.75rem;
  font-size: 2.2rem;
}

/* The main content “card” */
.contact-body {
  background: #c6d7f3;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 1.5rem auto 0 auto;
  text-align: left;
}

.contact-body h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
/* --- CLEAN CONTACT FORM --- */

/* Optional: keep the form from stretching too wide */
form[name="contact"] {
  max-width: 700px;
  margin: 0 auto;
}

/* Hide the Netlify honeypot row */
.hidden-field {
  display: none;
}

.form-group {
  margin-bottom: 1rem;
}

/* Labels */
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

/* Inputs + textarea */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

/* Nice focus state (keyboard + mouse) */
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(198, 215, 243, 0.9); /* var(--blue) but softer */
  box-shadow: 0 0 0 4px rgba(198, 215, 243, 0.35);
}

/* Checkbox row */
.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500;
  margin: 0.25rem 0 1.25rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
}

/* Button */
.btn-primary {
  display: inline-block;
  border: none;
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  background: #f3cbd4;
  color: #1f1f1f;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Make required star look nicer */
.form-group span[aria-hidden="true"] {
  margin-left: 0.25rem;
  opacity: 0.7;
}

/* Mobile spacing */
@media (max-width: 600px) {
  form[name="contact"] {
    max-width: 100%;
  }
}

/* Optional: tighten paragraph spacing */
.contact-hero p,
.contact-body p {
  margin: 0 0 1rem;
  line-height: 1.6;
}
/* SERVICES PAGE */

.services {
  text-align: center;
  margin: 3rem 0;
}

.services-intro {
  max-width: 700px;
  margin: 1rem auto 2rem auto;
  text-align: left;
}

/* Grid layout */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Cards */

.service-card {
  background: var(--white);
  border: #f3cbd4;
  padding: 1.8rem;
  border-radius: 14px;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 6px solid #c0c0c0; /* silver */
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-top: 6px solid #f3cbd4;
}
.package-btn h3{
  font-weight: bold;
  color: #333;
}

@media (max-width: 800px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Pages*/
.service-detail{
max-width:900px;
margin:auto;
padding:60px 20px;
text-align:center;
}
.service-features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-bottom:40px;
}

.feature-card{
background:#f8f8f8;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.20);
text-align: left;
}

.feature-card h3{
margin-bottom:10px;
text-align: left;
}
.feature-card:hover{
transform: translateY(-5px);
box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}
.cta-button{
display:inline-block;
padding:12px 30px;
background:#c6d7f3;
color:blueviolet;
text-decoration:none;
border-radius:6px;
}
/* Blog */
.blog-index{
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.blog-card{
  display: block;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.blog-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.blog-card__img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.blog-card__body{
  padding: 1rem 1rem 1.15rem;
}

.blog-card__tag{
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #faf8f6;
  border: 1px solid rgba(0,0,0,0.06);
  margin: 0 0 0.6rem;
}

.blog-card__title{
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

.blog-card__snippet{
  margin: 0;
  opacity: 0.85;
  line-height: 1.5;
}

/* Blog Article Page */
.blog-article-page {
  background: #f8f6f2;
  padding-bottom: 60px;
}


.article-hero {
  background: linear-gradient(rgba(60, 50, 45, 0.55), rgba(60, 50, 45, 0.55)),
              url("../images/blog-hero.jpg") center/cover no-repeat;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.article-hero-content {
  max-width: 800px;
  color: #ffffff;
}

.article-category {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  opacity: 0.95;
}
.article-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.article-meta {
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0.95;
}

.article-wrapper {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 20px;
}

.blog-article {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 35px;
}
.featured-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 25px;
}

.blog-article .intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #5a4c43;
  margin-bottom: 24px;
}

.blog-article h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 14px;
  color: #2f2a26;
}


.blog-article blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  background: #f4efe8;
  border-left: 4px solid #b08b68;
  border-radius: 10px;
  font-style: italic;
  color: #5a4c43;
}
.article-cta {
  background: #ffffff;
  text-align: center;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.article-cta h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
  color: #2f2a26;
}

.article-cta p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #c6d7f3;
  color: blueviolet;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: grey;
  transform: translateY(-2px);
}
/*Return to Blog*/
.return-blog{
max-width:900px;
margin:30px auto 10px auto;
padding:0 20px;
}

.return-blog a{
text-decoration:none;
color:#7a5c42;
font-weight:600;
font-size:0.95rem;
transition:color 0.2s ease;
}

.return-blog a:hover{
color:#4a3a2a;
}
/* Testimonials */
.testimonial, .booking {
  border-radius: 8px;
  max-width: 900px;
  margin: 1rem auto;
  padding: 0.5rem;
  text-align: left;
}
/* About page section */
.about-container {
  background-color: var(--beige);
  padding: 3rem 1rem;
}

/* Centre the content like your hero section */
.about-post {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Image styling */
.about-post img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 10px;
}

/* Text spacing */
.about-content p {
  margin-bottom: 1rem;
}
@media (max-width: 800px) {
  .about-post {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-post img {
    margin: 0 auto 1rem;
  }
}
/* Responsive */
@media (max-width: 900px){
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
  .blog-grid{ grid-template-columns: 1fr; }
  .blog-card__img{ height: 200px; }
}


/* Footer */
footer {
  width: 100%;
  background: linear-gradient(to right, var(--pink), var(--blue));
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  color: var(--text);
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    gap: 0.8rem;
    text-align: center;
  }

  .site-brand {
    height: auto;
    justify-content: center;
  }

  .site-logo {
    height: 90px;
  }

  .site-nav {
    justify-content: center;
    gap: 0.5rem;
  }

  .site-nav a {
    font-size: 1rem;
    padding: 0.45rem 0.7rem;
  }
}
@media (max-width: 768px) {
  /* General page spacing */
  .container,
  #about {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Header */
  .site-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    text-align: center;
  }

  .site-brand {
    height: auto;
    justify-content: center;
  }

  .site-logo {
    height: 85px;
    width: 85px;
  }

  .site-nav {
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }

  .site-nav a {
    font-size: 0.95rem;
    padding: 0.45rem 0.7rem;
  }

  /* Hero section */
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .hero img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h2 {
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    text-align: center;
  }

  .hero-content a {
    margin-top: 1.25rem;
  }

  /* About / homepage text sections */
  #about {
    margin: 1.5rem auto;
    padding: 0 1rem;
  }

  .separator-bar::before {
    width: 180px;
    height: 10px;
  }

  footer {
    padding: 1rem;
  }
}