* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #e8dbbf;
  color: #fff;
  padding: 15px;
  text-align: center;
}

.logo img {
      height: 60px;
      width: auto;
    }

.user-links a {
      margin-left: 15px;
      text-decoration: none;
      color: #000;
      font-weight: 500;
    }

.user-links a:hover {
      text-decoration: underline;
    }
    
/* Navigation */
nav {
  background-color: #004080;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.nav-menu a:hover {
  background-color: #0066cc;
  border-radius: 4px;
}

/* ===== Search Bar Styling ===== */
.nav-search {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav-search form {
  display: flex;
  align-items: center;
}

.nav-search input[type="text"] {
  padding: 8px 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  width: 140px;
}

.nav-search button {
  padding: 8px 12px;
  border: none;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.nav-search button:hover {
  background-color: #ffd633;
}

/* Main content */
main {
  margin: 0px auto;
  max-width:1200px;
}

main img {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 15px;
}

/* Form styling */
form {
  max-width: 400px;
  margin: 20px auto;
}

input, textarea {
  padding: 10px;
  margin-bottom: 0px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

button {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

button:hover {
  background-color: #555;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px 0;
  background: #333;
  color: #fff;
  margin-top: 0;
  font-size: 0.9rem;
  background: #004080;
}

/* Slider */
.slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: #000;
}

.slider .slide {
  width: 100%;
}

.slider img {
  width: 100%;
  height: auto;
  display: block;
}

.slider img:hover {
  opacity: 1;
}

/* Hot deals */
.hot-deals {
  background: #fff;
  padding: 0;
  max-width: 1200px;
  margin: 30px auto;
  border-radius: 8px;
  text-align: center;
}

.hot-deals h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #d11a2a;
  letter-spacing: 1px;
}

.deals-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.deal-item {
  background: #fafafa;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deal-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.deal-item img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.deal-item h2, .deal-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #333;
  font-weight:normal;
}

.price {
  font-weight: normal;
  color: #2d643a;
  font-size: 1.1rem;
}

/*Above footer */
.info-section {
  background: #f8f8f8;
  padding: 40px 20px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.info-section img {
    width:30px;
    height:30px;
}
.info-section {
    font-size:12px;
}
.info-section ul li.social {
    float:left;
    padding-right:5px;
}
.info-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.info-column h3 {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.info-column ul {
  list-style: none;
  padding: 0;
}

.info-column ul li {
  margin-bottom: 8px;
}

.info-column a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.info-column a:hover {
  color: #d11a2a;
}

/* Email signup */
.info-column form {
  display: flex;
  flex-direction: column;
}

.info-column input[type="email"] {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.info-column button {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.info-column button:hover {
  background: #555;
}


/* About us */
.about-section {
  padding: 50px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-section.alt {
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 1.8rem;
  color: #d11a2a;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Contact us */
.contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.contact-intro p {
  font-size: 1.1em;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}

.detail-item {
  margin: 10px;
}

.detail-item h3 {
  font-size: 1.3em;
  margin-bottom: 8px;
}

.detail-item p a {
  color: #0077cc;
  text-decoration: none;
}

.detail-item p a:hover {
  text-decoration: underline;
}

.contact-form-section {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form-section h3 {
  margin-bottom: 20px;
  font-size: 1.6em;
  text-align:center;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0077cc;
  outline: none;
}

.contact-form button {
  background: #0077cc;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background: #005fa3;
}

/*Page banner */
.page-banner {
  background-color: #000;
  color: #fff;
  padding: 35px 20px;
  text-align: center;
  position: relative;
}

.page-banner h1 {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-banner p {
  font-size: 1em;
  color: #ccc;
}

.page-banner a {
  color: #fff;
  text-decoration: none;
}

.page-banner a:hover {
  text-decoration: underline;
}

/* Service Page */
.services-page {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.services-intro {
  text-align: center;
  margin-bottom: 50px;
}

.services-intro h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.services-list .service-item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.service-item.reverse {
  flex-direction: row-reverse;
}

.service-item img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #0077cc;
}

.service-text p {
  line-height: 1.6;
  color: #444;
}

/* Gallery */
.gallery-page {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.gallery-intro {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-intro h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.gallery-intro p {
  color: #555;
  font-size: 1.1em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Pagination */
.pagination {
  text-align: center;
  margin-bottom: 50px;
}

.pagination a {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
  background-color: #0077cc;
  color: #fff;
}

.pagination a.active {
  background-color: #0077cc;
  color: #fff;
  border-color: #0077cc;
}

/* Blog Section */
.blog-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
    }

.blog-section h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    }

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    }

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    }

.blog-content {
    padding: 15px 20px;
    }

.blog-content h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    }

.blog-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
    }

.blog-content a {
    text-decoration: none;
    color: #0078d7;
    font-weight: bold;
    }

.blog-content a:hover {
    text-decoration: underline;
    }
    

/* Login Page */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    }

.login-box {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    }

.login-box h1 {
    text-align: center;
    color: #004080;
    margin-bottom: 25px;
    }

.login-box form {
    display: flex;
    flex-direction: column;
    }

.login-box label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    }

.login-box input[type="email"],
.login-box input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    }

.login-box button {
    background-color: #004080;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    }

.login-box button:hover {
    background-color: #0066cc;
    }

.login-box p {
    text-align: center;
    margin-top: 15px;
    }

.login-box a {
    color: #004080;
    text-decoration: none;
    }

.login-box a:hover {
    text-decoration: underline;
    }


@media (max-width: 768px) {
      .blog-section h1 {
        font-size: 1.6rem;
      }
    }
    
    
@media (max-width: 600px) {
      .login-box {
        margin: 0 15px;
        padding: 25px;
      }
    }

/* Register Page */
.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    }

.register-box {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 450px;
    }

.register-box h1 {
    text-align: center;
    color: #004080;
    margin-bottom: 25px;
    }

.register-box form {
    display: flex;
    flex-direction: column;
    }

.register-box label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    }

.register-box input[type="text"],
.register-box input[type="email"],
.register-box input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    }

.register-box button {
    background-color: #004080;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    }

.register-box button:hover {
    background-color: #0066cc;
    }

.register-box p {
    text-align: center;
    margin-top: 15px;
    }

.register-box a {
    color: #004080;
    text-decoration: none;
    }

.register-box a:hover {
    text-decoration: underline;
    }

/* Booking Page */
.booking-section {
    background: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    }

.booking-section h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    }

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

.booking-form label {
    font-weight: bold;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    }

.booking-form input,
.booking-form select,
.booking-form button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    }

.booking-form button {
    background-color: #0078d7;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    top:31px;
    position:relative;
    }

.booking-form button:hover {
    background-color: #005fa3;
    }
    
/* Responsive Design */

    @media (max-width: 600px) {
      .register-box {
        margin: 0 15px;
        padding: 25px;
      }
       .booking-section h1 {
        font-size: 1.5rem;
      }

      .booking-form {
        grid-template-columns: 1fr;
      }
      
        .deals-container {
    grid-template-columns: 1fr;
        }

  .hot-deals {
    padding: 30px 10px;
        }
        
     .info-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-column form {
    align-items: center;
  }

  .info-column input[type="email"] {
    width: 90%;
  }
  
    .contact-details {
    flex-direction: column;
  }
      
    }

 
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    text-align: center;
  }

  main {
    margin: 10px;
    padding: 15px;
  }

  form {
    width: 90%;
  }
  
   .slider img {
    height: auto;
  }
  
  nav {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .nav-search {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-search input[type="text"] {
    width: 70%;
    font-size: 16px;
  }

  .nav-search button {
    width: 25%;
    font-size: 16px;
  }
  
   .services-list .service-item {
    flex-direction: column;
    text-align: center;
  }
    .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
}

@media (max-width: 480px) {
  header h1 {
    font-size: 1.4rem;
  }

  nav ul li a {
    padding: 12px;
    font-size: 0.95rem;
  }

  main {
    font-size: 0.95rem;
  }
  
    .gallery-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 992px) {
  .deals-container {
    grid-template-columns: repeat(2, 1fr);
  }
    .info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .page-banner {
    padding: 30px 0;
  }
  .banner-content {
    max-width: 1000px;
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}