@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Dongle-light";
    src: url("Dongle/Dongle-Light.ttf");
}

@font-face {
    font-family: "Dongle-regular";
    src: url("Dongle/Dongle-Regular.ttf");
}

@font-face {
    font-family: "Dongle-bold";
    src: url("Dongle/Dongle-Bold.ttf");
}

body {
    background-color: #a297bb;;
}

/* Header and Navigation Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fbfafd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-width: 300px;
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-menu ul li {
    position: relative;
    padding: 10px;
   
}

.nav-menu ul li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    font-family: "Dongle-bold";
    font-size: 1.6rem;
    color: #333;
    transition: all ease 0.3s;
}

.nav-menu ul li a:hover {
    color: #ff7f50;
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 150px;
}

.dropdown-menu li {
    padding: 10px;
    white-space: nowrap;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 12px;
    color: black;
}

.nav-menu ul li:hover .dropdown-menu {
    display: block;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    #menu-toggle:checked ~ .nav-menu {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-image img.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fafafc;
    z-index: 2;
  }
  
  .hero-content h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600; /* Normal weight */
    font-size: 4.0rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

#h3-content {
    font-family: "Pacifico", "Brush Script MT"/* Added a specific cursive fallback */
    font-weight: 600;
    font-size: 2.0rem;
}
  



/*   
  .hero-content p {
    font-family: "Dongle-regular";
    font-size: 2rem;
  } */
  
  /* Ensure dropdown is hidden by default */
  .dropdown-menu {
    display: none !important;
  }
  
  .nav-menu ul li:hover .dropdown-menu {
    display: block !important;
  }
  

/* Products Section */
.products {
    font-size: 2.4rem;
    font-family: "Dongle-bold";
    margin: 40px 80px;
    text-align: center;
}

.products h2 {
    margin-bottom: 40px;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.destination-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.destination-item {
    text-align: left;
}

.destination-item h3 {
    font-size: 2rem;
}

.destination-item p {
    font-size: 1.4rem;
    line-height: 1;
    font-family: "Dongle-regular";
}

/* About Section */
.about {
    text-align: center;
    padding: 100px;
    
}

.about h3 {
    font-family: "Dongle-bold";
    font-size: 3rem;
}

.about p {
    font-family: "Dongle-regular";
    font-size: 1.4rem;
    line-height: 1;
    margin-bottom: 40px;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member img {
    width: 300px;
    height: 300px;
    margin: 20px;
    object-fit: cover;
}

.team-member h4 {
    font-family: "Dongle-bold";
    font-size: 2rem;
}

/* Contact Section */
.contact {
    padding: 80px;
    text-align: center;
    background-color: #a297bb;
}

.contact h3 {
    font-family: "Dongle-bold";
    font-size: 3rem;
}

.contact-info p {
    font-family: "Dongle-regular";
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.contact-info li {
    margin: 0 20px;
    font-family: "Dongle-regular";
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.contact-info li a {
    text-decoration: none;
    font-family: "Dongle-regular";
    color: black;
}

.contact-info i {
    font-size: 24px;
    margin-right: 10px;
}

.form {
    width: 100%;
}

input,
textarea {
    width: 70%;
    padding: 10px;
    margin: 20px 0;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-size: 1.4rem;
    font-family: "Dongle-regular";
}

textarea {
    height: 200px;
}

.form button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    background-color: #ff7f50;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: "Dongle-light";
    font-size: 1.6rem;
    border: none;
    transition: all ease 0.3s;
}

.form button:hover {
    background-color: #333;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin-right: 20px;
}

footer p {
    font-family: "Dongle-regular";
    font-size: 1.4rem;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff7f50;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #333;
    transform: scale(1.05);
}

.button:active {
    transform: scale(0.95);
}

/* Product Page 1 */
#learn-more {
    padding: 60px 20px;
    background-color: #ccd8ad;
}

.learn-more__content {
    max-width: 900px;
    margin: auto;
    font-family: "Arial", sans-serif;
}

.learn-more__content h2 {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    background-color: #ccd8ad;
    
    /* color: ; */
    margin-bottom: 20px;
}

.learn-more__content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #060800;
    margin-top: 30px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
}

.learn-more__content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.learn-more__content ul {
    list-style-type: none;
    padding: 0;
}

.learn-more__content ul li {
    font-size: 16px;
    color: #444;
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.learn-more__content ul li::before {
    content: "✔";
    color: #007bff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.table-responsive {
    margin-top: 20px;
}

.table {
    background-color: #fff;
    text-align: center;
}

.table th {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    padding: 12px;
}

.table td {
    font-size: 14px;
    padding: 10px;
    color: #555;
}

.client__content {
    padding: 4rem 1rem;
    background-color: var(--extra-light);
    border-radius: 1rem;
}

.client__content :is(.section__header, .section__description) {
    max-width: 550px;
    margin-inline: auto;
    text-align: center;
}

.client__content .section__header {
    font-size: 3.25rem;
}

.swiper {
    margin-top: 4rem;
    width: 100%;
}

.client__card {
    display: grid;
    gap: 2rem;
    max-width: 750px;
    margin-inline: auto;
    text-align: center;
}

.client__card img {
    max-width: 250px;
    margin-inline: auto;
}

.client__card p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.client__card h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.client__card h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.product-link {
    text-decoration: none;
    color: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about {
        padding: 50px;
    }

    .contact {
        padding: 40px;
    }

    input,
    textarea {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .destination-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }

    .hero-button {
        padding: 8px 20px;
        font-size: 1.2rem;
    }

    .logo img {
        max-width: 80px;
    }
}


/* //gallery */

/* Style for the button */
button[type="submit"] {
    background-color: #ff7f50; /* Orange color */
    color: white; /* Text color */
    border: none; /* Remove default border */
    padding: 12px 24px; /* Padding for better size */
    font-size: 16px; /* Font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  }
  
  /* Hover effect for the button */
  button[type="submit"]:hover {
    background-color: #ff6347; /* Darker orange on hover */
  }
  
  /* Active effect for the button */
  button[type="submit"]:active {
    background-color: #e5533d; /* Even darker orange when clicked */
  }
  
  /* Focus effect for accessibility */
  button[type="submit"]:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 3px rgba(255, 127, 80, 0.5); /* Add a subtle glow */
  }



