body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #d4e9e2 ;
}

/* ----- Header ----- */
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #006241;
  border-bottom: 1px solid #ccc;
}

.logo img{
  width: 269px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-box {
  flex: 1;
  margin: 10px;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 60%;
  padding: 6px;
  border: 1px solid #000;
}

.account-links {
  text-align: right;
  font-size: 14px;
  min-width: 180px;
}

.account-links a {
  display: block;
  color: #fff;
  text-decoration: none;
}

/* ----- Navigation ----- */
nav {
  text-align: center;
  margin: 10px 0;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #000;
  border-right: 1px solid #000;
  padding-right: 10px;
}

nav a:last-child {
  border-right: none;
}

/* --- Image Slider --- */
.slider {
  width: 880px;
  max-width: 880px;
  height: 450px;
  position: relative;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.slides {
  width: 500%;
  height: 100%;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 20%;
  transition: 1s;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
}

/* --- Manual Navigation --- */
.navigation-manual {
  position: absolute;
  width: 100%;
  margin-top: -40px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid white;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.4s;
  margin: 0 5px;
}

.manual-btn:hover {
  background: white;
}

/* --- Slide Animation via Radio Buttons --- */
#slide1:checked ~ .first {
  margin-left: 0;
}

#slide2:checked ~ .first {
  margin-left: -20%;
}

#slide3:checked ~ .first {
  margin-left: -40%;
}

/* --- Auto Navigation Dots (optional visual effect) --- */
.navigation-auto {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 410px;
}

.navigation-auto div {
  border: 2px solid white;
  padding: 5px;
  border-radius: 50%;
  transition: 0.4s;
  margin: 0 5px;
}

/* Optional auto animation */
@keyframes slide {
  0% { margin-left: 0; }
  33% { margin-left: -20%; }
  66% { margin-left: -40%; }
  100% { margin-left: 0; }
}

.content-header {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.content-header h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 8px;
}

.content-header p {
  font-size: 1em;
  color: #555;
}
.header-deals {
  width: 100%;
  text-align: center;
}
/* ----- Main Content Layout ----- */
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
}

.sidebar {
  width: 200px;
  border: 1px solid #000;
  background-color: #fff;
  padding: 10px;
}

.sidebar div {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.sidebar ul {
  margin: 0;
  padding-left: 20px;
}

.sidebar a {
  color: #000;
  text-decoration: none;
}

.sidebar a:hover {
  color: #999;
  text-decoration: underline;
}

.content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.content-about-us, .content-services {
  flex: 1;
  display: block !important;
}

.box {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box img {border:1px solid #000;}
.box img:hover {opacity: 0.5}
.box span {position: absolute;font-weight: bold;font-size: 18px;background: #fff;color: #000;border-radius: 5px;padding: 5px;}

/* Last Minute */
.header-last-minutes {
  text-align: center;
  padding: 20px 0;
  margin: 40px 0 20px 0;
  width: 100%;
}

.header-last-minutes h1 {
  font-size: 2em;
  color: #333;
  margin-bottom: 8px;
}

.header-last-minutes p {
  font-size: 1em;
  color: #555;
}

.last-minutes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px 0 30px;
}

.deal-box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 290px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.deal-box:hover {
  transform: scale(1.05);
}

.deal-box img {
  width: 100%;
  height: 254px;
  object-fit: cover;
}

.deal-box h3, .deal-box h2 {
  margin: 10px 0 5px;
  color: #333;
  font-size: 1.1em;
}

.deal-box .price {
  font-size: 1.2em;
  color: #e63946;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ----- Pagination ----- */
.pagination {
  text-align: center;
  padding: 20px;
}

.pagination span,
.pagination a {
  margin: 0 5px;
  text-decoration: none;
  color: #999;
}

.pagination a:hover {
  color:#000;
  text-decoration: underline;
  }

/* ----- Footer Section ----- */
footer {
  background-color: #006241;
  color: #fff;
  padding: 30px 20px 10px;
  margin-top: 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  font-size:16px;
}

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

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #bdbdbd;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
}

.footer-column ul li {
  margin: 8px 0;
}

.social-icons li,
.payment-icons li {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img,
.payment-icons img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.social-icons img:hover,
.payment-icons img:hover {
  transform: scale(1.2);
}

/* LOGIN Page */
.login-container {
      width: 100%;
      max-width: 400px;
      background-color: white;
      margin: 80px auto;
      padding: 30px 40px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .login-container img {
      width: 100px;
      margin-bottom: 20px;
    }

    .login-container h2 {
      margin-bottom: 25px;
      color: #333;
    }

    .login-container input[type="email"],
    .login-container input[type="password"] {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .login-container a.forgot-password {
      display: block;
      text-align: right;
      font-size: 14px;
      color: #0073e6;
      text-decoration: none;
      margin-bottom: 20px;
    }

    .login-container a.forgot-password:hover {
      text-decoration: underline;
    }

    .login-container button {
      width: 100%;
      padding: 12px;
      background-color: #0073e6;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .login-container button:hover {
      background-color: #005bb5;
    }

    .login-container p {
      margin-top: 15px;
      font-size: 15px;
    }

    .login-container p a {
      color: #0073e6;
      text-decoration: none;
    }

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

/* Create account */
    .signup-container {
      width: 100%;
      max-width: 450px;
      background-color: white;
      margin: 80px auto;
      padding: 30px 40px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      text-align: center;
    }

    .signup-container img {
      width: 100px;
      margin-bottom: 20px;
    }

    .signup-container h2 {
      margin-bottom: 25px;
      color: #333;
    }

    .signup-container input[type="text"],
    .signup-container input[type="email"],
    .signup-container input[type="password"] {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .signup-container button {
      width: 100%;
      padding: 12px;
      background-color: #0073e6;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }

    .signup-container button:hover {
      background-color: #005bb5;
    }

    .signup-container p {
      margin-top: 15px;
      font-size: 15px;
    }

    .signup-container p a {
      color: #0073e6;
      text-decoration: none;
    }

    .signup-container p a:hover {
      text-decoration: underline;
    }

/* About us */
.about-header {
  text-align: center;
  margin: 30px 0;
}

.about-header h1 {
  font-size: 2rem;
  color: #004d66;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 1.1rem;
  color: #333;
}

.about-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  line-height: 1.6;
  color: #222;
}

.about-content h2 {
  color: #004d66;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.about-content p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.about-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-content ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.about-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #009688;
  font-weight: bold;
}

.about-image {
  text-align: center;
  margin-top: 30px;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    padding: 20px;
  }
  .about-header h1 {
    font-size: 1.6rem;
  }
}

/* Book Now */
.booking-container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

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

.booking-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

.booking-form form {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  margin-top: 12px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #006241;
}

.booking-form button {
  margin-top: 20px;
  padding: 12px;
  background-color: #006241;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-form button:hover {
  background-color: #02442e;
}

/* Contact us */
 .contact-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 40px;
      padding: 40px;
      background-color: #f9f9f9;
      flex-wrap: wrap;
    }

    .contact-form, .contact-map {
      flex: 1 1 400px;
      max-width: 500px;
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .contact-form h2, .contact-map h2 {
      color: #006241;
      margin-bottom: 15px;
      text-align: center;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .contact-form button {
      width: 100%;
      padding: 12px;
      background-color: #006241;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .contact-form button:hover {
      background-color: #023c28;
    }

    .contact-map {
      flex: 1 1 400px;
      max-width: 500px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .contact-map img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        align-items: center;
      }
      .contact-map, .contact-form {
        max-width: 100%;
      }
    }

/* ----- Responsive Design ----- */
@media (max-width: 992px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    width: 100%;
    order: -1;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 1020px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1.5) {
      .slider {
   width:450px;
   max-width:450px;
  }
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .search-box input {
    width: 90%;
  }

  .content {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 100%;
  }

  .account-links {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 5px;
    border: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
