/* ----------------------------------- */
/* General Reset and Basic Styling     */
/* ----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Add viewport-relative font sizing */
html {
  font-size: 16px;
}

/* Body: Soft cream background to evoke a warm sunset glow */
body {
  font-family: "Lato", sans-serif;
  color: #777;
  line-height: 1.8;
  overflow-x: hidden;
  width: 100%;
}

/* ----------------------------------- */
/* Parallax Images                      */
/* ----------------------------------- */
.bgimg-1, .bgimg-2, .bgimg-3 {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.65;
}

/* First image (Logo. Full height) */
.bgimg-1 {
  background-image: url('images/parallax1.jpg');
  min-height: 100vh;
  width: 100%;
}

/* Second image (Photo) */
.bgimg-2 {
  background-image: url("images/parallax2.jpg");
  min-height: 400px;
  width: 100%;
}

/* Third image (Contact) */
.bgimg-3 {
  background-image: url("images/parallax3.jpg");
  min-height: 400px;
  width: 100%;
}

.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}

/* ----------------------------------- */
/* Carousel Styles                      */
/* ----------------------------------- */
.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track {
  overflow: hidden;
  width: 100%;
}

.carousel-items {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.carousel-item {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel-item img:hover {
  transform: scale(1.05);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: #000;
}

/* ----------------------------------- */
/* Responsive Design                    */
/* ----------------------------------- */
@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 calc(50% - 10px);
  }
  
  .carousel-item img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    flex: 0 0 100%;
  }
  
  .carousel-item img {
    height: 200px;
  }
}

/* ----------------------------------- */
/* Print Styles                         */
/* ----------------------------------- */
@media print {
  .navigation, .nav-links {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .banner-text, #map, #reviews, #about-us, #lodging {
    page-break-inside: avoid;
  }
}

/* ----------------------------------- */
/* Header                              */
/* ----------------------------------- */
header {
  background-color: #d87f5f; /* Sunset-inspired orange */
  border-bottom: 2px solid #b86344;
  padding: 1rem;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.header-content h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.contact-info {
  font-size: 1rem;
  color: #ffeadd;
}

.contact-info a {
  color: #ffeadd;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* ----------------------------------- */
/* Banner                              */
/* ----------------------------------- */
#banner {
  background: url('images/banner2.jpg') no-repeat center center;
  background-size: cover;
  min-height: 100px;
  height: 15vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.banner-text {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem;
  text-align: center;
  width: 90%;
  max-width: 600px;
}

.banner-text h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  margin-bottom: 0.25rem;
  color: #b84f32;
}

.banner-text p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #333;
}

/* ----------------------------------- */
/* Map Section                         */
/* ----------------------------------- */
#map {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#map h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #b84f32;
}

.map-container {
  display: flex;
  justify-content: center;
  overflow-x: auto;
}

.map-container iframe {
  border: 0;
  width: 100%;
  max-width: 800px;
  height: clamp(300px, 50vh, 450px);
}

/* ----------------------------------- */
/* Photo Carousel with Side Arrows     */
/* ----------------------------------- */
#photo-carousel {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#photo-carousel h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #b84f32;
}

/* Hide radio inputs */
.carousel input {
  display: none;
}

/* Slides container */
.slides {
  position: relative;
  width: 100%;
  height: clamp(300px, 50vh, 500px);
  margin: 0 auto;
  overflow: hidden;
}

/* Each .slide is absolutely positioned, only the "active" one is displayed */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; /* Hidden by default */
  text-align: center;
}

/* Images fill the .slide container; adjust if needed */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Show the 'active' slide if its corresponding radio is checked */
#slide1:checked ~ .slides #s1,
#slide2:checked ~ .slides #s2,
#slide3:checked ~ .slides #s3,
#slide4:checked ~ .slides #s4,
#slide5:checked ~ .slides #s5,
#slide6:checked ~ .slides #s6,
#slide7:checked ~ .slides #s7,
#slide8:checked ~ .slides #s8 {
  display: block;
}

/* Navigation arrows */
.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}

/* Arrow styling */
.navigation label {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: clamp(0.3rem, 2vw, 0.5rem) clamp(0.5rem, 3vw, 1rem);
  cursor: pointer;
  font-size: clamp(1.5rem, 4vw, 2rem);
  border-radius: 4px;
  transition: background 0.3s ease;
  user-select: none;
}

.navigation label:hover {
  background: rgba(0, 0, 0, 0.6);
}

.prev {
  margin-left: 10px;
}

.next {
  margin-right: 10px;
}

/* ----------------------------------- */
/* Review Section                      */
/* ----------------------------------- */
#reviews {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

#reviews h3 {
  color: #b84f32;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#reviews a {
  color: #b84f32;
  text-decoration: none;
  font-weight: bold;
}

#reviews a:hover


  /* ----------------------------------- */
  /* Footer Section                      */
  /* ----------------------------------- */
footer {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  transform: none;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column; /* if you want stacked elements */
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #d87f5f;
  color: #b84f32;
  margin-top: 2rem;
}

.footer-links {
  /*max-width: 960px;*/
  width: 100%;
  text-align: center;
}

/*.footer-links {*/
/*  margin-bottom: 0.5rem;*/
/*}*/

.footer-links a {
  color: #b84f32;                    /* High contrast white links */
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
}


/* Clearfix for any potential container issues */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}


/* ----------------------------------- */
/* About Us Section                      */
/* ----------------------------------- */

/* About Us Section */
#about-us {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#about-us h3 {
  color: #b84f32;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#about-us p {
  margin-bottom: 1.5rem;
}

#about-us ul {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

#about-us li {
  margin-bottom: 0.5rem;
  position: relative;
}

#about-us li::before {
  content: "•";
  color: #b84f32;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}


/* ----------------------------------- */
/* Lodging Section                      */
/* ----------------------------------- */

/* Lodging Section */
#lodging {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#lodging h3 {
  color: #b84f32;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#lodging p {
  margin-bottom: 1.5rem;
}

#lodging ul {
  list-style-type: none;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

#lodging li {
  margin-bottom: 0.5rem;
  position: relative;
}

#lodging li::before {
  content: "•";
  color: #b84f32;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* ----------------------------------- */
/* Rates Table Section                      */
/* ----------------------------------- */
.rates-table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  display: block;
  border-collapse: collapse;
  margin-bottom: 1rem;
}

.rates-table th, .rates-table td {
  border: 1px solid #b84f32;
  padding: 0.5rem;
  text-align: center;
}

.rates-table th {
  background-color: #d87f5f;
  color: white;
}

.rates-table tr:nth-child(even) {
  background-color: #fdf3ec;
}


/* ----------------------------------- */
/* Navigation Section                      */
/* ----------------------------------- */
.main-nav {
  /*background-color: #d87f5f;*/
  padding: 1rem 0;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
}

.nav-links a {
  color: #b84f32;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Add Media Queries */
@media screen and (max-width: 768px) {
  .header-content {
    text-align: center;
  }
  
  .contact-info {
    font-size: 0.9rem;
  }
  
  #map, #photo-carousel, #reviews, #about-us, #lodging {
    padding: 0 0.5rem;
  }
  
  .navigation {
    padding: 0 0.5rem;
  }
  
  .nav-links a {
    margin: 0.5rem;
    display: inline-block;
  }
  
  .rates-table th, .rates-table td {
    padding: 0.3rem;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .banner-text {
    width: 95%;
    padding: 0.8rem;
  }
  
  .navigation label {
    padding: 0.3rem 0.5rem;
  }
  
  .footer-links a {
    display: block;
    margin: 0.5rem 0;
  }
  
  .rates-table th, .rates-table td {
    padding: 0.2rem;
    font-size: 0.8rem;
  }
}
