backup css



/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #292603;
    color: #222;
    line-height: 1.6;
  }
  
  header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Center everything horizontally */
    position: sticky;
    top: 0;
    z-index: 10;
    flex-direction: column; /* Stack logo and nav vertically */
  }
  
  .logo-header {
    width: 100%;
    background-color: #292603;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
    padding-top: 15px;
  }
  
  .logo-image {
    height: 250px; /* Try increasing this value */
    width: auto;
    max-width: 100%; /* Ensures it doesn't overflow its container */
  }

  main {
    background: #292603;
    min-height: 100vh; /* Ensures it covers the screen if content is short */
    width: 100%;
  }
  
  .main-nav {
    position: absolute;
    left: 0;
    bottom: 0;         /* This puts the nav at the bottom of the banner */
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
   
    /* Optional: background for readability */
    /* background: rgba(255,255,255,0.7); */
  }

  .main-nav a {
    color: #CFC123; /* Your desired color */
    text-decoration: none;
  }
  
  
  /* Example for horizontal nav list */
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0.5em 0;
  }
  /* === Media queries (if any) === */
  @media (max-width: 700px) {
    /* ...responsive styles... */
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  nav ul li {
    position: relative;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5em 0.75em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    display: block;
  }
  
  nav ul li a.active,
  nav ul li a:hover,
  nav ul li:hover > a {
    background: #000;
    color: #fff;
  }
  
  nav ul li.dropdown {
    /* For dropdown parent */
  }
  
  nav ul li .dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 150px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.09);
    border-radius: 0 0 8px 8px;
    z-index: 999;
    padding: 0.5em 0;
  }
  
  nav ul li .dropdown-content li {
    width: 100%;
  }
  
  nav ul li .dropdown-content a {
    color: #333;
    background: none;
    border-radius: 0;
    padding: 0.5em 1.2em;
    font-size: 1em;
  }
  
  nav ul li .dropdown-content a:hover {
    background: #f3f7f0;
    color: #4b8f29;
  }
  
  nav ul li.dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Optional: Hide dropdown arrow on mobile, adjust spacing, etc. */
  
  
  nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5em 0.75em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
  }
  
  nav a.active,
  nav a:hover {
  background: #000; /* or 'black' */
  color: #fff;
  }

  
  .hero {
    background: url('tiny-home-hero.jpg') center/cover no-repeat, linear-gradient(120deg, #e0f7fa 0%, #fff 100%);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .hero-content {
    background: rgba(255,255,255,0.85);
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
  }
  
  .hero h1 {
    font-size: 2.5rem;
    color: #4b8f29;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .hero-video-section {
    width: 100vw;
    margin-left: calc(50% - 50vw); /* Ensures true edge-to-edge even inside centered layouts */
    overflow: hidden;
    background: #000;
    position: relative;
    background-color: #292603;
  }
  
  .hero-video {
    width: 100vw;
    height: 1200px; /* Or your preferred height */
    object-fit: cover;
    display: block;
    background-color: #292603;
  }
  
  .cta-button {
    background: #000;
    color: #292603;
    padding: 0.75em 2em;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .cta-button:hover {
    background: #35731c;
  }
  
  .section {
    max-width: 800px;
    margin: 3rem auto;
    background: #292603;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }
  
  .section h2 {
    color: #000;
    margin-bottom: 1.2rem;
  }
  .custom-cabin-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #292603;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.custom-cabin-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  gap: 3rem;
}

.custom-cabin-content.reverse {
  flex-direction: row-reverse;
}

.custom-cabin-text {
  flex: 1;
  color: #fff;
}

.custom-cabin-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #CFC123;
}

.custom-cabin-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background: #CFC123;
  color: #292603;
  font-weight: bold;
  padding: 0.75em 2em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  margin: 1.2rem auto 0 auto;
}

.cta-button:hover {
  background: #fff;
  color: #292603;
}

.custom-cabin-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.custom-cabin-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  object-fit: cover;
}

/* Combine all responsive rules here */
@media (max-width: 900px) {
  .custom-cabin-content,
  .custom-cabin-content.reverse {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .custom-cabin-image {
    justify-content: center;
  }
  .custom-cabin-image img {
    max-width: 90vw;
  }
}


  .gallery {
  width: 90vw;
  max-width: 900px; /* or your preferred width */
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}


  .gallery h2 {
    color: #CFC123;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    text-align: center;
  }
  
  .gallery-item img {
    width: 100%;
    height: 650px;      /* Make images taller */
    object-fit: cover;  /* Crop nicely */
    border-radius: 12px;/* Softer corners (optional) */
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18); /* Optional: subtle shadow */
  }
  .gallery-item:hover {
    transform: scale(1.02); /* Slight zoom on hover */
  }
  .caption {
  color: #CFC123;           /* Gold, or any color you prefer */
  font-size: 1.1em;         /* Optional: adjust size */
  text-align: center;       /* Optional: center the text */
  margin-top: 0.5em;        /* Optional: space above caption */
}

  
  blockquote {
    font-style: italic;
    color: #888;
    margin: 1.5rem 0;
    border-left: 4px solid #4b8f29;
    padding-left: 1rem;
  }
  
  .reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .review {
    background: #f3f7f0;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(75,143,41,0.04);
  }
  
  .review span {
    display: block;
    margin-top: 0.5rem;
    color: #4b8f29;
    font-weight: bold;
  }
  
  .contact-info {
    margin-bottom: 1.5rem;
    list-style: none;
  }
  
  .contact-info li {
    margin-bottom: 0.5rem;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .contact-form button {
    background: #4b8f29;
    color: #fff;
    border: none;
    padding: 0.75em;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .contact-form button:hover {
    background: #35731c;
  }

  
  .financing-options {
  background: linear-gradient(90deg, #fffbe6 0%, #cfc123 80%);
  color: #292603;
  border-radius: 10px;
  padding: 1.3rem 1rem 1rem 1rem;
  margin-bottom: 2.2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
}
.financing-options h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  color: #292603;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.financing-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.2em 0 0.5em 0;
}
.financing-btn {
  display: inline-block;
  background: #CFC123;
  color: #292603;
  font-weight: bold;
  padding: 0.7em 2em;
  border-radius: 6px;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
}
.financing-btn:hover,
.financing-btn:focus {
  background: #292603;
  color: #fffbe6;
}
.financing-note {
  color: #292603;
  font-size: 0.98em;
  margin-top: 0.8em;
  text-align: center;
  opacity: 0.85;
}
@media (max-width: 700px) {
  .financing-links { gap: 0.5rem; }
  .financing-btn { font-size: 1em; padding: 0.7em 1em; }
}

  footer {
  text-align: center;
  padding: 0.75rem 0 0.5rem 0;   /* Less vertical padding */
  background: none;              /* No background color */
  color: #CFC123;                /* Gold text */
  margin-top: 0;                 /* Remove extra space above */
  font-size: 1rem;
}

  
  /* Responsive Design */
  @media (max-width: 700px) {
    .hero-content, .section {
      padding: 1.5rem 1rem;
    }
    nav ul {
      gap: 1rem;
    }
    .hero h1 {
      font-size: 1.5rem;
    }
  }
  .cabin-gallery-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #292603;
  padding: 3rem 0 2rem 0;
}

.gallery-heading {
  color: #CFC123;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.cabin-gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem 2vw;
  scrollbar-width: thin;
  scrollbar-color: #CFC123 #292603;
}

.cabin-gallery-item {
  flex: 0 0 32vw; /* About 1/3 of viewport width */
  max-width: 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #222;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  scroll-snap-align: start;
  padding: 1rem 1rem 1.5rem 1rem;
}

.cabin-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #fff;
}

.cabin-caption {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .gallery-heading {
    font-size: 1.5rem;
  }
  .cabin-gallery-item {
    flex: 0 0 70vw;
    max-width: 90vw;
    min-width: 220px;
  }
  .cabin-gallery-item img {
    height: 140px;
  }
}
.cabin-gallery-scroll {
  scroll-behavior: smooth;
}

.cabin-gallery-scroll::-webkit-scrollbar {
  height: 8px;
  background: #292603;
}
.cabin-gallery-scroll::-webkit-scrollbar-thumb {
  background: #CFC123;
  border-radius: 4px;
}
.gallery-controls {
  position: relative;
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #CFC123;
  color: #292603;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.gallery-arrow.left {
  left: -70px; /* Adjust as needed so arrow is just outside the image row */
}

.gallery-arrow.right {
  right: -70px; /* Adjust as needed so arrow is just outside the image row */
}

.gallery-arrow:hover,
.gallery-arrow:focus {
  background: #fff;
  color: #292603;
  opacity: 1;
}

/* Make sure .cabin-gallery-scroll doesn't have extra padding on the sides */
.cabin-gallery-scroll {
  padding: 1rem 0;
}
.contact-cta-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 4rem 0 0.5rem 0; /* Reduce bottom padding */
  background: linear-gradient(180deg, #292603 0%, #cfc123 60%, #292603 100%);
}


.contact-cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
  /* background: none; */
  border-radius: 16px;
  box-shadow: none;
}


.contact-cta-heading {
  font-size: 2.1rem;
  color: #292603;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 1.1rem;
  color: #292603;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #faf9f7;
  margin-bottom: 0.2rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #CFC123;
  outline: none;
}

.cta-button {
  background: #CFC123;
  color: #292603;
  font-weight: bold;
  padding: 0.9em 2em;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  align-self: flex-end;
}

.cta-button:hover {
  background: #292603;
  color: #fff;
}

@media (max-width: 700px) {
  .contact-cta-content {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem;
  }
  .contact-cta-heading {
    font-size: 1.3rem;
  }
  .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.contact-cta-heading {
  margin-bottom: 2rem;
}

.contact-cta-content h2:last-child,
.contact-cta-content form:last-child {
  margin-bottom: 0 !important;
}

.contact-form {
  margin-bottom: 0 !important;
}

.contact-form button {
  margin-bottom: 0 !important;
}

.contact-cta-content {
  margin-bottom: 0 !important;
}

.contact-cta-section {
  overflow: auto; /* Prevents margin collapse */
}

/* About Us Page Styles */

body {
  background: #292603;
  color: #fffbe6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.about-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(120deg, #292603 60%, #cfc123 100%);
  padding: 3rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.about-hero h1 {
  color: #CFC123;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.about-hero p {
  color: #fffbe6;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-section {
  max-width: 900px;
  margin: 2.5rem auto;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
}

.about-section h2,
.about-section h3 {
  color: #CFC123;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.about-section h2 {
  font-size: 2rem;
  margin-top: 0;
}

.about-section h3 {
  font-size: 1.3rem;
}

.about-section p,
.about-section ul,
.about-section li {
  color: #fffbe6;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-section ul {
  margin: 1.2rem 0 1.5rem 1.5rem;
  padding: 0;
}

.about-section li {
  margin-bottom: 0.7rem;
  list-style: disc;
}

.about-section blockquote {
  background: rgba(207, 193, 35, 0.13);
  border-left: 5px solid #CFC123;
  color: #CFC123;
  font-style: italic;
  padding: 1.1rem 1.5rem;
  margin: 2rem 0 2.5rem 0;
  border-radius: 8px;
  font-size: 1.2rem;
}

.family-photo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  min-height: 120px;
}

.family-photo img {
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.about-highlight {
  background: linear-gradient(90deg, #cfc123 0%, #fffbe6 100%);
  color: #292603;
  border-radius: 10px;
  padding: 1.6rem 1.2rem;
  margin: 2.5rem 0 2rem 0;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 700px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-section {
    padding: 1.2rem 0.5rem;
  }
  .about-highlight {
    font-size: 1.05rem;
    padding: 1rem 0.5rem;
  }
}



/* Homes Page Styles */

body {
  background: #292603;
  color: #fffbe6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

.homes-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(120deg, #292603 60%, #cfc123 100%);
  padding: 3rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.homes-hero h1 {
  color: #CFC123;
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.homes-hero p {
  color: #fffbe6;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.homes-section {
  max-width: 1200px;
  margin: 2.5rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.homes-section h2 {
  color: #CFC123;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-align: center;
}

/*.gallery {
  width: 90vw;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}*/

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  background: transparent; /* No background behind images */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.5rem;
}

.gallery-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.caption {
  color: #fffbe6;
  font-size: 1.1em;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.cta-button {
  display: inline-block;
  margin: 1.2rem auto 0 auto;
  padding: 0.7em 2em;
  background: #CFC123;
  color: #292603;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
}
.cta-button:hover,
.cta-button:focus {
  background: #292603;
  color: #fff;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: 1fr;
    width: 98vw;
    gap: 2rem;
  }
  .gallery-item img {
    height: 220px;
  }
  .homes-section {
    padding: 1.2rem 0.5rem;
  }
  .homes-hero h1 {
    font-size: 2rem;
  }
}



/* Home Page Styles (index.html) */

body {
  background: #292603;
  color: #fffbe6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Hero Video Section */
.hero-video-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  height: 55vh;
  min-height: 320px;
  max-height: 520px;
  background-color: #292603;
}
.hero-video {
  width: 100vw;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #292603;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(41,38,3,0.38);
  color: #fffbe6;
  text-align: center;
  z-index: 2;
}
.hero-overlay h1 {
  color: #CFC123;
  font-size: 2.7rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px #292603;
}
.hero-overlay p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 0 2px 12px #292603;
}

/* Custom Cabin Sections */
.custom-cabin-section {
  max-width: 1200px;
  margin: 2.5rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}
.custom-cabin-section.alt {
  background: rgba(207,193,35,0.07);
}
.custom-cabin-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.custom-cabin-text {
  flex: 1;
}
.custom-cabin-text h2 {
  color: #CFC123;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.custom-cabin-text p {
  color: #fffbe6;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.custom-cabin-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-cabin-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

/* Responsive for custom cabin sections */
@media (max-width: 900px) {
  .custom-cabin-content {
    flex-direction: column;
    gap: 2rem;
  }
  .custom-cabin-image img {
    max-width: 90vw;
  }
}

/* Cabin Gallery Section */
.cabin-gallery-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #292603;
  padding: 3rem 0 2rem 0;
}
.gallery-heading {
  color: #CFC123;
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.gallery-controls {
  position: relative;
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.cabin-gallery-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem 0;
  width: 80vw;
  max-width: 1000px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cabin-gallery-scroll::-webkit-scrollbar {
  display: none;
}
.cabin-gallery-item {
  flex: 0 0 32vw;
  max-width: 400px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  scroll-snap-align: start;
  padding: 1rem 1rem 1.5rem 1rem;
}
.cabin-gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: #fff;
}
.cabin-caption {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #CFC123;
  color: #292603;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.gallery-arrow.left { left: -60px; }
.gallery-arrow.right { right: -60px; }
.gallery-arrow:hover,
.gallery-arrow:focus {
  background: #fff;
  color: #292603;
  opacity: 1;
}
@media (max-width: 900px) {
  .gallery-heading { font-size: 1.5rem; }
  .cabin-gallery-item { flex: 0 0 70vw; max-width: 90vw; min-width: 220px; }
  .cabin-gallery-item img { height: 140px; }
  .cabin-gallery-scroll { width: 90vw; }
  .gallery-arrow.left { left: -30px; }
  .gallery-arrow.right { right: -30px; }
}

/* Contact CTA Section */
.contact-cta-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 4rem 0 0.5rem 0;
  background: linear-gradient(180deg, #292603 0%, #cfc123 50%, #292603 100%);
}
.contact-cta-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
  border-radius: 16px;
  box-shadow: none;
}
.contact-cta-heading {
  font-size: 2.1rem;
  color: #292603;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form-row {
  display: flex;
  gap: 1.5rem;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  font-size: 1.1rem;
  color: #292603;
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.2);
  color: #292603;
  border: 2px solid #CFC123;
  border-radius: 6px;
  padding: 0.75em;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 0.2rem;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.35);
  border-color: #292603;
  outline: none;
}
.cta-button {
  display: inline-block;
  margin: 1.2rem auto 0 auto;
  padding: 0.9em 2em;
  background: #CFC123;
  color: #292603;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
  align-self: flex-end;
}
.cta-button:hover {
  background: #292603;
  color: #fff;
}
@media (max-width: 700px) {
  .contact-cta-content { padding: 1.2rem 0.5rem 0.5rem 0.5rem; }
  .contact-cta-heading { font-size: 1.3rem; }
  .form-row { flex-direction: column; gap: 0.5rem; }
}

/* Footer */
footer {
  text-align: center;
  padding: 0.75rem 0 0.5rem 0;
  background: none;
  color: #CFC123;
  margin-top: 0;
  font-size: 1rem;
}


/* Reviews Page Styles */

.reviews-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(120deg, #292603 60%, #cfc123 100%);
  padding: 3rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.reviews-hero h1 {
  color: #CFC123;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.reviews-hero p {
  color: #fffbe6;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.reviews-section {
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.review-card {
  background: linear-gradient(90deg, #cfc123 0%, #fffbe6 100%);
  color: #292603;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  font-size: 1.15rem;
  font-weight: 500;
  position: relative;
  text-align: center;
}

.review-quote {
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-card::before {
  content: "“";
  font-size: 3rem;
  color: #CFC123;
  position: absolute;
  left: 1.2rem;
  top: 0.5rem;
  z-index: 0;
  opacity: 0.25;
  font-family: serif;
}

.review-card::after {
  content: "”";
  font-size: 3rem;
  color: #CFC123;
  position: absolute;
  right: 1.2rem;
  bottom: 0.5rem;
  z-index: 0;
  opacity: 0.25;
  font-family: serif;
}

@media (max-width: 700px) {
  .reviews-hero h1 {
    font-size: 1.7rem;
  }
  .reviews-section {
    padding: 1.2rem 0.5rem;
  }
  .review-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    font-size: 1rem;
  }
}



/* Contact Page Styles */

.contact-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(120deg, #292603 60%, #cfc123 100%);
  padding: 3rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.contact-hero h1 {
  color: #CFC123;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.contact-hero p {
  color: #fffbe6;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-section {
  max-width: 600px;
  margin: 2.5rem auto 2rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: #fffbe6;
  font-size: 1.1rem;
}
.contact-info li {
  margin-bottom: 0.7rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 1.1rem;
  color: #292603;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.2);
  color: #292603;
  border: 2px solid #CFC123;
  border-radius: 6px;
  padding: 0.75em;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, background 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.35);
  border-color: #292603;
  outline: none;
}

.cta-button {
  display: inline-block;
  margin: 1.2rem auto 0 auto;
  padding: 0.9em 2em;
  background: #CFC123;
  color: #292603;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1.1em;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  cursor: pointer;
}
.cta-button:hover {
  background: #292603;
  color: #fff;
}

.contact-note {
  margin-top: 1em;
  color: #fffbe6;
  font-size: 0.97em;
  text-align: center;
  opacity: 0.75;
}

@media (max-width: 700px) {
  .contact-hero h1 {
    font-size: 1.7rem;
  }
  .contact-section {
    padding: 1.2rem 0.5rem;
  }
  .contact-card {
    gap: 1.2rem;
  }
}


/* Cabin Detail Page Styles - Updated for Larger Images */

.cabin-detail-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: linear-gradient(120deg, #292603 60%, #cfc123 100%);
  padding: 3rem 1.5rem 2rem 1.5rem;
  text-align: center;
}

.cabin-detail-hero h1 {
  color: #CFC123;
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.cabin-detail-hero p {
  color: #fffbe6;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.cabin-detail-main {
  max-width: 1400px;
  margin: 2.5rem auto 2rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
}

.cabin-gallery-viewer {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 0;
}

.cabin-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: #CFC123;
  color: #292603;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.cabin-gallery-arrow.left { left: -60px; }
.cabin-gallery-arrow.right { right: -60px; }
.cabin-gallery-arrow:hover,
.cabin-gallery-arrow:focus {
  background: #292603;
  color: #fff;
  opacity: 1;
}

.cabin-gallery-image-wrapper {
  width: 1100px;
  max-width: 98vw;
  height: 750px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cabin-gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  transition: opacity 0.3s;
}

.cabin-detail-info {
  flex: 1;
  min-width: 260px;
  color: #fffbe6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
}

.cabin-detail-info h2 {
  color: #CFC123;
  font-size: 2rem;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}

.cabin-detail-info ul {
  margin: 0 0 1.2rem 1.2rem;
  padding: 0;
  color: #fffbe6;
  font-size: 1.1rem;
}

.cabin-detail-info li {
  margin-bottom: 0.6rem;
  list-style: disc;
}

.cabin-detail-info .cta-button {
  margin-top: 1.5rem;
  align-self: flex-start;
}

@media (max-width: 1400px) {
  .cabin-gallery-image-wrapper {
    width: 90vw;
    height: 60vw; /* Keeps the image large but responsive */
    max-height: 80vh;
  }
}

@media (max-width: 1000px) {
  .cabin-detail-main {
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
  }
  .cabin-gallery-image-wrapper {
    width: 98vw;
    height: 55vw;
    max-height: 400px;
  }
}

@media (max-width: 700px) {
  .cabin-detail-hero h1 { font-size: 1.7rem; }
  .cabin-detail-main { padding: 1.2rem 0.2rem; }
  .cabin-gallery-arrow.left { left: -20px; }
  .cabin-gallery-arrow.right { right: -20px; }
  .cabin-gallery-image-wrapper {
    height: 220px;
  }
}

.homes-section {
  max-width: 1700px; /* Must be >= .gallery max-width */
  margin: 2.5rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}



/* Custom Cabin New Section */
.homes-section {
  max-width: 900px;
  margin: 2.5rem auto;
  background: rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.homes-section h2 {
  color: #CFC123;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-align: center;
}

.cabin-includes-box {
  background: linear-gradient(90deg, #cfc123 0%, #fffbe6 100%);
  color: #292603;
  border-radius: 10px;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cabin-includes-box h3 {
  margin-top: 0;
  color: #292603;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.cabin-includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
  font-size: 1.1rem;
}

.cabin-includes-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
}

.checkmark {
  color: #35731c;
  font-weight: bold;
  margin-right: 0.7em;
  font-size: 1.2em;
}

.cabin-note {
  background: #292603;
  color: #fffbe6;
  border-radius: 8px;
  padding: 1em 1em 0.8em 1em;
  margin-top: 1.2em;
  font-size: 1.08em;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cabin-pricing-box {
  margin-top: 2.2rem;
}

.cabin-pricing-box h3 {
  color: #CFC123;
  margin-bottom: 1rem;
  font-size: 1.18rem;
  font-weight: bold;
  text-align: left;
}

.cabin-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  background: #fffbe6;
  color: #292603;
  border-radius: 8px;
  overflow: hidden;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.cabin-pricing-table th,
.cabin-pricing-table td {
  padding: 0.7em 1em;
  text-align: left;
}

.cabin-pricing-table th {
  background: #CFC123;
  color: #292603;
  font-weight: bold;
}

.cabin-pricing-table tr:nth-child(even) td {
  background: #f8f5e0;
}

.cabin-price-note {
  color: #292603;
  font-size: 0.98em;
  margin-top: 0.7em;
  text-align: right;
}

@media (max-width: 700px) {
  .homes-section {
    padding: 1.2rem 0.5rem;
  }
  .cabin-includes-box, .cabin-pricing-box {
    padding: 1em 0.5em;
  }
  .cabin-pricing-table th, .cabin-pricing-table td {
    padding: 0.5em 0.5em;
    font-size: 0.98em;
  }
}
