/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}
.hero {
    background: url('Travel 2.jpg') no-repeat center center/cover;
    color:ghostwhite;
    text-align: center;
    padding: 8rem 0;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    background-color: #ff9800;
    color: white;
    border:hwb(from color h w b);
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn:hover {
    background-color: #e65100;
}

/* Keyframe animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services Section */
.services {
    background-color: white;
    padding: 5rem 1rem;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #004d40;
}

.service-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.service {
    background: #edbbce;
    padding: 2rem;
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.service i {
    font-size: 3rem;
    color: #004d40;
    margin-bottom: 1rem;
}

.service:hover {
    transform: translateY(-10px);
}


.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Each destination block */
  .destination {
    flex: 1 1 calc(33.333% - 40px); /* 3 images per row with spacing */
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    cursor: pointer;
  }
  

  .destination:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* Image styling */
  .destination img {
    width: 100%;
    height: auto;
    border-bottom: 5px solid #34495e;
    transition: filter 0.3s ease;
  }
  
  .destination:hover img {
    filter: brightness(0.8);
  }
  
  /* Destination name (title) */
  .destination h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    color: #2c3e50;
    margin: 15px 0 10px;
    text-align: center;
    font-weight: bold;
  }
  
  /* Description text */
  .destination p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    color: #7f8c8d;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.6;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .destination {
      flex: 1 1 calc(50% - 40px); /* 2 images per row on medium screens */
    }
  }
  
  @media (max-width: 768px) {
    .destination {
      flex: 1 1 100%; /* 1 image per row on small screens */
    }
  }
  
  /* Add a smooth animation effect */
  .destination {
    transition: all 0.3s ease-in-out;
  }
  
  
/* Testimonials Section */
.testimonials {
    background: #004d40;
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.testimonial-container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    background: white;
    color: #333;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    text-align: right;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer h3 {
    margin-bottom: 1rem;
}

.socials a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.socials a:hover {
    color: #ff9800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-container, .gallery-container, .testimonial-container {
        flex-direction: column;
        align-items: center;
    }

    .service, .testimonial {
        width: 80%;
    }

    .gallery img {
        width: 80%;
    }
}
