@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #001940;
  --secondary-color: #6cf55f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.first-section{
  margin-top: 0rem;
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.section__header {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.section__description {
  margin-top: 1rem;
  color: var(--text-light);
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--secondary-color);
  outline: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.section__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__nav span {
  padding: 10px 15px;
  font-size: 1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.section__nav span:hover {
  background-color: blue;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
}

.logo div {
  padding-inline: 12px;
  font-size: 2rem;
  width: 80px;
}

img,
video {
  width: 100%;
  display: flex;
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

 nav {
    background: var(--primary-color);
  }
  
  nav:after {
    content: '';
    clear: both;
    display: table;
  }
  
  nav .logo {
    float: left;
    color: white;
    font-size: 27px;
    font-weight: 600;
    line-height: 70px;
    padding-left: 60px;
  }
  
  nav .logo img {
    width: 50px;
  }
  
  nav .logo span {
    font-size: 20px;
  }
  
  nav ul {
    float: right;
    margin-right: 40px;
    list-style: none;
    position: relative;
    z-index: 10;
  }
  
  nav ul li {
    float: left;
    display: inline-block;
    background-color: var(--primary-color);
    margin: 0 5px;
    position: relative; /* Ensure that submenus position relative to parent */
  }
  
  nav ul li a {
    color: white;
    line-height: 70px;
    text-decoration: none;
    font-size: 15px;
    padding: 8px 15px;
  }
  
  nav ul li a:hover {
    color: #79f069;
    border-radius: 5px;
  }
  
  nav ul li a:active {
    color: #79f069;
  }
  
  
  nav ul ul {
    position: absolute;
    top: 70px; /* Set to be directly below the parent */
    left: 0; /* Align to the left of the parent */
    border-top: 3px solid #79f069;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, top 0.3s;
    width: auto;
  }
  
  nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  
  nav ul ul li {
    position: relative;
    margin: 0;
    width: 180px;
    float: none; /* Change to none to stack items vertically */
    display: block; /* Ensure submenu items stack vertically */
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
  
  nav ul ul li a {
    line-height: 50px;
  }
  
  nav ul ul ul {
    left: 100%; /* Position third level menus to the right */
    top: 0; /* Align the submenu vertically with the parent */
  }
  
  .show,
  .icon {
    display: none;
  }
  
  .fa-plus {
    font-size: 15px;
    margin-left: 40px;
  }
@media all and (max-width: 968px) {
  nav ul{
    margin-right: 0px;
    float: left;
  }
  nav .logo{
    padding-left: 30px;
    width: 100%;
  }
  .show + a, ul{
    display: none;
  }
  nav ul li,nav ul ul li{
    display: block;
    width: 100%;
  }
  nav ul li a:hover{
    box-shadow: none;
  }
  .show{
    display: block;
    color: white;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }
  .show:hover{
    color: #79f069;
  }
  .icon{
    display: block;
    color: white;
    position: absolute;
    top: 0;
    right: 40px;
    line-height: 70px;
    cursor: pointer;
    font-size: 25px;
  }
  nav ul ul{
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  nav ul ul a{
    padding-left: 40px;
  }
  nav ul ul ul a{
    padding-left: 80px;
  }
  nav ul ul ul li{
    position: static;
  }
  [id^=btn]:checked + ul{
    display: block;
  }
  nav ul ul li{
    border-bottom: 0px;
  }
  span.cancel:before{
    content: '\f00d';
  }
}

@media all and (max-width: 425px) {
  nav .logo span {
    font-size: 12px;
}
}



.header {
  padding-block: 5rem;
  background-image: linear-gradient(
      rgba(15, 26, 44, 0.5),
      rgba(15, 26, 44, 0.5)
    ),
    url("../assets/Picture3-modified.png");
  background-position:center;
  background-size: cover;
  background-repeat: no-repeat;
}

.header__container .section__subheader {
  color: var(--white);
}

.header__container h1 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 800;
  line-height: 4rem;
  font-family: var(--header-font);
  color: var(--white);
}

.booking {
  background-color: var(--primary-color);
}

.booking__container form {
  max-width: 350px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

.input__group {
  display: grid;
  gap: 1rem;
}

.input__group label {
  font-weight: 600;
  color: var(--white);
}

.input__group input {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  color: var(--white);
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--text-light);
  border-radius: 5px;
}

.input__group input::placeholder {
  color: var(--text-light);
}

.about {
  position: relative;
  isolation: isolate;
}

.about::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 75%;
  width: 100%;
  background-image: url("assets/about-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: -1;
}

.about__container {
  display: grid;
  gap: 4rem 2rem;
}

.about__grid {
  display: grid;
  gap: 1rem;
}

.about__card {
  height: 100%;
  padding: 2rem;
  display: grid;
  place-content: center;
  text-align: center;
}

.about__card span {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--secondary-color);
}

.about__card h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.about__card p {
  color: var(--text-light);
}

.about__card:nth-child(4) {
  background-color: var(--primary-color);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.about__card:nth-child(4) :is(h4, p) {
  color: var(--white);
}

.about__image img {
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.about__content .section__description {
  margin-bottom: 2rem;
}

.room__container {
  padding-block: 5rem;
  position: relative;
  
}
.lom_con{
    padding-block: 5rem;
  position: relative;
  
}


.room__container :is(.section__subheader, .section__header) {
  padding-inline: 1rem;
  text-align: center;
}

.room__grid {
  max-width: 1500px;
  margin-inline: auto;
  margin-top: 4rem;
  display: grid;
  gap: 0 1rem;
}


.room__card img {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room__card__details {
  margin-inline: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--white);
  transform: translateY(-50%);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room__card__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.room__card__details p {
  color: var(--text-light);
}

.room__card__details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.room__card__details h3 span {
  font-size: 0.8rem;
}

.intro {
  position: relative;
  isolation: isolate;
  background-color: var(--primary-color);
}

.intro::before {
  position: absolute;
  content: "";
  right: 0;
  height: 100%;
  width: calc(100vw / 4);
  background-color: green;
  z-index: -1;
}

.intro__container {
  display: grid;
  gap: 4rem 2rem;
}

.intro__container .section__subheader {
  color: var(--secondary-color);
}

.intro__container :is(.section__header, .section__description) {
  margin-bottom: 1rem;
  color: var(--white);
}

.intro__video {
  max-width: 450px;
  margin: auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.feature__container :is(.section__subheader, .section__header) {
  text-align: center;
}

.feature__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.feature__card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.feature__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  counter-reset: var(--text-dark);
}

.feature__card p {
  color: var(--text-light);
}

.menu {
  background-color: var(--extra-light);
}

.menu__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu__items {
  list-style: none;
  margin-block: 4rem;
  display: grid;
  gap: 1rem 4rem;
}

.menu__items li {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.menu__items li:hover {
  background-color: var(--primary-color);
}

.menu__items img {
  max-width: 100px;
  border-radius: 2px;
}

.menu__items h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
  transition: 0.3s;
}

.menu__items p {
  max-width: 400px;
  color: var(--text-light);
  transition: 0.3s;
}

.menu__items li:hover :is(h4, p) {
  color: var(--white);
}

.menu__images {
  margin-bottom: 4rem;
  display: grid;
  gap: 1rem;
}

.menu__images img {
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.menu__banner {
  list-style: none;
  padding: 4rem 2rem;
  display: grid;
  gap: 2rem;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.menu__banner span {
  font-size: 3.5rem;
  color: var(--secondary-color);
}

.menu__banner h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.menu__banner p {
  color: var(--text-light);
}

.news__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.news__card img {
  z-index: -1;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.news__card__title {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__card__title p {
  font-weight: 500;
  color: var(--text-light);
}

.news__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.news__card p {
  color: var(--text-light);
}

.footer {
  background-color: var(--primary-color);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
  width: 100%;
}

.footer__logo {
  margin-bottom: 2rem;
  color: var(--white);
}

.footer__logo div {
  background-color: white;
}

.footer__socials {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__socials a {
  padding: 6px 10px;
  font-size: 1.25rem;
  color: var(--text-light);
  background-color: var(--white);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.footer__socials a:hover {
  color: var(--white);
  background-color: green;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--secondary-color);
}

.footer__col:last-child .footer__links li {
  margin-bottom: 2rem;
}

.footer__links span {
  font-size: 2rem;
  color: var(--secondary-color);
}

.footer__links h5 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--white);
}

.footer__links p {
  color: var(--text-light);
}

.footer__bar {
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}


/* About Us Section Styling */
.about-us {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.about-section {
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.about-content.reverse {
  flex-direction: row-reverse; /* For Our Mission section, image on the left */
}

.section__header {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 20px;
}

.about-text {
  flex: 1;
  padding: 0 20px;
}

.about-text p {
  font-size: 1.1em;
  color: #555;
}

.about-image {
  flex: 1;
  padding: 0 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Styles */
@media only screen and (max-width: 1024px) {
  .about-content  {
    flex-direction: column;
    text-align: center;
  }

 .about-content.reverse {
  flex-direction: column;
  text-align: center;
  }

  .about-image,
  .about-text {
    padding: 0;
  }

  .about-text {
    margin-bottom: 20px;
  }

  .section__header {
    font-size: 2em;
  }
}

@media only screen and (max-width: 768px) {
  .section__header {
    font-size: 1.8em;
  }

  .about-text p {
    font-size: 1em;
  }

  .about-image img {
    width: 90%;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 480px) {
  .section__header {
    font-size: 1.5em;
  }

  .about-text p {
    font-size: 0.95em;
  }

  .about-image img {
    width: 100%;
  }
}

/* Room Types Section */
.room-type__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.room-type__card img {
  width: 100%;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room-type__card h3 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.room-type__card p {
  color: var(--text-light);
}

/* Available Rooms Section */
/* Root Variables */
:root {
  --primary-color: #0f1a2c;
  --secondary-color: #f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
}

/* Reset and Base Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* Rooms Section */
.barcelona-rooms-section {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background-color: var(--extra-light);
}

.barcelona-rooms-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
}

.barcelona-rooms-text {
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
}

.barcelona-rooms-header {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-family: var(--header-font);
}

.barcelona-rooms-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Slider Styles */
.barcelona-rooms-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  position: relative;
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.slider-item img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-description {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(15, 26, 44, 0.7); /* Semi-transparent background */
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Navigation Buttons */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: none;
  color: var(--white);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 10;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .barcelona-rooms-content {
    flex-direction: row;
    align-items: center;
  }

  .barcelona-rooms-text {
    text-align: left;
    margin-right: 40px;
    max-width: 50%;
  }

  .barcelona-rooms-slider {
    max-width: 50%;
  }
}


/* Event and Conferencing Section */
.barcelona-events-section {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 50px 20px;
  background-color: white; 
}

.barcelona-events-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
}

.barcelona-events-text {
  max-width: 600px;
  text-align: center;
  margin-bottom: 40px;
  margin: 15px;
}

.barcelona-events-header {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-family: var(--header-font);
}

.barcelona-events-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Event Slider Styles */
.barcelona-events-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  z-index: 999;
}

.events-slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.events-slider-item {
  position: relative;
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.events-slider-item img {
  width: 100%;
  height: auto;
  display: block;
}

.events-slider-description {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: rgba(15, 26, 44, 0.7); /* Semi-transparent background */
  color: var(--white);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

/* Event Navigation Buttons */
.events-slider-prev,
.events-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: var(--white);
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 10;
}

.events-slider-prev {
  left: 10px;
}

.events-slider-next {
  right: 10px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .barcelona-events-content {
      flex-direction: row;
      align-items: center;
  }

  .barcelona-events-text h2 {
    font-size: 2rem;
    margin-top: 30px;
}

  .barcelona-events-text {
      text-align: left;
      margin-right: 40px;
      max-width: 50%;
  }

  .barcelona-events-slider {
      max-width: 50%;
  }
}

/* Full-Width Banner */
.full-width-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  background-color: var(--primary-color); /* Background color */
  width: 100%;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-image {
  flex: 1;
}

.banner-image img {
  max-width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
}

.banner-text {
  flex: 1;
  text-align: left;
  margin-left: 20px;
}

.banner-text h2 {
  font-family: var(--header-font);
  margin-bottom: 10px;
  color: #f8f8f8;
  font-size: 35px;
}

.banner-text p {
  font-size: 1.2rem;
  color: #ededed;
  margin-bottom: 20px;
}

.book-conference-btn {
  padding: 15px 30px;
  background-color: transparent; /* Button background color */
  border: 1px black;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.book-conference-btn:hover {
  background-color: #ff3b3f;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    align-items: normal;
  }

  .banner-text {
    text-align: center;
    margin-top: 20px;
  }

  .book-conference-btn {
    margin-top: 10px;
  }
}

@media (width > 480px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__image:nth-child(1) {
    grid-area: 1/2/2/3;
  }

  .about__image:nth-child(1),
  .about__card:nth-child(4) {
    transform: translateY(2rem);
  }

  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__images {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:first-child {
    grid-column: 1/3;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding-inline: 1rem;
    background-color: var(--primary-color);
  }

  .nav__bar {
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 5px;
    transform: translateY(50%);
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    width: fit-content;
    padding: 0;
    position: static;
    flex-direction: row;
    transform: none;
    background-color: transparent;
  }

  .booking__container form {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }

  .about::before {
    height: 75%;
    width: 75%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .feature__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__header {
    flex-direction: row;
  }

  .menu__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__images {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(4, 1fr);
  }

  .news__header {
    flex-direction: row;
  }

  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: 2fr repeat(2, 1fr);
  }

  .footer__col:first-child {
    grid-column: unset;
  }
}

/* Accordion Section */
.advanced-accordion {
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.advanced-accordion h2{
  font-family: var(--header-font);
  margin-bottom: 10px;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ccc;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  border-radius: 8px;
}

.accordion-title:hover {
  background-color: #444;
}

.accordion-title .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 5px;
  transition: transform 0.3s ease;
  transform: rotate(45deg);
}

input[type="checkbox"] {
  display: none;
}

/* Rotate arrow when accordion is open */
input[type="checkbox"]:checked + .accordion-title .arrow {
  transform: rotate(-135deg); 
}

/* Default state, accordion closed */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
  padding: 0 15px;
}

/* Accordion open */
input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 250px; /* Adjust height based on content */
}

.accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #333;
  font-size: 1rem;
}

.accordion-item + .accordion-item {
  margin-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .accordion-title {
      font-size: 1rem;
      padding: 10px;
  }

  .accordion-content p {
      font-size: 0.9rem;
      padding: 10px 0;
  }

.advanced-accordion h2{
 font-family: var(--header-font);
 font-size: 15px;
}
}


/* Blog Post Section */
.blog-post {
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
}



/* Main Blog Image */
.main-image-container {
  width: 90%;
  margin: 0 auto;
  position: relative;

}

.main-blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  height:350px;
  object-fit: cover;
}

/* Blog Content */
.blog-content {
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin-top: 20px;
}

.blog-title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.blog-author {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 20px;
}

.blog-post-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contact Section */
.contact__section {
  padding: 20px 20px;
  /* background: linear-gradient(to right, #f8f9fa, #ececec); */
  text-align: center;
  margin: 0px 150px;
}
.contact__section h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}
.contact__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.contact__details, .contact__form {
  flex: 1;
  min-width: 300px;
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.contact__details h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}
.contact__details p {
  margin: 10px 0;
  color: #555;
  font-size: 18px;
}
.form__group {
  margin-bottom: 15px;
  text-align: left;
}
.form__group label {
  font-size: 16px;
  color: #333;
}
.form__group input, .form__group textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.btn {
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #0056b3;
}
/* Map section */
.map__container {
  margin: 50px auto;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/* Responsive */
@media (max-width: 768px) {
  .contact__details, .contact__form {
      width: 100%;
  }
  .contact__section {
    padding: 10px;
    text-align: center;
    margin: 0px 0px;
  }
}

@media (max-width: 425px) {
  .contact__section {
    padding: 0px;
    text-align: center;
    margin: 0px 0px;
  }

.header__container h1 {
  line-height: 3rem;
  font-size: 2rem;
}
}

/* Responsive Styles */
@media (max-width: 768px) {
  .blog-title {
    font-size: 1.8rem;
  }

  .blog-content {
    padding: 20px;
  }

  .main-image-container {
    width: 100%;
  }
}



@media (width > 1024px) {
  .about__grid {
    gap: 2rem;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .menu__images {
    gap: 2rem;
  }

  .news__grid {
    gap: 2rem;
  }
}































.container {
  max-width: 1200px;
  width: 95%;
}
.slider-wrapper {
  position: relative;
  z-index: 2;
  
}
.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
}
.slider-wrapper .slide-button:hover {
  background: #404040;
}
.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}
.slider-wrapper .slide-button#next-slide {
  right: -25px;
}
.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 18px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}
.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}
.slider-wrapper .image-list .image-item {
  width: 325px;
  height: 300px;
  object-fit: cover;
}
.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}
.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}
.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #000;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
}
.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}
.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}
/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }
  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }
  .slider-wrapper .image-list .image-item {
    width: 280px;
    height: 380px;
  }
  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}






.container {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.room-header {
  text-align: left;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.room-header h1 {
  font-size: 2rem;
  color: #333;
}

.price {
  font-size: 1.2rem;
  color: #888;
  margin-top: 5px;
}

.price span {
  font-size: 1.5rem;
  color: #d48806;
}

.rating {
  font-size: 1rem;
  color: #888;
  margin-top: 10px;
}

/* Room Info Section */
.room-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.info-item {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  flex: 1;
  margin: 0 10px;
}

/* Overview Section */
.overview {
  margin-bottom: 30px;
}

.overview h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.overview p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Facilities and Challenge Section */
.facilities-challenge {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.facilities-challenge .column {
  flex: 1;
  margin: 0 10px;
}

.facilities-challenge h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.facilities-challenge p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Amenities Section */
.amenities {
  margin-bottom: 30px;
}

.amenities h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.amenities-list {
  display: flex;
  flex-wrap: wrap;
}

.amenity {
  width: calc(25% - 10px);
  margin: 5px;
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .room-info {
      flex-direction: column;
  }

  .info-item {
      margin-bottom: 10px;
  }

  .facilities-challenge {
      flex-direction: column;
  }

  .column {
      margin-bottom: 20px;
  }

  .amenities-list {
      justify-content: space-between;
  }

  .amenity {
      width: calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .amenity {
      width: 100%;
  }
}
