/*
Primary: primary
Secondary: info
Accent: warning
Background: bg-light
Text: text-body*/


body {
    font-family: 'Century Gothic', serif !important;

}

a {
    text-decoration: none;
}

.heading, h1, h2, h3, h4, h5 {
    font-family: 'Century Gothic', serif !important;
    font-weight: 600;
}


header {
    overflow: visible !important;
}

 .social-bar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 100000;
  }

  .social-bar a {
    display: block;
    width: 45px;
    height: 45px;
    color: white;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    transition: 0.3s;
  }

  .facebook { background: #3b5998; }
  .google { background: #dd4b39; }
  .twitter { background: #55acee; }
  .linkedin { background: #0077b5; }
  .whatsapp { background: #25D366; }
  .email { background: #333; border-bottom-left-radius: 6px; }

  .social-bar a:hover {
    opacity: 0.8;
    text-decoration: none;
  }

  .social-bar a:first-child {
    border-top-left-radius: 6px;
  }

  /*quick enquiry button*/

.quick-enquiry-button {
    position: fixed !important;
    top: 50%;
    right: -36px;
    transform: rotate(90deg);
    z-index: 999;
}


html,
body {
    scroll-behavior: smooth;
}


.footer, .footer a {
    color: white;
    text-decoration: none;
}

/* .hero-slider img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}
 */

/* back to top button */

.to-top {
    position: fixed;
    bottom: 70px;
    right: 20px; /* Adjust this to move the button further left or right */
    z-index: 1000; /* Ensure it stays above other content */
}

/* buttons */
.btn {
    border-radius: 50px !important;
}



/*footer*/

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: 900;
    margin-right: 10px;
}

.footer-social a:before, .footer-contact a:before {
    content: "" !important;
}

.footer a:hover {
    color: var(--bs-info);
}

.footer p {
    color: var(--bs-white);
}

/* hero carousel */

.carousel-item img {
    height: 550px;
}

.banner-image {
    width: 100%;
    height: 400px;
    transform-origin: center;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

/* Apply animation only to active banner images excluding the first */
.carousel-item:not(:first-child).active .banner-image {
    animation: zoomImage 20s ease-in-out;
}

@keyframes zoomImage {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/*whatsapp and call button*/
.whatsapp-icon {
    position: fixed;
    left: 20px;
    bottom: 10px;
    font-size: 24px;
    color: var(--bs-white) !important; /* WhatsApp Green */
    background-color: var(--bs-success) !important;
    padding: 5px 13px;
    border-radius: 50%;
    z-index: 1000;
}

/* Call Icon on the Right */
.call-icon {
    position: fixed;
    right: 20px;
    bottom: 10px;
    font-size: 24px;
    color: var(--bs-white) !important; /* WhatsApp Green */
    background-color: var(--bs-success) !important;
    padding: 5px 13px;
    border-radius: 50%;
    z-index: 1000;
}

/* Mobile adjustments */
@media only screen and (max-width: 768px) {
    .whatsapp-icon {
        left: 10px;
        bottom: 32px;
    }

    .call-icon {
        right: 10px;
        bottom: 32px;
    }
}


/* packages styles*/

.package-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .package-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.package-img {
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

/* shimmer text effect */

.text-effect {
    text-align: center;
    font-weight: bold;
    background: linear-gradient( 135deg, red, orange, red, orange, red );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}


/*button effect*/

.button-effect {
    color: white;
    font-weight: bold;
    background: linear-gradient(135deg, red, orange, red, orange, red);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    border: none;
}

@keyframes shimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* accomodations */

.accomodations img{
    height: 150px;
    min-width: 100%;
}

.accomodations button{
    font-size: 14px;
}


/* blinking text */

.blink-red {
  color: black;
  text-shadow:
    -.25px -.25px 0 #fff,
     .25px -.25px 0 #fff,
    -.25px  .25px 0 #fff,
     .25px  .25px 0 #fff;
  animation: blinkColor 1s ease-in-out infinite;
}

@keyframes blinkColor {
  0%   { color: black; }
  50%  { color: red; }
  100% { color: black; }
}
.blink-red-marquee {
  color: rgb(255, 255, 255);
  text-shadow:
    -.25px -.25px 0 #fff,
     .25px -.25px 0 #fff,
    -.25px  .25px 0 #fff,
     .25px  .25px 0 #fff;
  animation: blinkColorMarquee 1s ease-in-out infinite;
}

@keyframes blinkColorMarquee {
  0%   { color: rgb(255, 255, 255); }
  50%  { color: red; }
  100% { color: rgb(255, 255, 255); }
}



/* emojis */

.emoji{
    font-size: 80px;
}