* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    overflow-x: hidden;
}

.header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(bg2.jpg);
    background-size: cover;
    background-position: center;
}

.nav {
    margin: auto;
    width: 90%;
    display: flex;
    padding: 35px 0;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    position: relative;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav h1 {
    color: aliceblue;
    cursor: pointer;
    font-size: 1.5rem;
}

.nav-menu li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: aliceblue;
    text-transform: uppercase;
}

.nav-menu li::after {
    content: '';
    width: 0%;
    height: 3px;
    background: aliceblue;
    position: absolute;
    left: 0;
    bottom: -7px;
    transition: 0.5s;
}

.nav-menu li:hover::after {
    width: 100%;
}

.content {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    text-align: center;
    color: aliceblue;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    position: relative;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.content h1 {
    font-size: 5.5rem;
    font-family: "Qwitcher Grypen", cursive;
    font-weight: 400;
    font-style: normal;
    color: chocolate;
}

.content h2 {
    font-size: 4rem;
}

.dis img {
    width: 450px;
    height: 550px;
    margin-bottom: 10%;
    margin-left: 10%;
    margin-top: 10%;
    border-radius: 3%;
}

.dis {
    display: flex;
    margin-left: 15%;
    margin-top: 10%;
    ;
}

.dis div {
    margin-top: 6%;
}

.dis div p {
    margin-top: 0%;
    font-size: 1.2rem;
    line-height: 130%;
}

.dis div h1 {
    font-size: 3rem;
}

.act {
    background-color: rgb(210, 228, 243);
    width: 100%;
    height: 50%;
}

.dv {
    display: flex;
}

.act1 {
    width: 80%;
    height: 80%;
    background-color: rgb(255, 255, 255);
    margin: 50px 20px;
    border-radius: 5%;
    overflow: hidden;
    transition: 0.5s;
}

.act1:hover {
    box-shadow: 10px 10px 60px 10px rgba(0, 0, 0, 0.15);
    scale: 1.1;
}


.act1 img {
    width: 350px;
    height: 380px;
    margin-bottom: 0;
    margin-top: 5%;
}

.act1 h1 {
    font-size: 1.6rem;
    margin-top: 5%;
    text-align: center;
    text-transform: uppercase;
    color: #756843;
    text-decoration: none;
}

.bk {
    margin-top: 30%;
    position: absolute;
    right: 43%;
}

.bk a {
    background-color: #756843;
    color: white;
    padding: 20px 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: 0.5s;
    text-decoration: none;
}

.bk a:hover {
    background-color: #f0ecec;
    color: 756843;
}



.trips {
    margin-top: 8%;
}


.mp {
    text-align: center;
    margin-bottom: 2%;
}

.mp h1 {
    font-size: 3rem;
    margin: 2% 0%;
}

.nav img {
    display: none;
}

.header,
.act,
.dis {
    overflow: hidden;
}
   span {
       font-weight: bolder;
   }

@media screen and (max-width: 600px) {
    .header {
        width: 100%;
    }

    .content h1 {
        font-size: 4rem;
    }

    .content h2 {
        font-size: 3rem;
    }

    .nav h1 {
        font-size: 1rem;
    }

    .dis {
        display: block;
        margin-left: 0%;

    }

    .dis img {
        width: 300px;
        height: 400px;
        border-radius: 5px;
        margin-top: 5%;
        margin-left: 0;
        position: relative;
        left: 10%;
    }

    .dis h1 {
        text-align: center;
    }

    .dis p {
        text-align: center;
        font-size: 1rem;
    }

    .dv {
        display: block;
    }

    .act1 {
        width: 80%;
    }

    .act {
        height: 300%;
        padding-top: 10%;
        padding-bottom: 10%;
        margin-left: 0%;

    }

    .act a {
        position: relative;
        left: 6%;
    }

    .mp h1 {
        margin-top: 50%;
        margin-bottom: 10%;
    }

    .bk {
        position: relative;
        left: 15%;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
        z-index: 50;
        display: flex;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .hamburger.active .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .fab-whatsapp::before {
        display: none;
        /* Hide tooltip on mobile */
    }

    /* Adjust size for better touch targets on mobile */
    .fab-whatsapp {
        width: clamp(50px, 15vw, 60px);
        height: clamp(50px, 15vw, 60px);
    }

    /* Remove hover effects on mobile */
    .fab-whatsapp:hover {
        transform: none;
        background-color: #25D366;
    }
    span{
        font-weight: bolder;
    }

}

.container {
    height: 0;
    position: relative;
}

.fab-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.28);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    z-index: 9999;
}

.whatsapp-icon {
    width: 65%;
    height: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Hover Effects */
.fab-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #20b554;
}

.fab-whatsapp:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Tooltip */
.fab-whatsapp::before {
    content: 'Chat on WhatsApp';
    position: absolute;
    right: 100%;
    margin-right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
    pointer-events: none;
}

.fab-whatsapp:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Animation */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(2px);
    }
}

.fab-whatsapp {
    animation: ripple 2s infinite, bounce 6s infinite;
}

.fab-whatsapp:hover {
    animation: none;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .fab-whatsapp::before {
        display: none;
    }

    .fab-whatsapp {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 60%;
        height: 60%;
    }

    .fab-whatsapp:hover {
        transform: none;
        background-color: #25D366;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .fab-whatsapp {
        animation: none;
    }
}
