/* =========================
   RESET & BASE STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #d7b56d;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Image with Blur & Fade */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/hero.webp") no-repeat center center fixed;
  background-size: cover;
  filter: blur(5px) brightness(0.9); /* Blur + fade */
  z-index: -2;
}

/* Overlay */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(6px);
  padding: 0 50px;
  z-index: 1000;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: #111;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo img {
  height: 60px;   /* adjust logo size */
  width: auto;
}

.logo .tagline {
  font-family: 'Georgia', serif;  /* matches your reference */
  font-size: 14px;
  font-style: italic;
  color: #d7b56d;   /* golden color like the text in your logo */
  margin-top: 4px;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #d4af37;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.book-btn a {
  background: #d4af37;
  color: #000;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.book-btn a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   HERO SECTIONS
========================= */
.hero,
.page-hero {
  height: auto;           /* Change from 100vh to auto */
  min-height: 300px;      /* Optional: set a minimum height */
  padding: 100px 0 20px;   /* Reduced bottom padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  
}

.hero h1,
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}

.hero p,
.page-hero p {
  font-size: 1.2rem;
  animation: fadeInUp 1.2s ease;
}

.hero h1,
.page-hero h1 {
  color: #ffffff;
}

.hero p,
.page-hero p {
  color: #d4af37;
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   MAIN CONTENT
========================= */
main {
  padding-top: 100px;
}

section {
  background: transparent; /* remove white background */
  padding: 60px 10%;
  margin: 30px auto;
  color: #d4af37; /* make text white for contrast */
  text-shadow: 0 2px 6px rgba(0,0,0,0.6); /* glow effect for readability */
  box-shadow: none; /* remove white box effect */
}

.content-panel {
  /*background: rgba(0,0,0,0.4);  dark transparent strip */
  border-radius: 12px;
  padding: 20px;
}
section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
  color: #ffffff;
}

section p {
  max-width: 800px;
  margin: 5px auto 15px;
  text-align: center;
}

/* =========================
   GRID SYSTEM
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: rgba(0,0,0,0.6); /* Transparent white */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card h3 {
  padding: 15px;
  font-size: 1.2rem;
  color: #d4af37;
}

.card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  color: #fff;
  /*background: rgba(0, 0, 0, 0.6);*/
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card:hover img {
  transform: scale(1.08);
}

/* =========================
   CONTACT FORM
========================= */
.contact-form {
  max-width: 600px;
  margin: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
}

.contact-form button {
  background: #d4af37;
  color: #000;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #fff;
  color: #000;
}

/* =========================
   QR MENU PAGE
========================= */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.qr-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.qr-code {
  max-width: 250px;
  margin: 20px 0;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.qr-code:hover {
  transform: scale(1.05);
}

/* =========================
   FOOTER
========================= */
footer {
  background: rgba(0, 0, 0, 0.6);
  color: #ddd;
  text-align: center;
  padding: 10px 10px;
  margin-top: 40px;
  
}
 
/* ======================
  GOOGLE APS REVIEWS
========================= */
.review-btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.review-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

#reviews {
  text-align: center;
}

/* ===============================
  FORMATING FOR DISCOVER PAGE 
==================================*/

/* Discover Page Attractions */
.attraction {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 20px;
}

.attraction.reverse {
  flex-direction: row-reverse;
}

.attraction-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.attraction-text {
  flex: 1;
  color: #fff;
}

.attraction-text h2 {
  color: #d4af37; /* gold heading */
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.attraction-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #f1f1f1;
}

/* ===============================
  ABOUT SOLAN SECTION
==================================*/
.about-solan-flex {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-solan-img {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.about-solan-text {
  flex: 1;
  min-width: 220px;
}

.about-solan-bg {
  background: rgba(0,0,0,0.7); /* transparent black */
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 32px 24px;
  margin: 0 auto;
  max-width: 1000px;
}

/* ===============================
  SIGHT SECTION
==================================*/
.sight-section {
  background: transparent;
  margin: 40px auto;
  padding: 0;
  max-width: 1200px;
}

.sight-title {
  color: #ffd480;
  font-family: 'Playfair Display', cursive;
  font-size: 2.2rem;
  text-align: left;
  margin-bottom: 18px;
  margin-left: 18px;
  text-shadow: 0 2px 8px #000;
}

.sight-flex {
  display: flex;
  align-items: flex-start;
  background: rgba(0,0,0,0.7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.sight-img img {
  width: 400px;
  max-width: 100%;
  display: block;
  border-radius: 0;
}

.sight-text {
  padding: 32px 28px;
  color: #ffd480;
  flex: 1;
}

.sight-text h3 {
  color: #ffd480;
  font-size: 2rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.sight-text p {
  color: #fffbe8;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* ===============================
  ATTRACTION CARD FOR DISCOVER PAGE
==================================*/
.attraction-card {
  background: rgba(30,30,30,0.7);
  border-radius: 16px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  padding: 32px 24px;
}

.attraction-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.attraction-flex.reverse {
  flex-direction: row-reverse;
}

.attraction-image {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.attraction-image img {
  width: 400px;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid #222;
  background: #222;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.attraction-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.attraction-info h2 {
  color: #ffd480;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px #000;
}

.attraction-desc {
  background: rgba(0,0,0,0.7);
  border-radius: 8px;
  padding: 24px 28px;
  width: 100%;
}

.attraction-desc p {
  color: #fffbe8;
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0;
}

/* Lightbox Modal Styles */
.img-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.img-modal-content {
  margin: auto;
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7);
}

.img-modal-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2100;
  text-shadow: 0 2px 8px #000;
}
.img-modal-prev,
.img-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  padding: 16px;
  user-select: none;
  transition: background 0.2s ease;
}
.img-modal-prev { left: 20px; }
.img-modal-next { right: 20px; }
.img-modal-prev:hover,
.img-modal-next:hover {
  background: rgba(0,0,0,0.3);
}

/* responsive nav: hide links on small screens and show when .open */
@media (max-width: 900px) {
  .menu-toggle { display: block; cursor: pointer; z-index:60; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    right: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 50;
  }
  .nav-links.open { display: block; }
  .nav-links li { display: block; margin: 8px 0; }
}

@media (min-width: 901px) {
  .menu-toggle { display: none; }
  .nav-links { display: flex !important; position: static; background: transparent; padding: 0; box-shadow: none; }
  .nav-links li { display: inline-block; margin: 0 10px; }
}

/* Responsive for mobile */
@media (max-width: 900px) {
  .attraction-flex, .attraction-flex.reverse {
    flex-direction: column !important;
    gap: 18px;
  }
  .attraction-image img {
    width: 100%;
    height: 220px;
  }
  .attraction-image {
    flex: unset;
  }
  .attraction-info h2 {
    font-size: 2rem;
  }
}

/* ===============================
  HIGHLIGHTS SECTION FOR INDEX PAGE
==================================*/

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.highlight {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.highlight h3 {
  color: #d4af37;
  margin: 15px 0 10px;
  font-size: 20px;
}

.highlight p {
  color: #fff;
  font-size: 14px;
}

.highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===============================
  REMOVNG LINES UNDER LINKS
==================================*/
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none; /* keep it clean on hover too */
}

/* ===============================
  ROOMS PAGE CARD STYLES
==================================*/
.room-card {
  position: relative;
  height: 280px; /* Give the card a fixed height */
  background: #333; /* Fallback color */
}

.room-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  padding: 25px 15px 15px;
  margin: 0;
  text-align: left;
}

/* ===================
  ROOMS table STYLES
======================*/
.room-prices {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  color: #fff;
}

.room-prices h2 {
  color: #ffffff; /* Gold heading */
  margin-bottom: 20px;
  font-size: 2rem;
}

.room-prices table {
  width: 100%;
  border-collapse: separate; /* Changed from collapse */
  border-spacing: 0;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 12px; /* Rounded corners for the table */
  overflow: hidden; /* Ensures inner elements respect the rounded corners */
}

.room-prices th, 
.room-prices td {
  padding: 15px;
  border: 1px solid #333;
}

.room-prices th {
  background: #222;
  color: #fff;
  font-weight: bold;
}
.room-prices footer p {
  margin: 0;
  font-size: 0.9rem;
  color:#d4af37
}


.room-prices td {
  background: #f4f4f4;
  color: #000;
  font-weight: 600;
}

/* ===============================
  ROOMS PAGE SPACING
==================================*/
.page-hero + section {
  margin-top: 0; /* Remove top margin for sections right after the hero */
  padding-top: 20px; /* Reduce top padding for a tighter look */
}


/* ======================================
  Social Media link and Icons in Footer
=========================================*/
.social-links {
  margin-top: 15px;
  text-align: center;
}

.social-links a {
  margin: 0 10px;
  font-size: 22px;
  color: #d4af37; /* Gold */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ===============================
  AMENITIES LIST (ROOMS PAGE)
==================================*/
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px 20px;
  text-align: left;
}

.amenities-list li {
  background: rgba(0,0,0,0.5);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 1rem;
  color: #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}

.amenities-list li i {
  color: #d4af37; /* gold */
  font-size: 1.2rem;
  width: 20px; /* to align text */
  text-align: center;
}
/* ===============================
  Slideshow Styles (from index.html)
==================================*/
.slideshow { position: relative; width: 100%; max-width: 100%; margin: 0 auto; overflow: visible; }
.slideshow__viewport { width: 100%; height: 600px; position: relative; }
.slide { position: absolute; inset: 0; display: none; padding: 12px; box-sizing: border-box; }
.slide.active { display: block; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; border: 6px solid rgba(255,255,255,0.9); border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.45); background-clip: padding-box; }
.slideshow .prev, .slideshow .next { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; line-height: 56px; font-size: 28px; color: #fff; background: rgba(0,0,0,0.45); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; user-select: none; z-index: 20; transition: background .18s, transform .12s; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.slideshow .prev { left: 18px; }
.slideshow .next { right: 18px; }
.slideshow .prev:hover, .slideshow .next:hover { background: rgba(0,0,0,0.65); transform: translateY(-50%) scale(1.05); }
.dots { text-align: center; margin-top: 14px; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.25); margin: 0 6px; cursor: pointer; }
.dot.active { background: rgba(0,0,0,0.7); }

/* responsive height tweaks for slideshow */
@media (max-width: 900px) { .slideshow__viewport { height: 48vh; } .slideshow .prev,.slideshow .next{width:48px;height:48px;font-size:22px;} }
@media (max-width: 480px) { .slideshow__viewport { height: 36vh; } .slideshow .prev,.slideshow .next{width:40px;height:40px;font-size:18px;} }

/* ===============================
  ROOMS PAGE GALLERY
==================================*/ 
.room-gallery-section {
  max-width: 1400px; /* Increased width to accommodate horizontal layout */
  margin: 40px auto;
  padding: 0 20px;
}

.room-gallery-container {
  display: flex;
  gap: 24px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.room-gallery-wrapper {
  /* Style each wrapper as a distinct card */
  flex: 1;
  min-width: 0;
  background: rgba(0,0,0,0.65);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  margin-bottom: 0;
}

.room-gallery-title {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 20px;
  color: #d4af37;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.room-gallery {
  display: block;
}

.room-gallery-main img {
  width: 100%;
  height: 250px; /* Adjusted height for horizontal cards */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.room-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Force 4 columns in one line */
  gap: 12px;
}

.room-gallery-thumbnails img {
  width: 100%;
  height: 60px; /* Adjusted thumbnail height */
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.room-gallery-thumbnails img:hover,
.room-gallery-thumbnails img.active {
  border-color: #d4af37;
  opacity: 1;
}

.room-gallery-dots {
  text-align: center;
  margin-top: 20px;
}

.room-gallery-dots .dot {
  background: rgba(255,255,255,0.4);
}

.room-gallery-dots .dot.active {
  background: #fff;
}

@media (max-width: 600px) {
  .room-gallery-container {
    flex-direction: column;
  }
  .room-gallery-wrapper {
    margin-bottom: 40px;
  }
  .room-gallery-main img {
    height: 300px;
  }
  .room-gallery-thumbnails img {
    height: 60px;
  }
}


.menu-status h2{
  color:#d4af37;
}
/* updated css for book button */
button, .btn, .book-btn {
  white-space: nowrap;       /* prevents text from breaking */
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  display: inline-block;
  max-width: 100%;           /* prevents overflow */
  text-align: center;
}

@media (max-width: 480px) {
  button, .btn, .book-btn {
    font-size: 14px;         /* smaller font on mobile */
    padding: 8px 16px;
  }
}

/* =================================
  COLOR OF LINKS IN CONTACT US PAGE
====================================*/
.card a[href^="tel:"],
.card a[href^="mailto:"] {
  color: #fff;
}

/* Ensure visited contact links in cards are also white */
.card a:visited {
  color: #fff;
}

