

:root {
  --primary-color: #e82574;
  --primary-color-dark: #bc1c5c;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.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.7rem;
  font-weight: 700;
  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: flex;
}

a {
  text-decoration: none;
}

.logo {
  max-width: 120px;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header {
  background-image: url("img/room\ bg5.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__bar {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--primary-color);
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: rgba(188, 28, 92, 0.9);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
  color: var(--white);
  transition: 0.3s;
}

.nav__btn {
  display: none;
}

.header__container {
  padding-block: 10rem 15rem;
}

.header__container p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--white);
  text-align: center;
  opacity: 0.6;
}

.header__container h1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 4.5rem;
  color: var(--white);
  text-align: center;
}

.header__container h1 span {
  color: var(--primary-color);
}

/* Slideshow background */
.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: slideshow 15s infinite;
  z-index: -1;
  filter: brightness(0.6);
}

@keyframes slideshow {
  0%   { background-image: url('img/room bg5.jpg'); opacity: 1; }
  33%  { background-image: url('img/room pool5.jpg'); opacity: 1; }
  66%  { background-image: url('img/room bg3.jpg'); opacity: 1; }
  100% { background-image: url('img/hotel bg.jpg'); opacity: 1; }
}

.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;
  transform: translateY(-50%);
  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);
}

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}


.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
  
}


.service {
  background-image: url("img/services1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container {
  padding-block: 0;
  display: grid;

  grid-template-columns: repeat(2, 1fr);
}

.service__content {
  grid-column: 1/3;
  padding: 2rem 4rem;
  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;
  color: var(--text-dark);
  background-color: var(--text-light);
  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;
}

.banner__content {
  background-color: #e7e3e6;
  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);
  font-weight: bold;
}

.explore :is(.section__subheader, .section__header) {
  text-align: center;
  margin-inline: auto;
}

.explore__bg {
  margin-top: 3rem;
  margin-bottom: 20px;
  padding-block: 3rem;
  display: grid;
  grid-template-columns:
    minmax(1rem, 1fr)
    minmax(0, var(--max-width))
    minmax(1rem, 1fr);
  background-image: url("img/foodbg1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  
}

.explore__content {
  grid-column: 2/3;
  max-width: 400px;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.explore__content p {
  margin-bottom: 0.5rem;
}

.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);
}

.footer {
  background-color: var(--text-dark);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col .section__description {
  margin-block: 2rem;
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}

.footer__links {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.footer__links a {
  color: var(--text-light);
  transition: 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__socials {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials img {
  max-width: 25px;
  opacity: 0.8;
  transition: 0.3s;
}

.footer__socials img:hover {
  opacity: 1;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 576px) {
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  nav {
    padding: 2rem 1rem;
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__bar {
    padding: 0;
    background-color: transparent;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: unset;
    position: static;
    transform: none;
    flex-direction: row;
    background-color: transparent;
  }

  .nav__btn {
    display: block;
  }

  .nav__links a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: 0.3s;
    transform-origin: left;
  }

  .nav__links a:hover::after {
    width: 100%;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__content {
    grid-column: 2/3;
  }

  .footer__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (width > 1024px) {
  .room__grid {
    gap: 2rem;
  }
}

/* Change color of Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #242323; /* change to your preferred color */
  font-weight: bold;
}

/* Optional: background circle around arrows */
.swiper-button-next,
.swiper-button-prev {
  background: #fff;     /* white background */
  border-radius: 50%;   /* makes it circular */
  width: 45px;
  height: 45px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Center the arrow inside the circle */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem 8%;
  background: #fff;
}

.hero__content {
  max-width: 500px;
}

.hero__content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #1a1a1a;
}

.hero__content .section__subheader {
  color: #0d0d0e; /* purple tone */
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.hero__content .section__description {
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero__content .btn {
  background: #fc61da;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
}

.hero__content .link {
  display: inline-block;
  margin-top: 1rem;
  color: #121113;
  font-weight: bold;
  text-decoration: underline;
}

.hero__images {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__images .img-main {
  width: 320px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 2;
}

.hero__images .img-small {
  width: 160px;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  position: absolute;
}

.hero__images .img-small.top {
  top: -40px;
  right: -60px;
}

.hero__images .img-small.bottom {
  bottom: -40px;
  right: -60px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__images {
    margin-top: 2rem;
  }
}

.room-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Blurred Background */
.room-bg {
  background: url("img/pool.jpg") no-repeat center center/cover;
  filter: blur(2px);
  -webkit-filter: blur(2px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 640px;
  z-index: 1;
}

/* Content on top */
.room-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.5); /* dark transparent box */
  border-radius: 10px;
}

.room-content h5.subtitle {
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-weight: bolder;
}

.room-content h3 {
  font-size: 40px;
  margin-bottom: 20px;
  color:  #59d7f7;
}

.room-content p {
  color: #eee;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: bold;
  font-size:1rem;
}

.btn-book {
  display: inline-block;
  padding: 12px 25px;
  background:  #59d7f7; /* purple theme */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn-book:hover {
  background: #db3db9;
}
.blog-section {
      text-align: center;
      padding: 60px 20px;
      background: #fff url('https://www.transparenttextures.com/patterns/symphony.png');
    }

    .blog-section h2 {
      font-size: 42px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .blog-section p {
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 16px;
      color: #555;
      line-height: 1.6;
    }

    .blog-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

    .blog-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
      text-align: left;
    }

    .blog-content small {
      color: #999;
      font-size: 14px;
      display: block;
      margin-bottom: 10px;
    }

    .blog-content h3 {
      font-size: 16px;
      color: #222;
      margin: 0;
    }

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    justify-items: center;
    animation: fadeIn 1.2s ease-in-out;
  }

  .menu-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 20px;
    max-width: 300px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }

  .menu-item:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.85);
  }

  .menu-item img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    transition: opacity 0.6s ease-in-out;
  }

  .menu-item:hover img {
    opacity: 1;
  }

  .menu-item h3 {
    font-size: 1.3rem;
    margin: 10px 0;
    color: #222;
  }

  .menu-item p {
    font-size: 1.2rem;
    color: #0f0f0f;
    font-weight: lighter;
  }

  .price {
    font-weight: bold;
    color: #d4a017;
    font-size: 1.2rem;
    margin-top: 10px;
  }

  @keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }





        /* Responsive fixes */
        @media (max-width: 1024px) {
            .room-card img {
                height: 200px;
                /* reduce height for medium screens */
            }

            .room-details {
                padding: 15px;
            }

            .room-details h3 {
                font-size: 16px;
            }

            .price {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .room-card img {
                height: 180px;
                /* smaller images */
            }

            .room-details {
                padding: 12px;
            }

            .room-details h3 {
                font-size: 15px;
            }

            .price {
                font-size: 16px;
            }
        }



        @media (max-width: 480px) {
            body {
                padding: 20px;
            }

            .room-card img {
                height: 160px;
            }

            .room-details h3 {
                font-size: 14px;
            }

            .price {
                font-size: 15px;
            }
        }


        .swiper {
            width: 100%;
            padding: 20px 0;
        }

        .room-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 6px;
            overflow: hidden;
            transition: 0.3s ease;
        }

        .room-card:hover {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .room-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .room-details {
            padding: 20px;
        }

        .room-details h3 {
            margin: 0 0 10px;
            font-size: 18px;
            font-weight: 600;
        }

        .price {
            font-size: 20px;
            font-weight: bold;
            color: #d07c33;
            margin: 5px 0 15px;
        }

        .price span {
            font-size: 14px;
            font-weight: normal;
            color: #555;
        }

        .room-details p {
            margin: 5px 0;
            font-size: 14px;
            color: #444;
        }