@charset "utf-8";

/* ===== CSS Variables ===== */
:root {
  --blush: #f7eae8;
  --deep-blush: #8C5E58;
  --highlight: #c19a96;
  box-sizing: border-box;
}

/* ===== BASE STYLES ===== */
body {
	background-image: url("../images/wallpaper-tile.jpg");
  background-repeat: repeat;
  background-attachment: fixed;
	  background-size: 233px 241px;
  font-family: 'Gotham', Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.90);
  z-index: -1;
  top: 0;
  left: 0;
}


/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: var(--blush);
  border-radius: 0px;
}

/* ===== HEADER ===== */
header {
  height: 120px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px 0px ;
}

.site-logo {
  width: 280px;
  height: auto;
  margin-left: 50px;
}

/* General navigation links */
nav ul li a {
  padding: 12px 25px;
  text-decoration: none;
  font-size: 18px;
  color: var(--deep-blush);
  border-radius: 8px;
  background-color: transparent; /* or white, depending on your style */
  transition: 0.3s;
	display: block;
}

/* Special styling for the "Book Now" button */
nav ul li a.book-now-button {
  background-color: var(--deep-blush);
  color: white;
	
}

/* Optional: keep hover subtle for Book Now */
nav ul li a.book-now-button:hover {
  background-color: var(--highlight); /* optional softer blush */
  color: white;
}

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


/* CHECK NOT IN USE ANYMORE? Navigation Dropdown */
nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0px 20px;
  padding: 0;
	align-items: center;
  position: relative;
}

nav ul li {
  position: relative;
	display: flex;
  align-items: center;
}


main {
  padding-top: 200px; /* same or slightly more than your header height */
}


/* ===== HOME Hero Section ===== */

/* shared */
.hero { /* base hero styles from the cleaned plan */ }
.hero::before { /* overlay if you use it */ }

/* ===== HERO BACKGROUND IMAGES ===== */
body.home .hero {
  background-image: url("../images/nw-house.jpg");
}

body.cottage .hero {
  background-image: url("../images/2025-cottage-outside.jpg");
}

body.suite .hero {
  background-image: url("../images/lounge-pool.jpg");
}

body.explore .hero {
  background-image: url("../images/Tuki-tuki-road.jpg");
}

/* ============================================================
   HERO SECTIONS — Shared layout + per-page backgrounds
   ============================================================ */

/* Base hero styling (applies to all pages) */
.hero {
  position: relative;
  display: flex;
  align-items: center;          /* centers text vertically */
  justify-content: flex-start;      /* text allign left */
  min-height: clamp(420px, 55vh, 600px);
  padding: 6rem 1rem 3rem;      /* top padding for header spacing */
  color: var(--deep-blush);                  /* dark text over photos */
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}


/* Inner container for hero text */
.hero .hero-inner {
  position: relative;           /* ensures it sits above overlay */
  background: color-mix(in srgb, var(--blush) 90%, transparent);
  backdrop-filter: blur(2px);
  padding: clamp(1rem, 3vw, 3rem);
  border-radius: 1rem;
  width: clamp(280px, 45vw, 420px);
  margin-left: 5%;
  margin-top: 5%;
  box-sizing: border-box;
}

/* Hero heading */
.hero .welcome-text {
  font-family: 'Lavishly Yours', cursive;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--deep-blush);
  text-align: center;
  letter-spacing: 0.015em;
  line-height: 1.25;
  font-weight: normal;
  margin: 20px 0 40px;
  }

/* Hero paragraph */
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 2;
  margin: 0 0 5px 0; 
  }

/* Book Now button inside hero */
.hero .hero-book-button a {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--deep-blush);
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}
.hero .hero-book-button a:hover {
  background-color: var(--highlight);
	color: white;
}


/* ===== AVAILABILITY SECTION ===== */
#availability {
  background-color: white;
  padding: 10px 0px;
  max-width: 1200px;
  margin: 0 auto;
  
}
.ftb-widget {
  max-width: 100%;
  text-align: right;
}








/* ===== HOME PHOTO CARDS ===== */
.photo-gallery {
	background-color: var(--highlight);
	padding: 40px 0px 40px 0px;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0px 0px;
  flex-wrap: wrap;
}

 .photo-card {
  background-color: white;
  width: 200px;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

 .photo-card img {
  width: 100%;
  border-radius: 6px;
}

 .photo-card p {
  font-size: 16px;
  margin-top: 10px;
  color: var(--deep-blush);
}
body.home .photo-card img:hover {
  transform: scale(1.1);
  cursor: pointer;
  transition: transform 0.3s ease; /* smooth animation */
}
/* ============================================================
   FACILITIES — Shared layout for Cottage & Suite
   ============================================================ */

/* Wrapper for the whole facilities area on each page */
.facilities-section {
  background: #fff;
  margin: 2.5rem auto;
  max-width: 1200px;
  box-sizing: border-box;
  padding-top: 2%;
  padding-left: 8%;        
  padding-bottom: 1%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;  
}


/* Optional page intro paragraph */
.introduction {
  padding: 2.5rem 1rem;
  color: var(--deep-blush);
  font-size: 1.25rem;
  margin: 0;
}

/* Section title: "Facilities" */
.facilities-word {
  font-family: 'Lavishly Yours', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-blush);
  text-align: center;
  letter-spacing: 0.015em;
  /* word-spacing: 10px;  <-- removed; can look awkward at small widths */
  line-height: 1.1;
  font-weight: normal;
  margin: 20px 0 40px;
}

/* Two-column feature list (auto-stacks on narrow screens) */
.facilities-list  {
  color: var(--deep-blush);
  columns: 2;
  column-gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.facilities-list li {
	display: flex;
	align-items: center;
	gap: 8px;
  }

/* Scope SVG icons to the features list only */
.facilities-section .facilities-list li svg {
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  vertical-align: -2px;
  fill: var(--deep-blush);
  	flex: 0 0 16px !important;
}

/* Two-column content block: text + photo card */


/* Left text column (amenities paragraph or bullets) */
.cottage-left {
  flex: 1 1 400px;                        /* grows, but won’t shrink below ~400px */
  padding: 0 1rem;
  color: var(--deep-blush);
  line-height: 1.6;                       /* replaces fixed 40px */
}

/* Right photo card (can be used on either page) */
.cottage-photo-card {
  background: #fff;
  flex: 1 1 420px;                        /* allows card to sit next to text or drop below */
  max-width: 520px;                       /* similar to your old width:500px */
  padding: 1.875rem;                      /* ~30px */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cottage-photo-card img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.cottage-photo-card p {
  font-size: 1rem;
  margin-top: 10px;
  color: var(--deep-blush);
}

/* Intro image + text card (fixed typo: introducion -> introduction) */
.cottage-introduction-card {
  background: #fff;
  width: 100%;
  max-width: 900px;
  padding: 1.875rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.cottage-introduction-card img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.cottage-introduction-card p {
  font-size: 1rem;
  margin-top: 10px;
  color: var(--deep-blush);
}

/* Remove old/tested wallpaper section if unused */
 /* body.cottage .blanc-wallpaper-section { ... }  */



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

body.contact .blanc-wallpaper-section {
	background-color: transparent;
	width: auto;
	padding: 40px 0px 0px 0px;
	margin-top: 105px;
	}

body.contact .contact-and-picture {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 40px 40px 40px 40px;
  max-width: 1200px;
  flex-wrap: wrap;
}

/* Left column (form + contact info) */
body.contact .contact-left {
  flex: 1 1 50%;
  min-width: 200px;
		color: var(--deep-blush);
	}
.contact-us {
	padding-left: 10px;
	padding-bottom: 20px;
	
	font-size: 20px;
}

body.contact .contact-form {
  display: flex;
	flex-direction: column;
	background-color: white;
	gap: 15px;
	margin-left: 0;
  padding: 20px 20px 20px 20px;
	width: 550px;
	height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body.contact .contact-info {
  padding: 20px 20px 0px 15px;
  background-color: var(--blush);
  border-radius: 10px;
  color: var(--deep-blush);
}
.contact-form label {
  font-weight: bold;
  color: var(--deep-blush);
  margin-bottom: 10px;
	margin-top: 10px;
	display: block;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--highlight);
  box-shadow: 0 0 4px var(--highlight);
}

.contact-form button {
  background-color: var(--deep-blush);
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
	margin-top: 10px;
}

.contact-form button:hover {
  background-color: var(--highlight);
}
/* Right column (image card) */
body.contact .gate-picture-card {
	flex: 1 1 35%;
  background-color: white;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

body.contact .gate-picture img {
  width: 100%; /* Fix the image size */
  border-radius: 6px;
}

body.contact .gate-picture p {
  font-size: 16px;
  margin-top: 10px;
  color: var(--deep-blush);
}

body.contact .driveway {
	flex: 1 1 35%;
  background-color: white;
  width: 100%;
  max-width: 500px;
	margin-left: auto;
	margin-right: 0px;
	margin-top:10px;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




/* ===== Home Inspire Section ===== */
.inspire-section {
  background-color: white;
  padding: 20px;
  text-align: center;
  margin: 0px auto;
}

.inspire-keywords {
  font-family: 'Lavishly Yours', cursive;
  font-size: 48px;
  color: var(--deep-blush);
  letter-spacing: 1px;
	word-spacing: 0px;
  line-height: 1.2;
    font-weight: normal;
	margin-bottom: 5px;
	margin-top: 20px;
}
.inspire-keywords-small {
  font-family: 'Lavishly Yours', cursive;
  font-size: 34px;
  color: var(--deep-blush);
  letter-spacing: 1px;
	word-spacing: 0px;
  line-height: 1.2;
    font-weight: normal;
	margin-bottom: 20px;
	margin-top: 0px;
}
.cottage-inspire-keywords {
  font-family: 'Lavishly Yours', cursive;
  font-size: 48px;
  color: var(--deep-blush);
	padding: 40px;
  letter-spacing: 0px;
	word-spacing: 0px;
  line-height: 0.2;
    font-weight: normal;
	margin-bottom: 0px;
	margin-top: 0px;
}
.suite-inspire-keywords {
  font-family: 'Lavishly Yours', cursive;
  font-size: 48px;
  color: var(--deep-blush);
	padding: 40px;
  letter-spacing: 0px;
	word-spacing: 0px;
  line-height: 0.2;
    font-weight: normal;
	margin-bottom: 0px;
	margin-top: 0px;
}

/* ===== Contact Inspire Section ===== */
body.contact .inspire-section {
  background-color: white;
  padding: 20px;
  text-align: center;
 }

body.contact .inspire-keywords {
  font-family: 'Lavishly Yours', cursive;
  font-size: 48px;
  color: var(--deep-blush);
	text-align: center;
  letter-spacing: 1px;
	word-spacing: 40px;
  line-height: 0.2;
    font-weight: normal;
	margin-bottom: 20px;
	margin-top: 20px;
}
/* ===== Cottage Page Review Carousel ===== */
.review-carousel-section {
  text-align: center;
  background-color: transparent;
  padding: 0px 20px 40px 20px;
  color: var(--deep-blush);
}

.review-carousel {
  position: relative;
	max-width: 700px;
  margin: 0 auto;
}

.review-slide {
  display: none;
  font-size: 16px;
  padding: 20px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: opacity 0.5s ease;
}

.review-slide.active {
  display: block;
}

.review-slide p {
  font-style: italic;
}

.review-slide span {
  display: block;
  font-weight: bold;
  margin-top: 10px;
}

.review-slide small {
  color: #666;
  display: block;
  margin-top: 5px;
}




/* ===== Contact EMPTY Section ===== */
body.contact .empty {
  background-color: red;
  padding: 20px;
  text-align: center;
  margin: 40px auto;
}

body.contact .empty {
  font-family: 'Lavishly Yours', cursive;
  font-size: 48px;
  color: var(--deep-blush);
  letter-spacing: 1px;
	word-spacing: 40px;
  line-height: 0.2;
    font-weight: normal;
	margin-bottom: 20px;
	margin-top: 20px;
}
/* ===== EXPLORE BLANC WALLPAPER SECTION ===== */

body.explore .blanc-wallpaper-section {
	background-color: white;
	padding: 160px;
	margin-top: px;
	}



/* ===== HOME BULLET POINTS AND REVIEW SECTION ===== */


body.home .love-reviews-section {
  padding: 30px 20px 40px 20px;
	background-color: var(--blush);
  color: var(--deep-blush);
  border-radius: 0;
	margin-top: 0px;
}

body.home .love-reviews-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
	 gap: 0px;
}
body.home .why-guests-love h3 {
	font-size: 26px;
  margin-bottom: 20px;
  margin-left: 20px; /* ðŸ‘ˆ Push the heading away from the edge */
  flex: 1 1 60%;
	padding-left: 20px;
}
body.home .why-guests-love {
  flex: 1 1 60%;
	padding-left: 20px;
}

body.home .why-guests-love ul {
  padding-left: 40px;
  list-style-type: disc;
}

body.home .why-guests-love li {
	font-size: 16px;
	margin: 20px 20px 20px 20px;
	line-height: 30px;	
}

body.home .review-widget-box {
  flex: 1 1 25%;
  min-width: 150px;
	margin: 10px 10px 0px 0px;
}

/* ===== BLANC WALLPAPER ===== */

.home-blanc-wallpaper-section {
	background-color: white;
	padding: 25px;
		text-align: center;
}

.blanc-wallpaper-section {
	background-color: white;
	padding: 25px;
		text-align: center;
}

body.contact .google-map {
	padding: 20px;
	margin: 0px;
	border-radius: 10px;
}

/* Lightbox Styles */

#lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  z-index: 1000;
}

#lightbox img {
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 0 20px #fff;
}

#lightbox-close,
#lightbox-next,
#lightbox-prev {
  position: absolute;
  color: white;
  font-size: 2em;
  cursor: pointer;
  user-select: none;
  z-index: 1001;
}

#lightbox-close {
  top: 20px;
  right: 30px;
}

#lightbox-prev {
  left: 40px;
}

#lightbox-next {
  right: 40px;
}


body {
  overflow-x: hidden;
}




/* ===== Footer ===== */
.site-footer {
  
  color: white;
  font-size: 14px;
}

.footer-container {
  display: flex;
  background-color: var(--deep-blush);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  padding: 0px 40px 0px 40px;
  margin: 0 auto; /* center the container */
  box-sizing: border-box;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 200px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 25px;
  color: var(--highlight);
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
  color: var(--highlight);
}
.footer-column ul {
  list-style-position: inside;
  padding-left: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 3px 0;
}

.footer-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.footer-icons a img,
.footer-icons a svg {
  height: auto;
  max-width: auto;
  display: block;
}

.footer-icons .logo-icons img { 
  max-width: 100px;
}



.social-icons,
.footer-badges {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
	
}

.social-icons,
.footer-badges a svg {
  border-radius: 8px;
    transition: transform 0.3s ease;
}
.social-icons,
.footer-badges a img {
  border-radius: 8px;
    transition: transform 0.3s ease;
	padding-top: -15px;
}
.social-icons,
.footer-badges a:hover svg {
  transform: scale(1.1);
	cursor: pointer;
}
.social-icons,
.footer-badges a:hover img {
  transform: scale(1.1);
	cursor: pointer;
}
.footer-badges img {
 max-width: 80px;
}



.footer-bottom {
  text-align: center;
	width: 100%;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 5px;
  font-size: 13px;
}


/* ===== Responsive adjustments (≤650px) ===== */
@media screen and (max-width: 650px) {

  .hero {
	  justify-content: center; /* center the box on small screens */
    min-height: 420px;
    padding: 5rem 1rem 2.25rem;
  }

  .hero .hero-inner {
	  margin: 0 auto;
    width: min(90vw, 32rem);
	  padding: 1.5rem;
  }

  .hero .welcome-text {
    display: block;
    width: 90%;
    margin: 0 auto 1rem auto;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1.05rem;
    line-height: 1.45;
    padding: 0 0.5rem;
  }

  .hero .hero-book-button a {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.65rem 1.25rem;
  }
}



/* ===== Responsive ===== */
@media screen and (max-width: 650px) {
  .header-container {
    flex-direction: column;
	  overflow-x: hidden;
	  width: 100%;
    text-align: center;
	  box-sizing: border-box;
  }
  nav ul {
    flex-direction: column;
      align-items: center;
    justify-content: center;
	  padding: 0;
	  box-sizing: border-box;
  }
	nav ul li {
    margin: 0.5rem 0;
  }

	 nav ul li a.book-now-button {
    width: 90vw;
    max-width: 300px;
    text-align: center;
    display: block;
    font-size: 1rem;
    padding: 12px 20px;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 0 auto;
  }
	
	.container .header-container {
		width: 100%;
	}
	
  
  .site-logo {
    width: 150px;
    margin-bottom: 20px;
  }
 


  .photo-gallery {
    margin: 20px;
    gap: 20px;
    justify-content: center;
  }
  .photo-card {
    width: 100%;
    max-width: 300px;
  }
  .love-reviews-flex {
    flex-direction: column;
    align-items: center;
  }
  .review-widget-box {
    margin-top: 30px;
  }


  .footer-icons {
    flex-direction: column;
    gap: 6px;
  }

  .footer-icons img {
    height: 28px;
  }

  .footer-icons .logo-icon {
    height: 36px;
  }


	
	
  .social-icon a svg {
	flex-direction: row;
	justify-content: center;
    width: 28px;
    height: 28px;
  }
	.social-icon {
    margin-right: 20px;
  }
  .footer-badges {
    margin-left: 20px;
  }



  body.contact .contact-and-picture {
    flex-direction: column;
    align-items: center;
  }

  body.contact .contact-left,
  body.contact .gate-picture-card,
	body.contact .contact-form {
    width: auto;
  }




 

 
}
