/* ===== GENERAL ===== */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background: #ffffff;
}

h1, h2, h3 {
  margin: 0 0 15px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  display: inline-block;
  padding: 12px 20px;
  background: #a00;
  color: #fff;
  border-radius: 20px;
  font-weight: 500;
  font-size: 22px;
  margin: 10px;
  box-shadow: 0 2px 6px rgba(50, 0, 0, 0.534);
}

.btn-primary-hero {
  display: block;
  padding: 15px 70px;
  background: #a00;
  color: #fff;
  border-radius: 20px;
  font-weight: 550;
  font-size: 22px;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(50, 0, 0, 0.534);
   border: none;
  cursor: pointer;
  text-align: center;
  width: fit-content;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-primary-hero:hover {
  background: #f39c12;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #a00;
  color: #fff;
  border-radius: 20px;
  margin-top: 45px;
}

/* ===== HEADER ===== */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #a00;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  box-shadow: 0 2px 6px rgba(50, 0, 0, 0.534);
}

.payment-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  background: #a00;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 60px;
  box-shadow: 0 2px 6px rgba(50, 0, 0, 0.534);
}

.logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
      margin-left: 20px;
    }

.logo img {
      display: block;
      max-height: 60px;  
      width: auto;
      object-fit: contain;
      height: auto;
    }

.payment-logo {
      display: flex;
      align-items: center;
      flex: 0 0 auto;
      margin-left: 20px;
    }

.payment-logo img {
      display: block;
      max-height: 60px;  
      width: auto;
      object-fit: contain;
      height: auto;
    }

/* ===== NAVBAR (desktop) ===== */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  padding: 8px 15px;
  color: #ffffff;
  font-weight: 250;
  font-size: small;
  border-radius: 30px;
}

.navbar a.active {
  background: #ffffff;
  color: #a00;
  border-radius: 30px;
}

.navbar a:hover {
  background-color: #f39c12;
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 1101;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    z-index: 1000;
    font-size: small;
  
  }

  .navbar.active {
    display: flex;
  }

  .navbar ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .navbar li {
    width: 100%;
  }

  .navbar a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    color: #a00;
    font-weight: 600;
    border-left: 5px solid transparent;
    transition: background 0.3s, border-color 0.3s;
  }

  .navbar a:hover,
  .navbar a.active {
    background: #d1d1d1;
    border-left: 5px solid #a00;
    color: #a00;
  }
}


/* ===== HERO SECTION ===== */
.hero {
  height: 500px;
  position: relative;
  overflow: hidden;
}

/* slide layer */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.hero-slides .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* keep slides present; visibility controlled via opacity/visibility for fade */
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease;
}

/* evenly spaced delays for 5 slides (no animation, JS controls display) */
.hero-slides .slide:nth-child(1) { background-image: url('images/homepagepic.jpg'); }
.hero-slides .slide:nth-child(2) { background-image: url('images/apartmentpic.jpg'); }
.hero-slides .slide:nth-child(3) { background-image: url('images/DarNis-main.jpg'); }
.hero-slides .slide:nth-child(4) { background-image: url('images/recreationBG.jpg'); }
.hero-slides .slide:nth-child(5) { background-image: url('images/swimming-pool-main.jpg'); }


.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}



/* changed: keyframes tuned for 5 slides (each gets ~20% of the cycle) */
@keyframes slideFade {
  0%   { opacity: 0; }
  4%   { opacity: 1; }
  20%  { opacity: 1; }
  24%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero h1 {
  font-size: 56px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 2000px;
  line-height: 70px;
}

.hbtn-primary-hero {
  padding: 25px 50px;
  background: #a00;
  color: #fff;
  border-radius: 20px;
  font-weight: 550;
  font-size: 25px;
  margin: 20px auto;
}

.hbtn-primary-hero:hover {
  background: #f39c12;
}


.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-stats div span {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-shadow: 0 2px 6px rgba(50, 0, 0, 0.534);
}

/* responsive tweak: adjust text on small screens */
@media (max-width: 900px) {
  .hero-overlay h1 
  { font-size: 40px;
    font-weight: 400px; }
  .hero h1 {
  font-size: 40px;
  line-height: 50px;
}

}

@media (max-width: 600px) {
  .hero-overlay h1 { font-size: 40px; font-weight: 400px; }
.hero h1 {
  font-size: 36px;
  line-height: 45px;
}

/* Mobile: make confirm and cancel buttons ideal for touch */
@media (max-width: 480px) {
  .booking-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    margin-top: 1rem;
  }

  .booking-buttons .btn-book,
  .booking-buttons .btn-cancel {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border-radius: 12px;
    min-width: 0;
    display: inline-block;
    text-align: center;
  }

  .booking-buttons .btn-book { background: #a00; color: #fff; }
  .booking-buttons .btn-cancel { background: #f39c12; color: #fff; }
}


.hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.hero-stats div span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-shadow: 0 2px 6px rgba(50, 0, 0, 0.534);
}
.hbtn-primary-hero {
  padding: 18px 20px;
  background: #a00;
  color: #fff;
  border-radius: 20px;
  font-weight: 550;
  font-size: 18px;
  margin: 35px auto;
}

.hbtn-primary-hero:hover {
  background: #f39c12;
}
}


/* ===== SEARCH BAR ===== */
.search-bar {
  background: #d1d1d1;
  padding: 30px 0px;
  text-align: center;
}

.search-bar form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.search-bar select,
.search-bar input,
.search-bar button {
  padding: 12px;
  border: 1.3px solid #979797;
  border-radius: 9px;
  font-size: 14px;
  min-width: 140px;
  margin-bottom: 10px;
  flex: 1 1 160px;
  box-sizing: border-box;
}

.search-bar button {
  box-shadow: 0 1.5px 4px rgba(82, 53, 53, 0.534);
  background-color: #f39c12;
  color: #fff;
  text-shadow: 0 1px 1px rgba(120, 0, 0, 0.234);
}

.search-bar button:hover {
  background-color: #a00;
  color: #fff;
}

.search-bar label  {
    font-size: 11px;
  }
@media (max-width: 900px) {
  .search-bar form {
    flex-direction: row;
    align-items: center;
    padding: 5px 50px;
  }

  .search-bar select,
  .search-bar input,
  .search-bar button {
    width: 80%;
    height: 50px;
    font-size: 12px;
  }

  .search-bar label  {
    display: none;
  }
}

/* ===== ROOMS ===== */
.rooms {
  padding: 30px;
  text-align: center;
}

.room-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
  
@media (max-width: 600px) {
  .search-bar form {
    flex-direction: row;
    align-items: center;
    padding: 5px 50px;
  }

  .search-bar select,
  .search-bar input,
  .search-bar button {
    width: 80%;
    height: 50px;
    font-size: 12px;
  }

  .search-bar label  {
    display: none;
  }
}

/* ===== ROOMS ===== */
.rooms {
  padding: 30px;
  text-align: center;
}

.room-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.room-list img {
  width: 22%;
  border-radius: 10px;
  max-width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.room-list img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .room-list img {
    width: 30%;
  }
}

@media (max-width: 600px) {
  .room-list img {
    width: 30%;
  }
}
/* ===== PROMOTIONS ===== */
.promotions {
  padding: 40px;
  margin-bottom: 10px;
  background: #d1d1d1;
  text-align: center;
}

.promo-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.promo-card {
  background: #a00;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
  font-size: 15px;
  font-weight: 100px;
  line-height: 25px;
}

@media (max-width: 900px) {
  .promo-card {
  background: #a00;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
  font-size: 13px;
  font-weight: 70px;
  line-height: 25px;
}  
}


@media (max-width: 600px) {
  .promo-card {
  background: #a00;
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 300px;
  font-size: 13px;
  font-weight: 70px;
  line-height: 25px;
}  
}


/* ===== GALLERY ===== */
.gallery {
  padding: 35px;
  text-align: center;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  justify-items: center;
}

.gallery-list img {
  width: 92%;
  max-width: 350px;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-list img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .gallery-list {
    grid-template-rows: repeat(2, 1fr);
  }
  .gallery-list img {
    width: 88%;
    height: 88%;
  }
}

@media (max-width: 600px) {
  .gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-list img {
    width: 95%;
    height: 95%;
  }
}

/* ===== MALL ===== */
.mall-cinema {
  padding: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .mall-cinema p {
  font-size: small;
  line-height: 25px;
  padding-left: 10%;
  padding-right: 10%;
}
.mall-cinema h2 {
  font-size: small;
}
}

@media (max-width: 600px) {
  .mall-cinema p {
  font-size: small;
  line-height: 22px;
   padding-left: 10%;
  padding-right: 10%;
}
  .mall-cinema h2 {
  font-size: 18px;
}
}


.coming-soon {
  background: #f39c12;
  color: #fff;
  padding: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  border-radius: 10px;
  margin-left: 7%;
  margin-right: 7%;
}

/* ===== ABOUT ===== */
.about {
  padding: 50px;
  background: #fcd3b5;
  line-height: 25px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text h2 {
  color: #a00;
  font-size: 25px;
  margin-bottom: 15px;
}

.about-text p {
  color: #000;
  font-size: 14px;
  margin-bottom: 15px;
}


.about-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  max-height: 300px;
}

.about-text-btn {
  margin-top: 12px;
  margin-left: 0;
  /* ensure the button aligns with the text column when inside .about-content */
  justify-self: start;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
  color: #a00;
  font-size: 20px;
  margin-bottom: 15px;
}
  .about-text-btn {
    margin-top: 10px;
    margin-left: 0px;
    justify-self: start;
  }
.about-text-btn a {
  font-size: medium;
}
.about-image img {
  margin-top: -20px;
}
}

@media (max-width: 600px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
  color: #a00;
  font-size: 20px;
  margin-bottom: 15px;
}

.about-text p {
  color: #000;
  font-size: 12px;
  margin-bottom: 15px;
}
.about-text-btn {
  margin-top: 10px;
  margin-left: 0px;
  justify-self: start;
}
.about-text-btn a {
  font-size: small;
}
.about-image img {
  margin-top: -30px;
}
}

/* ===== FOOTER ===== */
.footer {
  background: #a00;
  color: #fff;
  padding: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
}


.footer-links,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: small;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 20px;
}

.slogan {
  font-size: smaller;
  margin-left: 14px;
  font-style: italic;
  margin-bottom: 30px;
}

.footer-socials :hover {
  color: #f39c12;
}

.footer-links :hover {
  color: #f39c12;
}

@media (max-width: 900px) {
  .footer-bottom {
    font-size: small;
}
}

@media (max-width: 600px) {
  .footer-bottom {
    font-size: small;
}
.footer-links,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: smaller;
}
.footer-content {
  font-size: 13px;
}

.slogan {
  font-size: x-small;
  margin-left: 22px;
  font-style: italic;
  margin-bottom: 30px;
}
}








/* HERO SECTION (Hotels Page) */
.hotel-hero {
  background: url('images/hotelpic.jpg') center/cover no-repeat;
  height: 500px;
  position: relative;
}
.hotel-hero .hotel-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}

.hotel-hero-overlay h1 {
  font-size: 56px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  max-width: 600px;
  line-height: 1;
}

.hotel-hero-overlay p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}

/* HOTEL ROOMS GRID */
.hotel-rooms {
  padding: 60px 50px;
  background: #ffffff;
}
.hotel-rooms h2 {
  text-align: left;
  margin-bottom: 40px;
  color: #a00;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.hotel-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}
.hotel-card:hover {
  transform: translateY(-10px);
}
.hotel-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 2px rgba(53, 53, 53, 0.3);
}
.hotel-card h3 {
  margin-bottom: 15px;
  margin-left: 5px;
}
.hotel-card ul {
  font-size: small;
  margin-left: -20px;
}
.hotel-card ul li {
  margin-bottom: 8px;
}
.hotel-card .price {
  font-size: large;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 5px;
}
.hotel-card .price a {
  color: #a00;
  font-size: 14px;
  margin-left: 70px;
}
.hotel-card .price a:hover {
  color: #f39c12;
}

.hotel-card p {
  font-size: small;
  margin-left: 5px;
  line-height: 25px;
}

.book-btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #a00;
  color: #fff;
  border-radius: 15px;
  font-weight: 550;
  font-size: medium;
  margin-left: 20%;
  margin-right: 10%;
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 2px rgba(120, 0, 0, 0.234);
}
.book-btn-primary:hover {
  background: #f39c12;
  
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #a00;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s;
}
.scroll-top.show {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {
  .hotel-hero-overlay h1 {
  font-size: 40px;
  font-weight: 400px;
}
  .hotel-hero-overlay p {
  font-size: 18px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.hotel-card .price a {
  color: #a00;
  font-size: small;
  margin-left: 15px;
}
.book-btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #a00;
  color: #fff;
  border-radius: 15px;
  font-weight: 550;
  font-size: medium;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 10px;
  margin-bottom: 10px;
}
}

@media (max-width: 600px) {
  .hotel-hero-overlay h1 {
  font-size: 40px;
  font-weight: 400px;
}
  .hotel-hero-overlay p {
  font-size: 15px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.hotel-card .price a {
  color: #a00;
  font-size: small;
  margin-left: 70px;
}
.book-btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #a00;
  color: #fff;
  border-radius: 15px;
  font-weight: 550;
  font-size: medium;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 10px;
  margin-bottom: 10px;
}
}






/* APARTMENT HERO (Apartment Page) */
.apartment-hero {
  background: url('images/apartmentpic.jpg') center/cover no-repeat;
  height: 500px;
  position: relative;
}
.apartment-hero .apartment-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}

.apartment-hero-overlay h1 {
  font-size: 56px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  
}

.apartment-hero-overlay p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}

/*ROOMS GRID */
.apartment-list {
  padding: 60px 50px;
  background: #ffffff;
}
.apartment-list h2 {
  text-align: left;
  margin-bottom: 40px;
  color: #a00;
}
.apartment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.apartment-card {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
}
.apartment-card:hover {
  transform: translateY(-10px);
}
.apartment-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 2px rgba(53, 53, 53, 0.3);
}
.apartment-card h3 {
  margin-bottom: 15px;
  margin-left: 5px;
}
.apartment-card ul {
  font-size: small;
  margin-left: -20px;
}
.apartment-card ul li {
  margin-bottom: 8px;
}
.apartment-card .price {
  font-size: large;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 5px;
}
.apartment-card .price a {
  color: #a00;
  font-size: 14px;
  margin-left: 60px;
}
.apartment-card .price a:hover {
  color: #f39c12;
}



/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #a00;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s;
}
.scroll-top.show {
  display: block;
  opacity: 1;
}

@media (max-width: 900px) {
  .apartment-hero-overlay h1 {
  font-size: 40px;
  font-weight: 400px;
}
  .apartment-hero-overlay p {
  font-size: 18px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.apartment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.apartment-card .price a {
  color: #a00;
  font-size: small;
  margin-left: 15px;
}
.apt-btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #a00;
  color: #fff;
  border-radius: 15px;
  font-weight: 500px;
  font-size: medium;
  margin-left: 5%;
  margin-right: 5%;
  margin-top: 10px;
  margin-bottom: 10px;
  border-color: #a00;
}
}

@media (max-width: 600px) {
  .apartment-hero-overlay h1 {
  font-size: 40px;
  font-weight: 400px;
}
.apartment-hero-overlay p {
  font-size: 15px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.apartment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.apartment-card .price a {
  color: #a00;
  font-size: small;
  margin-left: 70px;
}
.book-btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #a00;
  color: #fff;
  border-radius: 15px;
  font-weight: 550;
  font-size: medium;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 10px;
  margin-bottom: 10px;
}
}



/* EVENTS HERO */
.events-hero {
  background: url('images/eventspic.jpg') center/cover no-repeat;
  height: 500px;
  position: relative;
}
.events-hero .event-hero-overlay {
  background: rgba(0, 0, 0, 0.25);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}
.events-hero h1 {
  font-size: 56px;
  margin-bottom: 5px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.events-hero p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}



@media (max-width: 900px) {
.events-hero h1 {
  font-size: 40px;
  font-weight: 400px;
}
  .events-hero p {
  font-size: 18px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
}

@media (max-width: 600px) {
  .events-hero h1 {
  font-size: 40px;
  font-weight: 400px;
}
.events-hero p {
  font-size: 15px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.book-btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #a00;
  color: #fff;
  border-radius: 15px;
  font-weight: 550;
  font-size: medium;
  margin-left: 20%;
  margin-right: 20%;
  margin-top: 10px;
  margin-bottom: 10px;
}
}



/* INTRO */
.event-intro {
  padding: 30px;
  text-align: center;
  justify-content: center;
}
.event-intro h2 {
  color: #a00;
  margin-bottom: 25px;
}
.event-intro img {
  width: 80%;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin-bottom: -25px;
}

.event-intro img:hover {
  transform: translateY(-10px);
}


/* IMAGE GALLERY */
.event-gallery-box {
  display: flex;
  flex-direction: row;
  gap: 15px;
  padding: 30px;
  margin: auto;
  width: 75%;
  justify-content: center;
  align-items: center;
}
.event-gallery img {
  width: 50%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.event-gallery img:hover {
  transform: translateY(-10px);
}



/* EVENT DETAILS */
.event-details {
  padding: 40px 50px;
  text-align: left;
}
.event-details h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #000;
}
.event-details p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* FEATURES */
.event-features {
  padding: 40px 50px;
  background: #fcd3b5;
}
.event-features h3 {
  color: #a00;
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.features-grid ul {
  list-style: none;
  padding: 0;
}
.features-grid li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: medium;
}
.features-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a00;
  font-weight: bold;
}

/* PRICE & CTA */
.event-price {
  text-align: center;
  padding: 50px 50px;
}
.event-price p {
  font-size: 22px;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
.event-gallery-box {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 15px;
    width: 72%;
}
.event-details h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #000;
}
.event-details p {
  margin-bottom: 5px;
  line-height: 1.6;
  font-size: small;
}
.features-grid li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: small;
}
}

@media (max-width: 600px) {
.event-intro img {
  width: 80%;
  margin-bottom: -90px;
}

  .event-gallery-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 5px;
  width: 70%;
  margin: 70px auto;
}
.event-gallery img {
  width: 100%;
}

.features-grid li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: small;

}
.event-details h2 {
  margin-top: -70px;
  color: #000;
}
}







/* ===== RECREATION HERO ===== */
.recreation-hero {
  background: url("images/recreationBG.jpg") center/cover no-repeat;
  height: 500px;
  position: relative;         
}
.recreation-hero .recreation-hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.75);
  color:#fff;
}
.recreation-hero-overlay h1 {
  font-size: 52px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.recreation-hero-overlay p {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  padding-left: 12%;
  padding-right: 12%;
  text-align: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}
/* ===== RECREATION FEATURES ===== */
.recreation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 30px;
  padding: 60px;
}
.recreation-features-box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  padding: 40px;
  margin-top: 0;
}
.features-text h2 {
  color: #a00;
  margin-bottom: 10px;
  margin-top: 0;
}
.features-text h4 {
  margin: 15px 0 10px;
  font-weight: bold;
}
.features-text ul {
  margin: 15px 0;
  padding-left: 18px;
}
.features-text ul li {
  margin-bottom: 8px;
}
.features-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.rec-buttons {
  margin-top: 0;
  padding: 0;
}
.btn-signup, .btn-rlogin {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  border: 2px;
}
.btn-signup {
  background: #a00;
  color: #fff;
  margin-right: 15px;
}
.btn-signup:hover {
  background: #f39c12;
}
.btn-rlogin {
  background: #a00;
  color: #fff;
  border-radius: 20px;
}
.btn-login:hover {
  background: #f39c12;
}
.features-img img {
  width: 70%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 0;
}

@media (max-width: 900px) {
  .recreation-hero-overlay h1 {
  font-size: 45px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 600px;
  text-align: center;
  text-transform: uppercase;
}

.recreation-hero-overlay p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  padding-left: 12%;
  padding-right: 12%;
  text-align: center;
  font-weight: 100px;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}
.recreation-features-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 120px;
  padding: 40px;
  margin-top: -45px;
}
.features-text h2 {
  color: #a00;
  margin-bottom: 10px;
  margin-top: -20px;
  font-size: large;
}

.features-text h4 {
  margin: 15px 0 10px;
  font-weight: bold;
  font-size: small;
}
.features-text ul li {
  margin-bottom: 8px;
  font-size: small;
}
.features-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: -20px;
}
.rec-buttons {
  margin-top: 20px;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  gap: 12px;
}
.btn-signup, .btn-rlogin {
  font-size: smaller;
}
}

@media (max-width: 600px) {
.recreation-hero-overlay h1 {
  font-size: 42px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0px;
}

.recreation-hero-overlay p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  padding-left: 12%;
  padding-right: 12%;
  text-align: center;
  font-weight: 100px;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.534);
}
.recreation-features-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}
.features-text h2 {
  color: #a00;
  margin-bottom: 10px;
  margin-top: -200px;
  font-size: large;
  margin-top: -20px;
}
.features-text h4 {
  margin: 15px 0 10px;
  font-weight: bold;
  font-size: medium;
}
.features-text ul {
  margin: 15px 0;
  padding-left: 18px;
}
.features-text ul li {
  margin-bottom: 8px;
  font-size: small;
}
.features-img {
  justify-content: center;
  align-items: center;
}
.rec-buttons {
  margin-top: 16px;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.btn-signup, .btn-rlogin {
  font-size: smaller;
  margin-bottom: 20px;
  margin-top: -60px;
}
}

/* Mobile: make recreation signup/login buttons stack and full-width for better UX */
@media (max-width: 480px) {
  /* place buttons side-by-side (two-per-row) on very small screens, with wrapping */
  .rec-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    margin-top: 12px;
    justify-content: center;
  }

  .rec-buttons a {
    width: 48%; /* two buttons per line */
    max-width: 220px;
    display: inline-block;
  }

  .rec-buttons a button {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;
  }
}








/* SIDE ATTRACTION (ATTRACTION PAGE) */
.atrraction-head {
  font-size: 16px;
  padding: 50px;
  color: #a00;
  justify-content: center;
  align-items: center;
}

/* APARTMENT LIST */
.attraction-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 50px;
  margin-top: -80px;
}
.attraction-card {
  background: #fcd3b5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: left;
}
.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.attraction-card h3 {
  margin: 10px 0;
  font-size: 20px;
}
.attraction-card {
  font-size: small;
  line-height: 18px;
}
.price {
  font-size: 20px;
  font-weight: 700px;
}

.price a {
  font-size: 15px;
  padding-left: 0px;
}
.attraction-card ul {
  margin: 10px 0;
  padding-left: 18px;
}
.attraction-card ul li {
  margin-bottom: 8px;
}
.attraction-card .price {
  font-weight: bold;
  margin-top: 15px;
}
.attraction-card .price a {
  font-weight: normal;
  font-size: 14px;
  color: #a00;
  text-decoration: none;
  margin-left: 5px;
}
.btn-book {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  background: rgb(0, 17, 170);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  justify-self: center;
}
.btn-book:hover {
  background: #f39c12;
}

/* CHAT SUPPORT */
.chat-support {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f39c12;
  color: #fff;
  padding: 12px 18px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: 0.3s;
}
.chat-support:hover {
  background: #f39c12;
}






/* ABOUT PAGE HERO */
.about-page-hero {
  background: #a00;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.about-page-hero h1 {
  font-size: 45px;
  margin: 0;
}

/* ABOUT SECTION */
.about-page-section {
  padding: 50px;
  margin: 0 10%;
}
.about-page-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: start;
}
.about-page-text h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-page-text p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 25px;
}

.about-page-text h3 {
  margin-top: 25px;
  color: #a00;
}
.about-page-text ul {
  margin: 15px 0;
  padding-left: 20px;
  line-height: 15px;
}
.about-page-text li {
  margin-bottom: 10px;
}
.about-page-text .highlight {
  font-weight: bold;
  margin-top: 15px;
}
.about-page-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  /* Stack the about page content on mobile: text first, image after the h2 */
  .about-page-content {
    grid-template-columns: 1fr;
  }
  .about-page-text {
    order: 1;
  }
  .about-page-image {
    order: 2;
    margin-top: 18px;
  }
  .about-page-text h2 {
    font-size: 32px;
  }
}
.about-page-image img {
  width: 100%;
  border-radius: 10px;
}

/* MISSION & VALUES */
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

  /* About page: make the H2 heading larger for the about section */
  .about-page-text h2 {
    font-size: 35px;
    gap: 20px;
    padding: 50px;
    background: #fff5f5;
  }
  
.value-card {
  background: #fcd3b5;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  justify-content: center;
  align-items: center;
  margin: 70px;
}

.mission-card {
  background: #fcd3b5;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  justify-content: center;
  align-items: center;
  margin: 70px;
}

.value-card h3 {
  color: #a00;
  font-size: 24px;
  margin-top: 20px;
}

.value-card p {
  padding: 50px 10px;
  line-height: 25px;
}

.mission-card h3 {
  color: #a00;
  font-size: 24px;
  margin-top: 20px;
}

.mission-card p {
  padding: 50px 10px;
  line-height: 25px;
}











.foundation-page .scroll-top {
  display: none;
}
.foundation-hero {
  background: url("images/foundationBG.jpg") center/cover no-repeat;
  height: 500px;
  position: relative;      
}

.foundation-hero .foundation-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.834);
}
.foundation-hero h1 {
  font-size: 56px;
  margin-bottom: 5px;
  padding-left: 10%;
  padding-right: 10%;
  color: #fff;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.834);
}
.foundation-hero p {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
  text-shadow: 0 4px 8px rgba(50, 0, 0, 0.834);
}
.read-more {
  margin-left: 5%;
}

@media (max-width: 900px) {
.foundation-hero h1 {
  font-size: 40px;
  font-weight: 400px;
}
.foundation-hero p {
  font-size: 18px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.foundation-content h2 {
  font-size: large;
}
.foundation-content ul li p {
  font-size: small;
}
.read-more {
  font-size: small;
}
}

@media (max-width: 600px) {
  .foundation-hero h1 {
  font-size: 40px;
  font-weight: 400px;
}
.foundation-hero p {
  font-size: 15px;
  line-height: 25px;
  padding-left: 15%;
  padding-right: 15%;
  text-align: center;
}
.foundation-content h2 {
  font-size: large;
}
.foundation-content ul li p {
  font-size: small;
}
.read-more {
  font-size: small;
}
}


/* ===== FOUNDATION CONTENT ===== */
.foundation-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}
.foundation-content h2 {
  color: #a00;
  margin-bottom: 15px;
}
.foundation-content ul {
  margin: 20px 0;
  padding-left: 18px;
}
.foundation-content ul li {
  margin-bottom: 10px;
  font-size: 17px;
}
.read-more {
  display: inline-block;
  margin-top: 15px;
  color: #666;
  font-weight: 500;
  transition: 0.3s;
}
.read-more:hover {
  color: #a00;
}

@media (max-width: 600px) {
  .foundation-content {
    padding: 30px 10px;
  }
  .foundation-gallery-page {
    padding: 30px 10px;
  }
}


/* ===== GALLERY PAGE ===== */
.foundation-gallery-page {
  padding: 20px 20px;
  text-align: center;
  background-color: #fcd3b5;
}

.foundation-gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.foundation-gallery-page .foundation-section-title {
  font-size: 25px;
  font-weight: bold;
  color: #111111;
  margin-bottom: 30px;
}

.foundation-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
  background-color: #fcd3b5;
  padding: 5% 10%;
}

.foundation-gallery-grid img {
  width: 100%;
  max-width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-foundation-gallery-grid img {
  width: 40%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foundation-gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}







/* ===== NKRUMAH ROOM DETAILS ===== */
.room-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.room-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-left: 10%;
}
.room-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch;
  padding-left: 10%;
  padding-right: 10%;
}
.room-gallery img,
.room-gallery video {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: auto;
  padding: 0px;
  box-shadow: 0 2px 2px rgba(63, 63, 63, 0.434);;
}
.room-gallery > img {
  flex: 2;
  height: 400px;
  min-width: 0;
}
.room-gallery > video {
  flex: 2;
  height: 400px;
  min-width: 0;
}
.room-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}
.room-gallery-side img {
  flex: 1;
  width: 100%;
  height: 0;
  object-fit: cover;
  min-width: 0;
}
.room-info {
  padding-left: 10%;
  padding-right: 10%;
  display: flex;           
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  box-sizing: border-box;
}
/* content proportions */
.room-description { flex: 2; min-width: 0; padding: 20px;}
.booking-box { flex: 1; min-width: 0; }

.room-description ul {
  font-size: 14px;
}
.room-description h3 {
  margin-bottom: 5px;
  margin-top: 15px;
}
.room-description p {
  font-size: 15px;
  line-height: 25px;
  margin-top: 1px;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .room-info {
    flex-direction: row;
    gap: 44px;
    padding-left: 7%;
    padding-right: 7%;
  }
  .room-gallery > img,
  .room-gallery > video,
  .room-gallery-side {
    height: 220px;
  }
}
.room-description {
  flex: 2;
}
.room-description h2 {
  margin-bottom: 15px;
}
.room-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.room-description ul li {
  margin-bottom: 8px;
}
.booking-box h3 {
  font-size: 48px;
}

.booking-box {
  flex: 1;
  border: 2px solid #444;
  border-radius: 12px;
  padding: 70px 10px;
  text-align: center;
  height: fit-content;
}
.booking-box h3 {
  font-size: 25px;
  margin-bottom: 15px;
}
.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.new-price {
  font-size: 35px;
  color: #444;
  font-weight: bold;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}
.room-title {
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 30px;
  padding-left: 7%;
}
.room-gallery {

  padding-left: 7%;
  padding-right: 7%;
}
/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}

@media (max-width: 600px) {
.room-info {
  flex-direction: column;
  gap: 20px;
  padding-left: 7%;
  padding-right: 7%;
  margin-top: -25px;
}


.room-description,
.booking-box {
  width: 100%;
  box-sizing: border-box;
  padding-left: 5%;
  padding-right: 5%;
}
.room-description h2 {
  font-size: 20px;
  padding-top: -200px;
}
.room-description p {
  font-size: 14px;
  line-height: 25px;
  margin-top: 1px;
}
.booking-box {
  order: 2;
  padding: 28px 16px;
  width: 80%;
  align-self: center;
}
  
.new-price {
  font-size: 28px;
  color: #444;
  font-weight: bold;
}
}






/* ===== POOLSIDE BAR PAGE ===== */
.pool-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.pool-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.pool-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.pool-gallery img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.pool-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.pool-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.pool-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .pool-gallery > img,
  .pool-gallery-side {
    height: 220px;
  }
  .pool-gallery-side img {
    height: 50%;
  }
}

.pool-info {
  display: flex;
  gap: 40px;
}
.pool-description {
  flex: 2;
}
.pool-description h2 {
  margin-bottom: 15px;
}
.pool-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.pool-description ul li {
  margin-bottom: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}






/* ===== DarNis LOUNGE PAGE ===== */
.lounge-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.lounge-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.lounge-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.lounge-gallery img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.lounge-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.lounge-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.lounge-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .lounge-gallery > img,
  .lounge-gallery-side {
    height: 220px;
  }
  .lounge-gallery-side img {
    height: 50%;
  }
}

.lounge-info {
  display: flex;
  gap: 40px;
}
.lounge-description {
  flex: 2;
}
.lounge-description h2 {
  margin-bottom: 15px;
}
.lounge-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.lounge-description ul li {
  margin-bottom: 8px;
}


.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}






/* ===== SWIMMING POOL PAGE ===== */
.swimming-pool-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.swimming-pool-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.swimming-pool-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.swimming-pool-gallery img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.swimming-pool-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.swimming-pool-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.swimming-pool-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .swimming-pool-gallery > img,
  .pool-gallery-side {
    height: 220px;
  }
  .swimming-pool-gallery-side img {
    height: 50%;
  }
}

.swimming-pool-info {
  display: flex;
  gap: 40px;
}
.swimming-pool-description {
  flex: 2;
}
.swimming-pool-description h2 {
  margin-bottom: 15px;
}
.swimming-pool-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.swimming-pool-description ul li {
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}






/* ===== MANDELA SUITE PAGE ===== */
.mandela-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.mandela-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.mandela-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.mandela-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.mandela-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.mandela-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.mandela-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .mandela-gallery > img,
  .mandela-gallery-side {
    height: 220px;
  }
  .mandela-gallery-side img {
    height: 50%;
  }
}

.mandela-info {
  display: flex;
  gap: 40px;
}
.mandela-description {
  flex: 2;
}
.mandela-description h2 {
  margin-bottom: 15px;
}
.mandela-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.mandela-description ul li {
  margin-bottom: 8px;
}


.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}





/*FELA STANDARD PAGE*/
.fela-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.fela-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.fela-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.fela-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.fela-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.fela-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.fela-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .fela-gallery > img,
  .fela-gallery-side {
    height: 220px;
  }
  .fela-gallery-side img {
    height: 50%;
  }
}

.fela-info {
  display: flex;
  gap: 40px;
}
.fela-description {
  flex: 2;
}
.fela-description h2 {
  margin-bottom: 15px;
}
.fela-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.fela-description ul li {
  margin-bottom: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}







/*ZIK STANDARD PAGE*/
.zik-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.zik-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.zik-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.zik-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.zik-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.zik-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.zik-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .zik-gallery > img,
  .zik-gallery-side {
    height: 220px;
  }
  .zik-gallery-side img {
    height: 50%;
  }
}

.zik-info {
  display: flex;
  gap: 40px;
}
.zik-description {
  flex: 2;
}
.zik-description h2 {
  margin-bottom: 15px;
}
.zik-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.zik-description ul li {
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}


.room-gallery


/*ONE BEDROOM PAGE*/
.one-room-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.one-room-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.one-room-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.one-room-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.one-room-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.one-room-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.one-room-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .one-room-gallery > img,
  .one-room-gallery-side {
    height: 220px;
  }
  .one-room-gallery-side img {
    height: 50%;
  }
}

.one-room-info {
  display: flex;
  gap: 40px;
}
.one-room-description {
  flex: 2;
}
.one-room-description h2 {
  margin-bottom: 15px;
}
.one-room-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.one-room-description ul li {
  margin-bottom: 8px;
}

.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}








/*TWO BEDROOM PAGE*/
.two-room-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.two-room-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.two-room-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.two-room-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}
.two-room-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.two-room-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.two-room-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .two-room-gallery > img,
  .two-room-gallery-side {
    height: 220px;
  }
  .two-room-gallery-side img {
    height: 50%;
  }
}

.two-room-info {
  display: flex;
  gap: 40px;
}
.two-room-description {
  flex: 2;
}
.two-room-description h2 {
  margin-bottom: 15px;
}
.two-room-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.two-room-description ul li {
  margin-bottom: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}







/*THREE BEDROOM PAGE*/
.three-room-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.three-room-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.three-room-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.three-room-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.three-room-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.three-room-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.three-room-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .three-room-gallery > img,
  .three-room-gallery-side {
    height: 220px;
  }
  .three-room-gallery-side img {
    height: 50%;
  }
}

.three-room-info {
  display: flex;
  gap: 40px;
}
.three-room-description {
  flex: 2;
}
.three-room-description h2 {
  margin-bottom: 15px;
}
.three-room-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.three-room-description ul li {
  margin-bottom: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}








/*FOUR BEDROOM PAGE*/
.four-room-details {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.four-room-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
}
/* Make side images in .room-gallery-side the same height as the main image */
.four-room-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: stretch; /* Ensure children stretch to same height */
}

.four-room-gallery img {
  border-radius: 15px;
  width: 100%;
  object-fit: cover;
  height: 100%; /* Fill parent height */
}

.four-room-gallery > img {
  flex: 2;
  height: 400px; /* Set a fixed height for main image */
  min-width: 0;
}

.four-room-gallery-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
  height: 400px; /* Match main image height */
}

.four-room-gallery-side img {
  flex: 1;
  height: 50%; /* Each side image takes half the height */
  min-width: 0;
}

/* Responsive adjustment for mobile */
@media (max-width: 900px) {
  .four-room-gallery > img,
  .four-room-gallery-side {
    height: 220px;
  }
  .four-room-gallery-side img {
    height: 50%;
  }
}

.four-room-info {
  display: flex;
  gap: 40px;
}
.four-room-description {
  flex: 2;
}
.four-room-description h2 {
  margin-bottom: 15px;
}
.four-room-description ul {
  margin-top: 15px;
  padding-left: 18px;
}
.four-room-description ul li {
  margin-bottom: 8px;
}
.old-price {
  text-decoration: line-through;
  color: #444;
  margin-right: 5px;
}
.book-btn {
  margin-top: 20px;
  background: #c00;
  color: #fff;
  border: none;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.book-btn:hover {
  background: #f39c12;
}


/* Price Label */
.per-night {
  font-size: 20px;
  color: #a00;
  font-weight: 500;
}







/* ===== STEP PROGRESS ===== */
.step-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  gap: 1rem;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  background: #e0e0e0;
  color: #555;
}

.step.active {
  background: #a00;
  color: #fff;
}

.step.done {
  background: #f39c12;
  color: #fff;
}






/* BOOKING INFO PAGE STYLES */
/* ===== BOOKING PAGE ===== */
.booking-navbar {
  background: #a00;
  color: #fff;
  padding: 1rem;
  text-align: center;
  justify-content: center;
}

.book-progress {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
  padding: 2px;
}

.book-progress .step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 3px;
}

.book-progress .step.active {
  background: #f39c12;
  color: #fff;
  padding: 3px;
}

.booking-title {
  text-align: center;
  font-size: 25px;
  margin-bottom: 5px;
}

.booking-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 2rem;
  margin-top: 5px;
  font-size: 14.5px;
}

.booking-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.book-left {
  flex: 1;
  text-align: center;
}

.book-left img {
  width: 80%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.book-left h3 {
  margin: 0.5rem 0;
}

.book-left p {
  margin-top: 0.5rem;
  color: #555;
}

.booking-right {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}


.booking-field {
  margin-bottom: 20px;
}

.booking-field label {
  font-weight: bold;
}


.date-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.date-range input[type="date"] {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}



.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.counter-btn {
  background: #f39c12;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  cursor: pointer;
}

.counter-btn:last-child {
  background: #a00;
}

#date, #room-number {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 2rem;
}
.btn-book, .btn-cancel {
  padding: 10px 15px;
  font-size: 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  min-width: 150px;
  transition: background 0.2s;
  margin: 0;
  width: auto;
}
.btn-book {
  background: #a00;
  color: #fff;
}
.btn-cancel {
  background: #f39c12;
  color: #fff;
}

.btn-cancel:hover {
  background: #a00;
  color: #fff;
}



@media (max-width: 900px) {
  .booking-container {
    padding-left: 10%;
    padding-right: 10%;
  }
  .booking-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 5px;
  }

  .booking-subtitle {
    text-align: center;
    font-size: 12.5px;
  }
  .book-left img {
    width: 90%;
    border-radius: 10px;
    margin-bottom: 0.25rem;
  }

  .book-left h3 {
    margin: 0.5rem 0;
  }

  .book-left p {
    margin-top: 0.5rem;
    color: #555;
  }
  .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    font-size: small;
  }
  .booking-field label {
    font-size: small;
    font-weight: bold;
}
}


@media (max-width: 600px) {
  .booking-container {
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
  }
  .booking-content{
    display: flex;
    flex-direction: column;
    margin-top: 2px;
  }
  .booking-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 5px;
  }

  .booking-subtitle {
    text-align: center;
    font-size: 12.5px;
  }
  .book-left img {
    width: 90%;
    border-radius: 10px;
    margin-bottom: 0.25rem;
  }

  .book-left h3 {
    margin: 0.5rem 0;
  }

  .book-left p {
    margin-top: 0.5rem;
    color: #555;
  }
  .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    font-size: small;
  }
  .booking-field label {
    font-size: small;
    font-weight: bold;
}
.booking-right {
  justify-self: center;
  align-self: center;
}
}








/* ===== PAYMENT PAGE ===== */
.payment-progress .step.checked {
  background: #f39c12;
  color: #fff;
}
.payment-progress .step.active {
  background: #f39c12;
  color: #fff;
  border: 2px solid #f39c12;
}
.payment-progress .step:not(.active):not(.checked) {
  background: #e0e0e0;
  color: #222;
  border: 2px solid #bbb;
}

/* Payment Content Layout */
.payment-box {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 5px auto;
  max-width: 900px;
  background: transparent;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0);
  padding: 2px 12px;
}

.payment-info {
  flex: 1;
  font-size: 16px;
  line-height: 12px;
  color: #2e2e2e;
  padding-right: 24px;
}


.payment-info h3 {
  margin-top: 10px;
  font-size: 25px;
  font-weight: bold;
  color: #a00;
  margin-top: 40px;
}


.payment-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5px;
}

.payment-form label {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
}


/* Responsive tweaks for Payment page */
@media (max-width: 900px) {
  .payment-box {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 12px;
  }

  .payment-info,
  .payment-form {
    flex: none;
    width: 100%;
    padding: 8px 6px;
  }

  .payment-info {
    order: 1;
  }

  .payment-form {
    order: 2;
  }

  .payment-form input[type="text"],
  .payment-form input[type="email"],
  .payment-form input[type="tel"],
  .payment-form input[type="text"],
  .payment-form input[type="email"] {
      max-width: 100%;
      box-sizing: border-box;
  }
  .payment-form select,
  .payment-form input[type="file"],
  .payment-form .phone-input input {
    width: 100%;
    box-sizing: border-box;
  }

  .phone-input { display: flex; gap: 8px; }

  .booking-buttons { justify-content: center; gap: 12px; flex-wrap: wrap; }
}

/* Tablets: keep left and right columns side-by-side between 601px and 900px */
@media (max-width: 900px) {
  .payment-box {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    padding: 12px;
  }

  .payment-info,
  .payment-form {
    flex: none;
    width: calc(50% - 0.5rem);
    padding: 8px;
    box-sizing: border-box;
  }

  .payment-form input[type="text"],
  .payment-form input[type="email"],
  .payment-form input[type="tel"],
  .payment-form select,
  .payment-form input[type="file"],
  .payment-form .phone-input input {
    width: 100%;
  }

  .phone-input { display: flex; gap: 8px; }

  .booking-buttons { justify-content: flex-end; gap: 12px; }

  .booking-buttons .btn-book,
  .booking-buttons .btn-cancel { min-width: 140px; }
}

@media (max-width: 600px) {
  .payment-box {
    padding: 10px;
    border-radius: 12px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px;
    align-items: flex-start;
    justify-content: center;
  }

  .payment-info,
  .payment-form {
    flex: none;
    width: calc(48% - 6px);
    padding: 10px;
    box-sizing: border-box;
    line-height: 14px;
  }

  .payment-info h3 { font-size: 18px; margin-top: 8px; }

  .payment-form label { font-size: 14px; }

  .payment-form input,
  .payment-form select { font-size: 15px; padding: 10px; }

  .booking-buttons { display: flex; gap: 8px; justify-content: space-between; width: 100%; }

  .booking-buttons .btn-book,
  .booking-buttons .btn-cancel { width: 48%; min-width: 0; }
}


.section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #a00;
  text-align: center;
  margin-top: 10px;
}

.subtitle {
  font-size: 18px;
  color: #777;
  text-align: center;
  margin-bottom: 24px;}

.payment-form input,
.payment-form select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 12px;
  outline: none;
  transition: border 0.3s ease;
  margin-bottom: 5px;
}

.payment-form input:focus,
.payment-form select:focus {
  border-color: #a00;
}

.payment-form input[type="month"] {
  cursor: pointer;
}

.booking-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.btn-pay, .btn-cancel {
  padding: 0.8rem 2.5rem;
  font-size: 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  min-width: 150px;
  transition: background 0.2s;
  margin: 0;
}
.btn-pay {
  background: #a00;
  color: #fff;
}
.btn-cancel {
  background: #f39c12;
  color: #fff;
}

.summary-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.summary-total {
  font-size: 1rem;
  font-weight: bold;
  margin: 10px 0;
}


 


/* ===== SUCCESS PAGE ===== */
.success-container {
  text-align: center;
  margin-top: 80px;
}

.success-icon {
  width: 250px;
  height: 250px;
  background: #a00;
  border-radius: 50%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.success-icon span {
  font-size: 100px;
  color: #ffffff;
}

.success-msg {
  font-size: 16px;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}

.home-btn {
  margin-top: 30px;
  padding: 12px 24px;
  background: #b91c1c;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.home-btn:hover {
  background: #a01919;
}


/* Progress bar container */
.progress-bar {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  gap: 20px; /* space between circles */
  margin-bottom: 40px;
}

/* Each step circle */
.progress-bar .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f59e0b; /* orange */
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}






/* ===== REGISTER PAGE ===== */
.register-container {
  display: flex;
  height: 100vh;
}

.register-left {
  flex: 1;
  background: url('images/login-pic.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.register-left::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(170, 0, 0, 0.35); /* red overlay */
}

.overlay-text {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.overlay-text h1 {
  font-size: 42px;
  font-weight: 300px;
}

.overlay-text p {
  font-size: 21px;
  font-weight: 500px;
}


.register-right {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-right h2 {
  font-size: 1.8rem;
  color: #a00;
  margin-bottom: 1.5rem;
}

.register-right form {
  display: flex;
  flex-direction: column;
}

.register-right label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.register-right input {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.btn-pg-register, .btn-pg-login {
  padding: 0.8rem;
  background: #a00;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.3s;
}

.btn-pg-register:hover {
  background: #a00;
}

.terms {
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: #555;
}

.terms a {
  color: #f39c12;
  text-decoration: none;
}

.login-link {
  margin-top: 1rem;
  text-align: center;
}

.login-link a {
  color: #a00;
  text-decoration: none;
}

/* Responsive styling for register and login pages on mobile */
@media (max-width: 600px) {
  .register-container,
  .login-container {
    flex-direction: column;
    padding: 8px 2px;
    min-height: 100vh;
    box-sizing: border-box;
  }
  .register-left,
  .login-left {
    width: 100%;
    min-height: 120px;
    padding: 18px 8px;
    border-radius: 12px 12px 0 0;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
  }
  .register-right,
  .login-right {
    width: 80%;
    padding: 18px 8px;
    border-radius: 0 0 12px 12px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    align-self: center;
  }
  .register-right h2,
  .login-right h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  #registerForm input,
  #loginForm input {
    width: 100%;
    font-size: 15px;
    padding: 10px 8px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .btn-pg-register,
  .btn-pg-login {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 8px;
  }
  .terms,
  .create-account-link,
  .login-link {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
  }
  .overlay-text,
  .login-overlay-text {
    text-align: center;
    padding: 8px 0;
  }
}






/* ===== LOGIN PAGE ===== */
.login-container {
  display: flex;
  height: 100vh;
}

.login-left {
  flex: 1;
  background: url('images/login-pic.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.login-left::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(170, 0, 0, 0.35) /* red overlay */
}

.login-right {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.login-overlay-text {
  position: relative;
  text-align: center;
  color: #fff;
  justify-content: center;
}

.login-overlay-text h1 {
  font-size: 42px;
  font-weight: 300px;
}

.login-overlay-text p {
  font-size: 21px;
  font-weight: 500px;
}


.login-right h2 {
  font-size: 1.8rem;
  color: #a00;
  margin-bottom: 1.5rem;
}

.login-right form {
  display: flex;
  flex-direction: column;
}

.login-right label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.login-right input {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.btn-login {
  padding: auto 20px;
  background: #a00;
  border: none;
  border-radius: 20px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.3s;
}

.btn-login:hover {
  background: #f39c12;
}

.create-account-link {
  margin-top: 1rem;
  text-align: center;
}

.create-account-link a {
  color: #f39c12;
  text-decoration: none;
}


.progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.progress-step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.progress-step.active {
  background: #a00;
  color: #fff;
}


.progress-step.completed {
  background: #f39c12;
  color: #fff;
}

.progress-labels {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.progress-labels .active {
  font-weight: bold;
  color: #a00;
}

.progress-labels .completed {
  font-weight: bold;
  color: #f39c12;
}


.progress-bar-container {
  text-align: center;
  margin-bottom: 2rem;
}


.progress-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
}






/* ===== CONTACT PAGE ===== */
.contact-header {
  background: #a00;
  padding: 1rem;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3rem;
  gap: 2rem;
}

.contact-form {
  flex: 1;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: none;
  border-bottom: 2px solid #000;
  outline: none;
  font-size: 1rem;
}

.btn-contact {
  padding: 0.8rem;
  background: #a00;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  width: 150px;
  transition: background 0.3s;
}

.btn-contact:hover {
  background: #f39c12;
}

.contact-info {
  flex: 1;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
}

.contact-info a {
  color: #000;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%;
}

.social-icons img {
  width: 28px;
  height: 28px;
  cursor: pointer;
}






/* ===== PROFILE PAGE ===== */
.profile-container {
  display: flex;
  gap: 2rem;
  padding: 60px 30px;
}

.profile-card {
  background: #a00;
  color: #fff;
  padding: 2rem;
  border-radius: 2rem;
  width: 300px;
  height: 600px;
  text-align: center;
}

.profile-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.profile-card h2 {
  font-size: 30px;
  margin-bottom: 1rem;
}

.edit-icon {
  font-size: 0.9rem;
  cursor: pointer;
}

.profile-field {
  background: #fcd3b5;
  color: #333;
  border-radius: 30px;
  padding: 0.7rem;
  margin: 0.5rem 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logout-btn {
  margin-top: 1.5rem;
  background: transparent;
  color: #f39c12;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logout-btn:hover {
  text-decoration: underline;
}

/* Training Progress */
.progress-section {
  flex: 1;
}

.progress-section h2 {
  font-size: 45px;
  margin-bottom: 2rem;
  font-weight: bold;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.progress-card {
  background: #f39c12;
  color: #333;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.progress-card h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* Chat Support */
.chat-support {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}









/* ===== GALLERY PAGE ===== */
.gallery-page {
  padding: 60px 20px;
  text-align: center;
}

.gallery-page .section-title {
  font-size: 28px;
  font-weight: bold;
  color: #a00;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  justify-items: center;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  max-width: 350px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover,
.gallery-grid video:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}





/* ===== PROFILE ENHANCEMENTS ===== */
.profile-card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.profile-avatar img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.profile-avatar img:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.3);
}

.progress-card {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}
.progress-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ===== PROFILE LAYOUT ===== */
.profile-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  align-items: start;
}

/* Profile card */
.profile-card {
  background: #a00;
  color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
}

/* Avatar */
.profile-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
}

/* Profile text */
.profile-card h2 {
  margin: 10px 0 20px;
  font-size: 1.6rem;
}

.profile-field {
  background: #fcd3b5;
  color: #333;
  margin: 8px 0;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.logout-btn {
  margin-top: 20px;
  background: transparent;
  border: none;
  color: #ffd600;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.1rem;
}

/* Progress Section */
.progress-section h2 {
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.progress-card {
  background: #f39c12;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  font-size: 1.1rem;
}

.progress-card h3 {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: bold;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet view */
@media (max-width: 992px) {
  .profile-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .profile-card {
    max-width: 500px;
    margin: 0 auto;
  }

  .progress-section {
    text-align: center;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .profile-container {
    padding: 15px;
    margin: 20px auto;
  }

  .profile-card {
    padding: 20px 15px;
  }

  .profile-card h2 {
    font-size: 1.3rem;
  }

  .profile-avatar img {
    width: 90px;
    height: 90px;
  }

  .progress-card {
    padding: 20px;
    font-size: 1rem;
  }

  .progress-card h3 {
    font-size: 1.2rem;
  }
}

.btn-book-here {
  margin-top: 10px;
}

/* Force about page cards background to peach (override) */
.about-page-values .value-card, .about-page-values .mission-card {
  background: #fcd3b5 !important;
}

/* Global mobile typography: make text smaller on phones for better fit */
@media (max-width: 600px) {
  /* base */
  body { font-size: 14px; }

  /* headings */
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
  h3 { font-size: 16px; }

  /* paragraph, list items */
  p, li { font-size: 14px; }

  /* smaller UI buttons/text */
  .btn-primary, .btn-primary-hero, .book-btn-primary, .apt-btn-primary {
    font-size: 14px;
    padding: 10px 16px;
  }

  /* make card text slightly smaller */
  .hotel-card, .apartment-card, .progress-card {
    font-size: 14px;
  }

  /* reduce spacing for compact layout */
  .hotel-rooms, .apartment-list, .about-page-section, .hotel-grid, .apartment-list {
    padding: 20px;
  }

  /* Payment-specific mobile fixes to prevent overflow and button distortion */
  .payment-section > * { box-sizing: border-box; padding-left: 16px; padding-right: 16px; }
  .payment-box { width: 100%; padding-left: 0; padding-right: 0; box-sizing: border-box; }
  .payment-info, .payment-form { min-width: 0; word-wrap: break-word; overflow-wrap: break-word; }

  .phone-input { display: flex; gap: 8px; }
  .phone-input select { flex: 0 0 34%; min-width: 0; }
  .phone-input input { flex: 1 1 auto; min-width: 0; }

  .payment-info img, .payment-info video, .payment-info iframe { max-width: 100%; height: auto; }

  .booking-buttons .btn-book, .booking-buttons .btn-cancel { box-sizing: border-box; }

  @media (max-width: 600px) {
    .booking-buttons { gap: 8px; }
    .booking-buttons .btn-book, .booking-buttons .btn-cancel { width: 100%; min-width: 0; display: block; margin: 6px 0; }
  }

}