body {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  background: #f5ebdc;
  color: #2e2e2e;
  font-size: 18px;
  line-height: 1.6;
}

/* HERO */
.hero {
  /*background: url("images/exterior-1.jpeg") center/cover no-repeat;*/
  background: url("images/carpet-inn-opelika.jpg") center/cover no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 70px;
  border-radius: 20px;
  text-align: center;
}

.hero-content h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.2rem;
}

/* BUTTON */
.primary-btn {
  display: inline-block;
  margin-top: 20px;
  background: #2f4f3f;
  color: white;
  padding: 16px 36px;
  border-radius: 35px;
  font-weight: 700;
  text-decoration: none;
}

/* CHECK‑IN BANNER */
.checkin-banner {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #ffffffdd;
  padding: 20px;
  max-width: 750px;
  margin: -40px auto 40px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.checkin-item {
  font-size: 1.1rem;
  font-weight: 700;
}

/* SECTIONS */
.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.highlight {
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
}

h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  margin-bottom: 35px;
}

/* AMENITIES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature {
  background: white;
  padding: 22px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.no-pets {
  background: #ffeaea;
  border-left: 6px solid #c0392b;
}

/* ATTRACTIONS */
.attraction-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.attraction {
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.attraction span {
  display: block;
  font-size: 0.95rem;
  color: #555;
  margin-top: 6px;
}

/* FAQ */
.faq details {
  background: white;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

/* CALL STICKY */
.call-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2f4f3f;
  color: white;
  padding: 16px 26px;
  border-radius: 35px;
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92%;
  max-height: 92%;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

/* MAP SECTION */
.map-section-full {
  padding: 100px 20px;
  text-align: center;
}

.map-address {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.map-card {
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.map-card iframe {
  width: 100%;
  height: 520px;
  border: 0;
}

@media (max-width: 768px) {
  .map-card iframe {
    height: 380px;
  }
}

/* ✅ SLIDESHOW GALLERY */
.slideshow-container {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.slideshow-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slideshow-container img.fade-in {
  opacity: 1;
}

.slideshow-caption {
  margin-top: 20px;
  font-size: 1.05rem;
  text-align: center;
  color: #444;
}

@media (max-width: 768px) {
  .slideshow-container img {
    height: 320px;
  }
}


/* ✅ SLIDESHOW NAVIGATION ARROWS */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.2s ease;
}

.slide-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slide-arrow.prev {
  left: 15px;
}

.slide-arrow.next {
  right: 15px;
}

.slideshow-container {
  position: relative;
}

/* Smaller arrows on mobile */
@media (max-width: 768px) {
  .slide-arrow {
    font-size: 1.6rem;
    padding: 8px 12px;
  }
}

/* FOOTER */
footer {
  background: #e8dcc6;
  text-align: center;
  padding: 35px 15px;
}
``
