@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.5;
}

/* Header Section with Parallax */
.header {
    min-height: 100vh;
    background-image: url('img/Banner4.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    color: #fff;
   
    box-sizing: border-box;

    background-blend-mode: overlay;
}

/* Navigation Styles */
nav {
    background-color: transparent;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

/* Logo Styles */
.logo img {
    width: 120px;
    mix-blend-mode: darken;

}

/* Navigation Links Styles */
.navLinks ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navLinks ul li {
    margin: 0 15px;
}

.navLinks ul li a {
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.navLinks ul li a:hover {
    background-color: #f9a826;
    color: white;
}

.menu-icon {
    display: none;
}

.menu-icon i {
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

/* Text Box Styles */
.textBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 800px;
    box-sizing: border-box;
}

.textBox h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.textBox p {
    font-size: 1.25em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.heroButton {
    padding: 12px 30px;
    background: #f9a826;
    border: none;
    color: white;
    font-size: 1em;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    text-decoration: none;
}

.heroButton:hover {
    background-color: #d48806;
}

/* About Section */
.para {
    padding: 60px 20px;
    background: #f2f2f2;
    color: #333;
    text-align: center;
}

.para p {
    font-size: 1.1em;
    line-height: 1.8em;
    margin: 20px auto;
    max-width: 800px;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background: #f2f2f2;
    color: #333;
    text-align: center;
}

.services-section .card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.services-section .card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    text-align: center;
}

.services-section .card:hover {
    transform: translateY(-10px);
}

.services-section .card i {
    font-size: 3em;
    margin-bottom: 20px;
    color: #f9a826;
}

.services-section .card h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.services-section .card p {
    font-size: 1em;
    color: #777;
}

/* Destination Section with Carousel */
.destination {
    padding: 60px 20px;
    background: #f2f2f2;
    color: #333;
    text-align: center;
}

#carouselContainer {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
}

#carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scroll 20s linear infinite;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 300px;
    margin: 0 10px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.carousel-item:hover {
    transform: scale(1.05);
    /* Slightly scale up the item */
    z-index: 1;
    /* Bring the hovered item to the front */
}

.carousel-item img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    /* Smooth zoom effect */
}

.carousel-item:hover img {
    transform: scale(1.1);
    /* Zoom in the image on hover */
}

.carousel-item .description {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 1.1em;
    opacity: 0;
    /* Hide description initially */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    /* Smooth fade-in and move effect */
    transform: translateY(20px);
    /* Start off below the item */
}

.description {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item:hover .description {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

#carouselContainer:hover #carousel {
    animation-play-state: paused;
}

.carousel-item:hover .description {
    opacity: 1;
    /* Show description on hover */
    transform: translateY(0);
    /* Move description to its final position */
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: #f2f2f2;
    color: #333;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.contact-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.contact-item .contact-circle {
    background: #fff;
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: 0.3s;
}

.contact-item .contact-circle:hover {
    transform: translateY(-10px);
}

.contact-item a {
    text-decoration: none;
    color: #0d0d0d;
}

.contact-item i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #f9a826;
}

.footer {
    background-color: #0d0d0d;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #f9a826;
}

.footer-text {
    margin: 20px 0;
    font-size: 14px;
    color: #999;
    max-width: 600px;
}

.footer-menu {
    margin-top: 20px;
}

.footer-menu a {
    margin: 0 15px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #f9a826;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design for Navbar */

@media (max-width: 480px) {
   #x{
    padding-top: 20%;
   }
    .navLinks{
        max-height: 10rem;
        padding-top: 10rem;
    }
    
    #menuList{
        height: 35%;
        position: absolute;
    }
   
    nav ul {
        position: absolute;
        top: 0px;
        left: 0%;
        
        flex-direction: column;
        text-align: left;
        background: #f9a826;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s ease-in-out;
        width: 100%;
    }

    nav ul li {
        padding: 30px;
        padding-top: 0;
        
    }

    .menu-icon {
        display: block;
        position: relative;
        right: 0;
        padding-right: 5%;
    }

}

/* Responsive Design for Navbar for medium devices */

@media (max-width: 900px) {
    #x{
     padding-top: 10%;
    }
     .navLinks{
         max-height: 10rem;
         padding-top: 10rem;
     }
     
     #menuList{
         height: 35%;
         position: absolute;
     }
    
     nav ul {
         position: absolute;
         top: 0px;
         left: 0%;
         
         flex-direction: column;
         text-align: left;
         background: #f9a826;
         gap: 0;
         overflow: hidden;
         max-height: 0;
         transition: max-height 0.5s ease-in-out;
         width: 100%;
     }
 
     nav ul li {
         padding: 30px;
         padding-top: 0;
         
     }
 
     .menu-icon {
         display: block;
         position: relative;
         right: 0;
         padding-right: 5%;
     }
 
 }
 

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

    .footer-social {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-menu {
        flex-direction: column;
    }

    .footer-menu a {
        margin-bottom: 10px;
    }
}

/* Extra Small Devices (Phones) */

@media (max-width: 480px) {
    .footer-content {
        text-align: center;
    }

    .footer-social {
        flex-direction: column;
    }

    .footer-social a {
        margin: 5px 0;
    }

    .footer-text {
        font-size: 13px;
    }

    .footer-menu a {
        margin: 0 10px;
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .textBox h1 {
        font-size: 1.75em;
    }

    .textBox p {
        font-size: 1em;
    }

    .services-section .card {
        width: 90%;
    }

    .carousel-item {
        min-width: 250px;
    }

    .footer-social {
        flex-direction: row;
    }

    .footer-social a {
        margin: 10px 0;
    }

    .footer-menu a {
        flex-direction: column;
       
       padding: 1.8%;
        margin: 0;
    }
}