/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and General Styles */
body {
  font-family: poppins;
  background-color: white; /* White background for the page */
  color: #ffffff; /* Default text color */
}

/* Base Header Styles */
header {
  background-color: #ffffff;
  color: rgb(178, 1, 1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo h1 {
  font-size: 1.8rem;
  margin: 0;
}

header h1 img{
  margin-top: 10px;
  display: flex;
  width: 200px;
  height: 150px;
  margin-left: -30px;
  
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.float-btn {
  background-color: #960606;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
  line-height: 48px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Shared Nav */
nav#main-nav {
  display: flex;
  gap: 1.5rem;
  border: white;
  
}

nav#main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  background-color: #950606;     /* Red background */
  color: #ffffff;                   /* White text */
  padding: 0.75rem 1.5rem;       /* Spacing */
  border: none;
  border-radius: 8px;            /* Rounded corners */
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Shadow effect */
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;        /* For <a> styling */
  display: inline-block;
}

nav#main-nav a:hover {
  text-decoration: solid;
  background-color: #9c9898;    /* Darker red on hover */
  transform: scale(1.05);       /* Slight zoom */
  }

/* Mobile Toggle Button (hidden by default) */
.menu-toggle {
  display: none;
  font-size: 3.5rem;
  cursor: pointer;
  color: rgb(98, 0, 0);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav#main-nav {
    display: none;
    flex-direction: column;
    background-color: #950606;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 1000;
  }

  nav#main-nav.active {
    display: flex;
  }

  nav#main-nav a {
    padding: 0.5rem 0;
  }
}

.hero-section {
  background-image: url('https://cdn.pixabay.com/photo/2019/10/14/15/27/alpine-4549188_1280.jpg'); /* Replace with actual image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;  /* Adjust as needed */
  color: rgb(207, 51, 51);
  text-decoration-thickness: 3rem;
  text-align: center;
}

.hero-section h2{
  color: #ffffff;
  text-shadow:
    0 0 5px #ffffff,
    0 0 20px #dddddd,
    0 0 30px #cccccc,
    0 0 40px #bbbbbb,
    0 0 55px #aaaaaa,
    0 0 70px #999999;
  font-weight: bold;
  font-size: 2rem;
}
.hero-section p{
  color: #000000; /* Black text */
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 20px #e0e0e0,
    0 0 30px #cccccc,
    0 0 40px #bfbfbf;
  font-weight: bold;
  font-size: 1.5rem;
}

/* Main Section */
main {
  padding: 3rem 2rem;
}

h2 {
  font-size: 2rem;
  color: #950606; /* Red headings */
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Fleet Section */
.fleet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.fleet-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow effect for cards */
  overflow: hidden;
  transition: transform 0.3s ease;
}

.fleet-card:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.fleet-specs {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
}

.fleet-specs li {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #333;
}

.image-container {
  width: 100%;
  height: 220px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid #950606; /* Red border at the bottom of images */
}

.card-details {
  padding: 1rem;
  background-color: white;
}

.card-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #950606; /* Red heading for cards */
}

.card-details p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.card-details button {
  background-color: #950606;
  text-decoration: none;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-details button:hover {
  background-color: #950606;
}

.custom-button {
  background-color: #950606;
  text-decoration: none;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  align-self: flex-end;
}

.custom-button:hover {
  background-color: #b00000;
}
/* Why Choose Us */
.reason-cards {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.reason-card {
  background-color: #f1f1f1;
  padding: 1.5rem;
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reason-card h3 {
  color: #950606; /* Red headings for reasons */
}

.reason-card p {
  color: #555;
}

.why-choose-us {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

.why-choose-us h2 {
  color: #960606;
  font-size: 32px;
  margin-bottom: 30px;
}

.reason-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.reason-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(150, 6, 6, 0.1);
  max-width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.reason-card h3 {
  color: #960606;
  font-size: 20px;
  margin-bottom: 10px;
}

.reason-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}


/* Testimonials */
.testimonial-cards {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.testimonial-card {
  background-color: #f1f1f1;
  padding: 1.5rem;
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #555;
}

.testimonial-card h4 {
  font-size: 1.2rem;
  color: #950606; /* Red color for the client's name */
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #950606; /* Red color for FAQ headings */
}

.faq-item p {
  font-size: 1.1rem;
  color: #555;
}

/* Contact Section */
form input,
form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #950606;
  color: white;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form button:hover {
  background-color: #950606;
}

.contact {
  background-color: white;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  max-width: 600px;
  margin: 40px auto;
}

.contact h2 {
  color: #960606;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  resize: vertical;
}

.contact textarea {
  min-height: 100px;
}

.contact button {
  background-color: #960606;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(150, 6, 6, 0.3);
}

.contact button:hover {
  background-color: #b80808;
}


/* Footer Section */
footer {
  background-color: #950606;
  text-align: center;
  padding: 1rem;
  color: rgb(255, 255, 255);
  margin-top: 3rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1); /* Shadow effect for footer */
}

/* Responsive Styling */
@media (max-width: 768px) {
  header nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  section {
    padding: 1rem;
  }

  .reason-cards, .testimonial-cards {
    flex-direction: column;
  }

  .reason-card, .testimonial-card {
    width: 100%;
  }
}

/*FLEET.HTML*/
.hero-section2 {
  background-image: url('tour\ travel\ club\ team\ \(1\).png'); /* Replace with actual image URL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 200px 50px;  /* Adjust as needed */
  color: rgb(207, 51, 51);
  text-decoration-thickness: 3rem;
  text-align: center;
}

.hero-section2 h2{
  color: #ffffff;
  text-shadow:
    0 0 5px #ffffff,
    0 0 20px #dddddd,
    0 0 30px #cccccc,
    0 0 40px #bbbbbb,
    0 0 55px #aaaaaa,
    0 0 70px #999999;
  font-weight: bold;
  font-size: 2rem;
}
.hero-section2 p{
  color: #000000; /* Black text */
  text-shadow:
    0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 20px #e0e0e0,
    0 0 30px #cccccc,
    0 0 40px #bfbfbf;
  font-weight: bold;
  font-size: 1.5rem;
}

/*booking.html*/


.booking-section {
  padding: 40px 20px;
  max-width: 600px;
  margin: auto;
  background-color: #111;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.booking-section h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #222;
  color: #fff;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form button {
  background-color: #fff;
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.booking-form button:hover {
  background-color: #960606;
  color: #fff;
}

.social-buttons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  color: white;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #960606;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(150, 6, 6, 0.5);
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.1);
}