

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

header {
  background-color: #333;
  color: white;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover, .active {
  color: #ff6347;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

#about-us {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

#about-us h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#about-us p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.about-images {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-img {
  width: 45%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .about-images {
      flex-direction: column;
      align-items: center;
  }

  .about-img {
      width: 80%;
  }

  nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
  }

  nav.active ul {
      display: flex;
  }

  .menu-toggle {
      display: block;
  }

  nav ul li {
      margin: 10px 0;
  }
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

header {
  background-color: #333;
  color: white;
  padding: 10px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

nav ul li a:hover, .active {
  color: #ff6347;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Rooms Section */
#rooms {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

#rooms h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

#rooms p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.room-cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.room-card {
  background-color: #fff;
  width: 30%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 20px;
}

.room-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.room-card h3 {
  font-size: 1.8em;
  margin: 15px 0;
}

.room-card p {
  color: #555;
  font-size: 1.1em;
}

.room-card .book-now {
  background-color: #ff6347;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.room-card .book-now:hover {
  background-color: #e55347;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .room-cards {
      flex-direction: column;
      align-items: center;
  }

  .room-card {
      width: 80%;
      margin-bottom: 20px;
  }

  nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #333;
  }

  nav.active ul {
      display: flex;
  }

  .menu-toggle {
      display: block;
  }

  nav ul li {
      margin: 10px 0;
  }
}

/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar Styles */
.navbar {
  background-color: #333;
  color: white;
  padding: 15px 0;
  position: relative;
}

.navbar .menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  padding: 10px;
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.navbar ul li {
  margin: 0 15px;
}

.navbar ul li a {
  color: white;
  font-size: 18px;
  padding: 10px;
  transition: color 0.3s;
}

.navbar ul li a:hover, .navbar ul li a.active {
  color: #ff6347;
}

/* Hero Section */
.hero {
  background-image: url('../images/ihotel-hero.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 20px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5em;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #ff6347;
  color: white;
  padding: 15px 30px;
  font-size: 1.2em;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #e55347;
}

/* Special Offers Section */
.offers {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}

.offers h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.carousel {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.carousel-item {
  width: 30%;
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.carousel-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.carousel-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-item p {
  font-size: 1.2em;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Navbar */
  .navbar ul {
      display: none;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 60px;
      left: 0;
      right: 0;
      background-color: #333;
      z-index: 1000;
  }

  .navbar ul.active {
      display: flex;
  }

  .menu-toggle {
      display: block;
  }

  /* Hero Section */
  .hero h1 {
      font-size: 2.5em;
  }

  .hero p {
      font-size: 1.2em;
  }

  .cta-button {
      font-size: 1.1em;
  }

  /* Special Offers Section */
  .carousel {
      flex-direction: column;
  }

  .carousel-item {
      width: 80%;
      margin: 10px 0;
  }
}

/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and general styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header and Navigation */
header {
  background-color: #333;
  padding: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
}

nav ul li a:hover, .active {
  background-color: #007bff;
  border-radius: 5px;
}

@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  nav ul.active {
      display: flex;
  }

  nav ul li {
      margin: 10px 0;
  }

  .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 30px;
      color: #fff;
      padding: 10px;
  }
}

/* Hero Section */
#services {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

#services h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

#services p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* Services List */
.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.service-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-item h3 {
  font-size: 22px;
  margin-top: 15px;
  color: #333;
}

.service-item p {
  font-size: 16px;
  margin-top: 10px;
  color: #555;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .services-list {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-list {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .services-list {
      grid-template-columns: 1fr;
  }
}

/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and general styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header and Navigation */
header {
  background-color: #333;
  padding: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
}

nav ul li a:hover, .active {
  background-color: #007bff;
  border-radius: 5px;
}

@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  nav ul.active {
      display: flex;
  }

  nav ul li {
      margin: 10px 0;
  }

  .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 30px;
      color: #fff;
      padding: 10px;
  }
}

/* Gallery Section */
#gallery {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

#gallery h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

#gallery p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay p {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
      grid-template-columns: 1fr;
  }
}

/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and general styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header and Navigation */
header {
  background-color: #333;
  padding: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
}

nav ul li a:hover, .active {
  background-color: #007bff;
  border-radius: 5px;
}

@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  nav ul.active {
      display: flex;
  }

  nav ul li {
      margin: 10px 0;
  }

  .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 30px;
      color: #fff;
      padding: 10px;
  }
}

/* Booking Section */
#booking {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

#booking h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

#booking p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.booking-form label {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  text-align: left;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form button {
  background-color: #007bff;
  color: #fff;
  font-size: 18px;
  padding: 15px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-form button:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .booking-form {
      padding: 15px;
  }

  #booking h1 {
      font-size: 28px;
  }

  #booking p {
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .booking-form {
      width: 90%;
  }

  #booking h1 {
      font-size: 24px;
  }

  #booking p {
      font-size: 14px;
  }
}

/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and general styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header and Navigation */
header {
  background-color: #333;
  padding: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px;
}

nav ul li a:hover, .active {
  background-color: #007bff;
  border-radius: 5px;
}

@media (max-width: 768px) {
  nav ul {
      display: none;
      flex-direction: column;
      align-items: center;
      width: 100%;
  }

  nav ul.active {
      display: flex;
  }

  nav ul li {
      margin: 10px 0;
  }

  .menu-toggle {
      display: block;
      cursor: pointer;
      font-size: 30px;
      color: #fff;
      padding: 10px;
  }
}

/* Contact Section */
#contact {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
}

#contact h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

#contact p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #555;
}

/* Contact Info */
.contact-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-info div {
  width: 30%;
}

.contact-info h3 {
  font-size: 22px;
  color: #007bff;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .contact-info {
      flex-direction: column;
      align-items: center;
  }

  .contact-info div {
      width: 80%;
      margin-bottom: 20px;
  }
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    padding: 15px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .contact-form {
        padding: 15px;
    }

    #contact h1 {
        font-size: 28px;
    }

    #contact p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contact-form {
        width: 90%;
    }

    #contact h1 {
        font-size: 24px;
    }

    #contact p {
        font-size: 14px;
    }
}