:root{
  --orange:#ecb671;
--light-orange:#fbebcf;
--pastel-orange:#e7d49e;
--brown:#4a2c23;
--black:#000000;
--white:#ffffff;
--gray-bg:#f2f2f2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header & Navbar */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
}

/* Logo */
.nav-logo img {
  height: 55px;
  width: auto;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: var(--brown);
}

/* Enquiry Button */
.btn-enquiry {
  background: var(--orange);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-enquiry:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Mobile Menu Icon */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: var(--yellow);
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 75px;
    right: 0;
    width: 220px;
    flex-direction: column;
    background: var(--black);
    border-left: 3px solid var(--orange);
    border-bottom: 3px solid var(--orange);
    border-radius: 0 0 0 10px;
    padding: 20px;
    gap: 20px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    color: var(--white);
    font-size: 18px;
  }
}

/* SOCIAL ICON */
.social-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

/* Each Icon */
.social-fixed .social-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Hover Effect */
.social-fixed .social-icon img:hover {
  transform: scale(1.1);
  background: var(--orange);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
  .social-fixed {
    right: 10px;
    bottom: 10px;
  }

  .social-fixed .social-icon img {
    width: 36px;
    height: 36px;
  }
}

/* Slider container */
.slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* Slides */
.slide {
  display: none;
  width: 100%;
}

/* Show the active slide */
.slide.active {
  display: block;
}

/* Images responsive */
.slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Navigation buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 3px;
}

.prev { left: 10px; }
.next { right: 10px; }


/* ===== Home Section ===== */
.home {
  padding: 80px 20px;
  background: #f9f9f9;
}

.home-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.left-content {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.left-content .welcome-text {
  font-size: 18px;
  font-weight: 500;
  color: #4e4e4e;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.left-content .hotel-name {
  font-size: 48px;
  color: var(--orange);
  margin-bottom: 20px;
}

.left-content .hotel-description {
  font-size:18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.left-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color:var(--orange);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
}

.left-content .btn:hover {
  background-color: #b98d3a;
}

/* Right Image */
.right-img {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  text-align: center;
}

.right-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .home-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .left-content {
    padding: 10px;
  }

  .left-content .hotel-name {
    font-size: 36px;
  }

  .left-content .hotel-description {
    font-size: 15px;
  }
}

/* ===== Rooms Section ===== */
.rooms {
  padding: 80px 20px;
  background: var(--brown);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--pastel-orange);
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #555;
}

/* Rooms Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Individual Room Card */
.room-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 2px 2px 2px 2px solid black;
}



.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card h3 {
  font-size: 22px;
  color: #ffaf01;
  margin: 15px 20px 10px;
}

.room-card p {
  font-size: 15px;
  color: #555;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.room-card .btn {
  display: block;
  text-align: center;
  margin: 0 20px 20px;
  padding: 12px 0;
  background-color: #d8ae5e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}

.room-card .btn:hover {
  background-color: #fcd07f;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }

  .section-header p {
    font-size: 14px;
  }

  .room-card img {
    height: 180px;
  }
}

/* ===== Why Choose Hotel Rhythms ===== */
.why-choose {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.why-choose h2 {
  font-size: 32px;
  color: #4d4d4d;
  margin-bottom: 20px;
}

.why-choose p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Facilities Section ===== */
.facilities {
  padding: 80px 20px;
  background: url(assets/images/about/3.jpg) no-repeat center center/cover;
  text-align: center;
  min-height: auto; /* Remove fixed height for flexibility */
}

.facilities h2 {
  font-size: 32px;
  color: #d8ae5e;
  margin-bottom: 40px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center; /* Center boxes */
}

.facility {
  position: relative; 
  width: 100%;
  max-width: 220px; /* limit box width */
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  background: rgba(255,255,255,0.9); /* subtle background for text visibility */
  border-radius: 10px;
  text-align: center;
}

.facility::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  content: "";
  background: rgba(250, 183, 0, 0.7);
  transition: width 0.4s ease, left 0.4s ease;
}

.facility:hover::before {
  width: 80%;
  left: 10%;
}

.facility:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.facility i {
  font-size: 50px;
  color: rgb(158, 125, 14);
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.facility:hover i {
  transform: scale(1.2);
}

.facility p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .facilities h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .facility i {
    font-size: 40px;
  }

  .facility p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .facilities {
    padding: 60px 15px;
  }

  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }

  .facility {
    max-width: 180px;
    padding: 20px 15px;
  }

  .facility i {
    font-size: 32px;
  }

  .facility p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .facilities h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .facility {
    max-width: 100%;
    padding: 15px 10px;
  }

  .facility i {
    font-size: 28px;
  }

  .facility p {
    font-size: 13px;
  }
}

/* Gallery Scroll */
/* ===== Gallery Section ===== */
.gallery {
  padding: 40px 20px;
  background: var(--brown);
  font-family: 'Poppins', sans-serif;
}
.gallery h2 {
  font-size: 32px;
  color: #d8ae5e;
  margin-bottom: 30px;
  text-align: center;
}

.gallery-container {
  overflow-x: auto; /* Enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.gallery-scroll {
  display: flex;
  gap: 20px;
}

.gallery-scroll img {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Optional: hide scrollbar (modern browsers) */
.gallery-container::-webkit-scrollbar {
  height: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
  background: rgba(216, 174, 94, 0.7);
  border-radius: 4px;
}

.gallery-container::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-scroll img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* ===== Footer ===== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Footer Columns */
.footer .one_fourth {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 30px;
}

.footer .one_fourth.last {
  flex: 1 1 300px;
}

/* Headings */
.footer h2,
.footer h4 {
  font-size: 20px;
  color: #d8ae5e;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Contact Info */
.footer .faddress {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.8;
}

.footer .faddress li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer .faddress a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer .faddress a:hover {
  color: #d8ae5e;
}

/* QR Code */
.footer .qlinks img {
  width: 100%;
  max-width: 200px;
  border-radius: 8px;
  margin-top: 10px;
}

/* Quick Links */
.footer .siteinfo ul {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer .siteinfo ul li {
  margin-bottom: 10px;
}

.footer .siteinfo ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer .siteinfo ul li a:hover {
  color: #d8ae5e;
}

/* Facebook Widget */
.footer .fb-like-box {
  width: 100% !important;
  max-width: 230px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 15px;
}

/* Quick Enquiry Form */
.footer form input,
.footer form textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 14px;
  background: #2a2a2a;
  color: #fff;
  transition: 0.3s;
}

.footer form input:focus,
.footer form textarea:focus {
  outline: none;
  background: #3a3a3a;
}

.footer form input[type="submit"] {
  background: #d8ae5e;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.footer form input[type="submit"]:hover {
  background: #b8914d;
}

/* Captcha */
.footer form img {
  vertical-align: middle;
  border-radius: 5px;
}

.footer .captcha-text {
  font-size: 12px;
  color: #ccc;
}

/* Footer Links & Social Animations */
.footer a {
  transition: all 0.3s ease;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer .container {
    flex-direction: column;
    align-items: center;
  }

  .footer .one_fourth,
  .footer .one_fourth.last {
    min-width: 100%;
  }

  .footer .siteinfo .fb-like-box,
  .footer .qlinks img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 50px 15px;
  }

  .footer h2,
  .footer h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer form input,
  .footer form textarea {
    font-size: 13px;
    padding: 10px;
  }

  .footer form input[type="submit"] {
    font-size: 14px;
  }
}

/* ---------- FOOTER SECTION ---------- */
.footer {
  background: #0b1726; /* Dark background */
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Poppins", Arial, sans-serif;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- HEADINGS ---------- */
.footer h2,
.footer h4 {
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer h2::after,
.footer h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #f6b800;
  margin-top: 8px;
  border-radius: 4px;
}

/* ---------- CONTACT INFO ---------- */
.faddress {
  list-style: none;
  padding: 0;
}

.faddress li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.faddress img {
  display: block;
  margin-bottom: 10px;
  max-width: 100%;
}

.faddress a {
  color: #f6b800;
  text-decoration: none;
}

.faddress a:hover {
  text-decoration: underline;
}

/* ---------- QR Code ---------- */
.qlinks img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* ---------- QUICK LINKS ---------- */
.siteinfo ul {
  list-style: none;
  padding: 0;
}

.siteinfo ul li {
  margin-bottom: 8px;
}

.siteinfo ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.siteinfo ul li a:hover {
  color: #f6b800;
}

/* ---------- ENQUIRY FORM ---------- */
.footer form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer .form-control {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  background: #1e2b3c;
  color: #fff;
  outline: none;
}

.footer .form-control::placeholder {
  color: #aaa;
}

.footer .form-control:focus {
  background: #263549;
  border: 1px solid #f6b800;
}

.footer .btn {
  background: #f6b800;
  color: #0b1726;
  border: none;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer .btn:hover {
  background: #fff;
  color: #0b1726;
}

/* ---------- CAPTCHA ---------- */
.captcha-text {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: -5px;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}

.footer-bottom span {
  color: #f6b800;
  font-weight: 600;
}

/* ---------- FACEBOOK BOX ---------- */
.fb-like-box {
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .footer .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 15px 15px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer h2,
  .footer h4 {
    font-size: 1.1rem;
    text-align: start;
  }

  .footer ul,
  .footer form {
    text-align: start;
  }

  .footer .btn {
    align-self: start;
    width: 100%;
  }

  .footer-bottom {
    font-size: 0.85rem;
  }

  .qlinks img {
    margin: 0 auto;
  }
}
