@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  margin-top: 30px;
}

body {
  background: linear-gradient(135deg, #262023, #362c31);
  font-family: 'Montserrat', sans-serif;
  color: #ffdce1;
  line-height: 1.6;
  min-height: 100vh;
  padding: auto 5px auto 5px;
}

strong {
  font-weight: bolder;
  color: #e5ef11;
}

p {
  color: white;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: white;
}

/* Reset & base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Navbar base styles */
.navbar {
  background: #362f2f;
  background: radial-gradient(circle, rgb(44 74 48) 0%, rgb(54 14 22) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  position: relative;
  z-index: 10000;
  /* Ensure navbar sits above other content */
}

.navbar-logo a {
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  text-decoration: none;
}

/* Desktop menu */
.navbar-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.navbar-menu li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  transition: background-color 0.3s ease;
}

.navbar-menu li a:hover,
.navbar-menu li a:focus {
  background-color: black;
  border-radius: 4px;
}

/* Hamburger toggle button (hidden on desktop) */

/* Mobile responsive styles */
@media (max-width: 768px) {
  .navbar-menu {
    position: absolute;
    top: 56px;
    /* Height of navbar */
    right: 0;
    background: #9c1010;
    background: radial-gradient(circle, rgba(156, 16, 16, 1) 0%, rgba(212, 38, 73, 1) 100%);
    width: 200px;
    flex-direction: column;
    padding: 1rem 0;
    border-radius: 0 0 0 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    z-index: 11000;
    /* High so it overlays mobile */
  }

  /* Hide menu by default using 'hidden' attribute */
  .navbar-menu[hidden] {
    display: none;
  }

  .navbar-menu li a {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.hidden {
  position: relative;
  background-size: cover;
  height: 600px;
  color: #ffdce4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: inset 0 0 100px #15131c80;
  max-width: 100vw;
  overflow: hidden;
}

section.reviews {
  color: #fff;
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.prices-table {
  width: 97%;
  max-width: 1130px;
  margin: 30px auto 0 auto;
  border-collapse: collapse;
  color: #fff;
}

.prices-table th,
.prices-table td {
  border: 1px solid #fff;
  padding: 6px 0px;
  text-align: center;
  color: white;
  font-weight: 700;
}

.prices-table th {
  background-color: #523350;
  color: white;
  font-weight: 700;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 0 40px #ff4d92;
  user-select: none;
}

section.reviews {
  background: #2f4046;
  padding: 40px 30px;
  border-radius: 5px;
  max-width: 880px;
  margin: 0 auto 60px auto;
  color: #fff;
}

.review-card {
  background: #163b62;
  padding: 25px 18px;
  margin-bottom: 24px;
  border-radius: 12px;
  font-style: italic;
  box-shadow: 0 0 15px #636868aa;
  color: white;
}

footer {
  background-color: #a50860;
  color: #ffcce1;
  padding: 18px 20px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;

}

/* Floating buttons base styling */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 2%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10000;
  /* Ensure on top */
}

.float-btn {
  background-color: #25a3d36b;
  /* WhatsApp green */
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;

  line-height: 50px;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* Different bg colors for call button */
.float-btn.call {
  background-color: rgb(156 16 16 / 47%);
}


/* Responsive for mobile */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 15px;
    right: 5%;
    gap: 12px;
  }

  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
    line-height: 45px;
  }
}

/* Responsive */
@media (max-width: 768px) {

  section.reviews {
    margin: 20px;
    padding: 20px;
  }
}

.faq {
  max-width: 1130px;
  margin: 50px auto 60px auto;
  background-color: #2d4838;
  border-radius: 5px;
  padding: 30px 20px;
  color: #fff0f6;
  box-shadow: 0 0 5px #9ca0a1aa;
}

.faq-item {
  margin-bottom: 18px;
  border-top: 1px solid #ff8fc4;
}

.faq-question {
  width: 97%;
  text-align: left;
  font-weight: 700;
  padding: 15px;
  font-size: 1.2rem;
  background-color: transparent;
  border: none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question:hover,
.faq-question:focus {
  color: #fff;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 12px 20px 20px 20px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff;
}

.faq-answer[hidden] {
  display: none;
}

/* Mobile friendly font scaling */
@media (max-width: 600px) {

  .faq-question {
    font-size: 1.1rem;
  }

  .faq-answer {
    font-size: 1rem;
  }
}

.card-section {
  max-width: 1140px;
  margin: 50px auto 70px auto;
  color: #ffffff;
}

.card-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3 rem;
  margin-bottom: 30px;
  border-bottom: 2px outset;
  padding-bottom: 10px;


}

.card-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  border-spacing: 1px;
  margin-bottom: 30px;
  border-bottom: 2px outset;
  padding-bottom: 10px;

}

.card-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 30px;
  border-bottom: 2px outset;
  padding-bottom: 10px;

}

.card-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  margin-bottom: 30px;
  border-bottom: 2px outset;
  padding-bottom: 10px;

}


.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background-color: #354b5a;
  box-shadow: 0 0 15px #366053aa;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.card:focus-within {
  
  box-shadow: 0 0 40px #483485cc;
  outline: none;
    transform: scale(0.9);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 3px solid #4d7cff;
  cursor: pointer;
}

.card-content {
  padding: 15px 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.star-rating {
  color: #e9ca2b;
  font-size: 1.2rem;
}

.star-rating .fa-star {
  margin-right: 4px;
}

.status {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 5px;
  width: fit-content;
  letter-spacing: 0.1em;
}

.status.available {
  background-color: rgba(156, 16, 16, 1);
  color: #ffffff;
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 15px;
}

.action-btn {
  flex: 1;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 0 18px rgb(54 14 22);
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.action-btn i {
  font-size: 1.4rem;
}

.action-btn.call {
  background-color: #5a123b;
}

.action-btn.call:hover,
.action-btn.call:focus {
  background-color: #363d5e;
}

.action-btn.whatsapp {
  background-color: #2e292c87;
}

.action-btn.whatsapp:hover,
.action-btn.whatsapp:focus {
  background-color: #54450f;
}

/* Mobile Responsiveness */

@media (max-width: 768px) {
  .card-container {
    grid-template-columns: 1fr 1fr;
  }

  .card img {
    height: 220px;
  }
}

@media (max-width: 440px) {
  .card-container {
    grid-template-columns: 1fr;
  }

  .card img {
    height: 300px;
  }

  .star-rating {
    font-size: 1rem;
  }

  .action-btn {
    font-size: 1rem;
    padding: 8px 0;
  }
}

.site-footer {
  background: radial-gradient(circle, rgb(44 74 48) 0%, rgb(54 14 22) 100%);
  color: #ffcce1;
  padding: 40px 15px 20px 15px;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: inset 0 10px 30px #244e5299;
  position: relative;
}

.footer-container {
  display: flex;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto 20px auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-container section {
  flex: 1 1 260px;
  min-width: 220px;
}

.footer-contact h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 6px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: white;
}

.footer-contact a {
  color: #fff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-contact a:focus {
  color: #fff0f6;
  text-decoration: underline;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.footer-socials a {
  color: #ffbdd7;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  outline-offset: 3px;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: #fff0f6;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #fff;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0 10px 0;

  position: relative;
  font-size: 0.9rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
  }
}

.mobile-section {
  max-width: 100%;
  margin: 0px auto 50px auto;
  color: #ffc0d1;

}

/* Accessibility helper */

/* Responsive Font Scaling */

/* Mobile responsiveness: stack vertically */

.tags-section {
  max-width: 1100px;
  margin: 50px auto 70px auto;
  padding: 0 15px;
  color: #362f9f;
}

.tags-section h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  border-bottom: 2px outset;
  padding-bottom: 10px;

  color: white;
}

/* Tags Section */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tag-btn {
  background: #1e555e;
  border: none;
  padding: 12px 22px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  cursor: pointer;
  box-shadow: 0 0 20px #2c536eb3;
  transition: background-color 0.3s ease;
}

.tag-btn:hover,
.tag-btn:focus {
  background: #50421a;
  outline: none;
}

/* Location Section */

/* Highlight selected location */

/* Responsive google map container for aspect ratio */

/* Responsive adjustments */

/* Contact info styles */

/* Responsive */

.hidden {
  width: 100%
}

.mobile-hidden {
  display: none
}

@media (max-width:499px) {
  .mobile-hidden {
    display: block
  }

  .hidden {
    display: none
  }
}


@media (max-device-width: 600px) {
  section {
    text-align: center;
    padding: 0 10px;
  }
.mobile-section {
  padding: 0 0;
}
  .reviews {
    display: none;
  }
}
::-webkit-scrollbar {
    display: none;

}