@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #500d1e00;
  --primary-color-dark: #cf589400;
  --text-dark: #0c0a09;
  --text-light: #78716c;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #d7d7d2; /* Light background for contrast */
  /* Dark text for readability */
}

.section__container {
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto;
  background-color: #e6dbdb00; /* White background for the form */
    
    
}

h2 {
  text-align: center;
  margin-bottom: 11.5rem;
  font-size: 2.5rem;
  color:  #5a5a4f;
}

.input__group {
  margin-bottom: 1.5rem;
}

.input__group label {
  font-weight: bold;
  margin-bottom: 10%;
  display: block;
  font-size: 1.3rem;
}

input[type="text"],ss
input[type="email"],
input[type="password"],
input[type="tel"],
select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border 0.3s, box-shadow 0.3s, background-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    border: 2px solid #eaeff4;
    outline: none; /* /* Change border color on focus */
}

/* Optionally, you can also highlight when an input is valid or invalid */
input:valid {
  border: 2px solid #c5c9c5; /* Green border for valid input */
}

input:invalid {
  border: 2px solid #171717; /* Red border for invalid input */
}

textarea {
    height: 100px; /* Set height for textarea */
    resize: none; /* Disable resizing */
}


.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
  /* background-color: white;
            padding: 20px 40px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
}



.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: hsl(0, 70%, 43%);
}

.section__description {
  max-width: 600px;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.btn {
  font-size: 1.5rem; /* Increased font size for buttons */
  padding: 1rem 2rem; /* Increased padding for buttons */
  background-color: #303133; /* Button background color */
  color: #ffffff; /* Button text color */
  border: none; /* Remove border */
  border-radius: 4px; /* Rounded corners for buttons */
  cursor: pointer; /* Change cursor to pointer */
  transition: background 0.3s; /* Smooth transition for background */
}

.btn:hover {
  background-color: #0056b3; /* Darker background on hover */
}

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("assets/header.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

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); */
  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);
}

.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);
}
//* General Section Styling */
.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Flexbox Layout for the About Section */
.about__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

/* Left and Right Image Styling */
.about__image {
  flex: 2;
  max-width: 50%;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about__image--left {
  order: 0;
  margin-right: 20px;
}

.about__image--right {
  order: 3;
  margin-left: 0px;
}

/* Centered Large Image */
.about__large-image {
  margin: 40px 0; /* Space around the image */
}

.about__large-image img {
  width: 80%; /* Adjust size as needed */
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Centered Text Styling */
.about__text {
  flex: 2;
  text-align: left;
  padding: 0 20px;
}

.section__subheader {
  font-size: 18px;
  font-weight: bold;
  color: #d3cbca00;
  margin-bottom: 10px;
}

.section__header {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.section__description {
  font-size: 25px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Extra Section Below Images */
.about__extra-section {
  text-align: center;
  margin-top: 40px;
}

.about__extra-section h3 {
  font-size: 18px;
  color: hwb(200 76% 18%);
  margin-bottom: 20px;
}

.about__extra-text {
  font-size: 18px;
  line-height: 1.0;
  color: #f2e5e5;
  max-width: 800px;
  margin: 0 auto;
}

.about__btn .btn {
  background-color: #ff6f61;
  color: #eedddd;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.about__btn .btn:hover {
  background-color: #ff4a3a;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .about__content {
      flex-direction: column;
  }
  .about__image {
      max-width: 100%;
      margin-bottom: 20px;
  }
  .about__text {
      padding: 3;
  }
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .about__content {
      flex-direction: column; /* Stack items on smaller screens */
  }
  .about__image {
      max-width: 100%; /* Ensure images take full width on small screens */
      margin-bottom: 20px; /* Add margin between sections */
  }
  .about__center-image img {
      max-width: 100%; /* Ensure the center image takes full width on small screens */
  }
  .about__text {
      padding: 0; /* Remove padding for better spacing */
  }
}



.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__icons {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 1;
}

.room__card__icons span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.5rem;
  background-color: var(--white);
  border-radius: 100%;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.room__card__icons span:nth-child(1) {
  color: #f472b6;
}

.room__card__icons span:nth-child(2) {
  color: #c084fc;
}

.room__card__icons span:nth-child(3) {
  color: #60a5fa;
}

.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/service.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: #e51825;
}

.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 Section Styling */
.explore {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.explore__bg {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* Explore Content Styling */
.explore__content {
  flex: 1;
  margin: 0 10px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.explore__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.explore__text {
  margin: 10px 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

.thankyou__container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.thankyou__container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #545a54;
}

.thankyou__container p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #807979;
}

.thankyou__image {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}

.btn {
  background-color: #d4dcd4;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: #2f342f;
}


/* Upcoming Events Section */
.upcoming-events {
  text-align: center;
  margin: 40px 0;
}

.upcoming-events h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.events-list {
  list-style-type: none;
  padding: 0;
}

.events-list li {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
}

.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);
}

/* New styles for contact info */
.footer__links li {
  color: var(--text-light); /* Change to match your theme */
  font-size: 1rem; /* Adjust font size as needed */
}

.footer__links li:not(:last-child) {
  margin-bottom: 0.5rem; /* Space between address and phone */
}

.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 (min-width: 576px) { /* Corrected media query */
  .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;
  }
}
.service__image img {
  width: 100%; /* Makes the image take the full width of the container */
  height: 200px; /* Sets the height to a low value, adjust as needed */
  object-fit: cover; /* Ensures the image covers the area without distorting */
  margin-bottom: 20px; /* Optional: Add space below the image */
}


