




@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: red;
  --primary-color-dark: rgb(78, 103, 69);
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark);
}

.section__subheader::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(1rem, -50%);
  height: 2px;
  width: 4rem;
  background-color: var(--primary-color);
}

.section__header {
  max-width: 600px;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  color: var(--text-dark);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 120px;
}

/* ============================================= */
/* HEADER & NAVIGATION STYLES (FINAL FIX)        */
/* ============================================= */

.header {
  position: relative;
  min-height: 100vh;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
}

.nav__menu__btn {
  display: block;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: fixed;
  top: 70px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-color: var(--white);
  transition: left 0.3s ease-in-out;
  
}

.nav__links.open {
  left: 0;
}

.nav__links a {
  color: var(--text-dark);
  font-weight: 600;
}

.nav__btn {
  display: none;
}

/* --- Desktop Navigation --- */
@media (min-width: 769px) {
  nav {
    background-color: transparent;
    box-shadow: none;
  }
  
  .nav__bar {
    padding: 1rem;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    left: auto;
    width: auto;
    height: auto;
    flex-direction: row;
    background-color: transparent;
    padding: 0;
  }

  .nav__links a {
    color: var(--white);
    padding-bottom: 5px;
    position: relative;
  }

  .nav__links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s;
  }

  .nav__links a:hover::after {
    width: 100%;
  }

  .nav__btn {
    display: block;
  }
}

/* --- Slideshow & Header Text --- */
.slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide__content {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  text-align: center;
  padding: 1rem;
}

.slide.active .slide__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.header__container {
  position: relative;
  z-index: 1;
  padding: 0;
}

.header__container h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.header__container h1 span {
  color: var(--primary-color);
}

.header__container p {
  font-size: 1.25rem;
  opacity: 1; /* Make it fully visible */
  margin-top: 1rem;
  color: var(--primary-color); /* Change color to your red variable */
  font-weight: 550; /* Optional: Makes the text slightly bolder */
}

@media (min-width: 769px) {
  .header__container h1 {
    font-size: 4rem;
  }
}

/* ============================================= */
/* OTHER PAGE SECTIONS                           */
/* ============================================= */

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.room__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.room__card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.room__card__image {
  position: relative;
  isolation: isolate;
}

.room__card__details {
  padding: 1rem;
}

.room__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.room__card p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.room__card h5 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.room__card h5 span {
  font-size: 1.1rem;
  color: var(--text-dark);
}

.service {
  background-image: url("assets/Reception_Horizon.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;
  grid-template-columns: 1fr;
}

.service__content {
  padding: 2rem;
  background-color: var(--white);
}

.service__list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}

.service__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.service__list span {
  padding: 5px 12px;
  font-size: 1.75rem;
  border-radius: 100%;
}

.service__list li:nth-child(1) span {
  color: #60a5fa;
  background-color: #dbeafe;
}

.service__list li:nth-child(2) span {
  color: #f472b6;
  background-color: #fce7f3;
}

.service__list li:nth-child(3) span {
  color: #c084fc;
  background-color: #f3e8ff;
}

.service__list li:nth-child(4) span {
  color: #fb7185;
  background-color: #ffe4e6;
}
.service__list li:nth-child(5) span {
  color: #066aff73;
  background-color: #def2f8;
}

.banner__content {
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card {
  text-align: center;
  flex: 1 1 180px;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.banner__card p {
  color: var(--text-light);
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 4rem;
  padding-block: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  background-image: url("assets/conf_hall.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.explore__content {
  padding: 2rem;
  background-color: var(--white);
  opacity: 0.91;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: auto;
}

.explore__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: var(--text-dark);
}

.explore__content .btn {
  color: var(--primary-color);
  background-color: var(--white);
  border: 1px solid var(--primary-color);
}

.explore__content .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
}

@media (min-width: 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__content {
    grid-column: 2/3;
    padding: 2rem 4rem;
  }
}

@media (min-width: 1024px) {
  .room__grid {
    gap: 2rem;
  }
}

/* ============================================= */
/* FOOTER STYLES                                 */
/* ============================================= */
.footer__section {
  background-color: #f8f8f8;
  padding: 40px 20px;
}

.footer__container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

/* Map on Left */
.footer__map {
  flex: 1 1 450px;
  min-height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* Right: Contact Info + Form */
.footer__right {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__info,
.footer__form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* Contact Info List */
.footer__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer__contact-list img {
  width: 20px;
  height: 20px;
}

/* Social Media */
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer__socials img {
  width: 24px;
  height: 24px;
}

/* Form */
.footer__form .form-group {
  margin-bottom: 15px;
}

.footer__form input,
.footer__form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #000000;
  font-size: 14px;
}

.footer__form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.footer__form .btn {
  background-color: #fd0000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.footer__form .btn:hover {
  background-color: #815d5d;
}

/* Responsive */
@media (max-width: 960px) {
  .footer__container {
    flex-direction: column;
  }

  .footer__map {
    min-height: 300px;
  }
}


.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 120px;
}








.booking__container {
  padding-block: 0;
}

.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  margin-top: 2rem; /* Pushes it below the header */
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.input__group {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.input__group span {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
}

.input__group input {
  display: block;
  width: 100%;
  max-width: 150px;
  padding-block: 5px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  border: none;
}

.input__group input::placeholder {
  color: var(--text-light);
}








/* ================================================================== */
/* STYLES FOR BOOKING, SINGLE, DOUBLE, AND MASTER ROOM PAGES          */
/* ================================================================== */

/* --- Simplified Header for Sub-Pages --- */
.simple-header {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  
}

/* --- Booking Form Styles --- */
.booking__form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.input__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.input__group label {
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input__group input,
.input__group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.input__btn {
  grid-column: 1 / -1;
  justify-self: end;
}
/* --- Room Page Specific Styles --- */
.single__details {
  margin-top: 3rem;
}

.single__content {
  display: flex;
  flex-direction: column; /* Stacks image and text on mobile */
  gap: 10rem;
  align-items: center;
}

/* Styles for the new image container */
.single__image {
  flex: 1; /* Takes up half the space on desktop */
  max-width: 500px; /* Prevents the image from becoming too large */
}

.single__image img {
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  
}

/* Styles for the text content container */
.single__info {
  flex: 1; /* Takes up the other half of the space on desktop */
}

/* On desktop screens, switch to a side-by-side layout */
@media (min-width: 769px) {
  .single__content {
    flex-direction: row; /* Aligns items side-by-side */
    align-items: flex-start; /* Aligns items to the top */
  }
}

.single__info ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.single__info .price {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* --- Room Gallery Styles --- */
.room-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.room-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.room-gallery img:hover {
  transform: scale(1.05);
}

/* --- Specific Hero Styles for Room Pages --- */
.single__hero, .double__hero, .master__hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (min-width: 769px) {
  .single__content {
      flex-direction: row;
  }
}



/* CSS for scrolling gallery */
.scroll-gallery {
  overflow: hidden;
  position: relative;
  width: auto;
  padding: 1rem 0;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 11s linear infinite;
}

.scroll-track img {
  height: 250px;
  width: auto;
  margin-right: 20px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
}

/* Keyframes for horizontal scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.faq__container {
  padding: 4rem 2rem;
  background-color: #000000;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq__item h4 {
  font-size: 1.2rem;
  color: #ffffff; /* red for emphasis */
  margin-bottom: 0.5rem;
}

.faq__item p {
  font-size: 1rem;
  color: #555;
}
.faq__container {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq__item {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #ddd;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq__item summary {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #d62828; /* Horizon red */
}

.faq__item p {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
}



.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #555;
}




.booking__form {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--white);
  border-radius: 10px;
  margin-top: 2rem; /* Pushes it below the header */
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}




.footer__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__form .form-group {
  display: flex;
  flex-direction: column;
}

.footer__form input,
.footer__form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #ffffff;
  color: #000000;
}

.footer__form label {
  margin-bottom: 5px;
  color: #000000;
  font-size: 0.95rem;
}

.footer__bar {
  text-align: center;
  padding-top: 30px;
  font-size: 0.9rem;
  color: #000000;
  border-top: 1px solid #271717;
}

.footer__bottom {
  text-align: center;
  color: #030303;
  font-size: 0.85rem;
  padding: 30px 0 10px;
  border-top: 1px solid #ffffff;
}

.footer__bottom-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.footer__bottom-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__bottom-links a:hover {
  color: #ffffff;}










  .footer__section {
        background-color: #f8f8f8;
        padding: 40px 20px;
      }
      .footer__container {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
      }
      .footer__map {
        flex: 1 1 450px;
        min-height: 500px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      }
      .footer__right {
        flex: 1 1 500px;
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .contact__info,
      .footer__form {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      }
      .footer__contact-list {
        list-style: none;
        padding: 0;
        margin-top: 10px;
      }
      .footer__contact-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
      }
      .footer__contact-list img {
        width: 20px;
        height: 20px;
      }
      .footer__socials {
        display: flex;
        gap: 10px;
        margin-top: 10px;
      }
      .footer__socials img {
        width: 24px;
        height: 24px;
      }
      .footer__form .form-group {
        margin-bottom: 15px;
      }
      .footer__form input,
      .footer__form textarea {
        width: 100%;
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #000000;
        font-size: 14px;
      }
      .footer__form label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
      }
      .footer__form .btn {
        background-color: #fd0000;
        color: #fff;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        transition: background-color 0.3s;
      }
      .footer__form .btn:hover {
        background-color: #815d5d;
      }
      @media (max-width: 960px) {
        .footer__container {
          flex-direction: column;
        }
        .footer__map {
          min-height: 300px;
        }
      }