﻿/* === GENERAL === */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

    a:hover {
        color: #ffeb3b;
    }

/* === LOGO === */
.logo-img {
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, filter 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

    .logo-img:hover {
        transform: scale(1.05);
        filter: brightness(1.2);
    }

/* === NAVBAR === */
.custom-navbar {
    background: linear-gradient(to right, #2e7d32, #558b2f, #9e9d24);
    border-bottom: 3px solid #cddc39;
    animation: navbarGlow 5s ease-in-out infinite alternate;
}

@keyframes navbarGlow {
    0% {
        box-shadow: 0 0 8px rgba(158, 157, 36, 0.3);
    }

    100% {
        box-shadow: 0 0 20px rgba(158, 157, 36, 0.7);
    }
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    color: #fff !important;
    margin-left: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #ffeb3b !important;
        transform: translateY(-2px);
    }

/* === BUTTONS === */
.btn-primary {
    background-color: #e91e63;
    border-color: #e91e63;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #d81b60;
    }

.pulse-cta {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* === FOOTER === */
.footer-section {
    background: linear-gradient(135deg, #1b5e20, #43a047);
    color: #fff;
    padding: 60px 0 30px;
}

    .footer-section h4, .footer-section h5 {
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-section a {
        color: #fff;
        transition: color 0.3s ease;
    }

        .footer-section a:hover {
            color: #aed581;
            text-decoration: underline;
        }

    .footer-section .social-icons a:hover {
        transform: scale(1.2);
        color: #ffeb3b;
    }

    .footer-section hr {
        border-top: 1px solid #66bb6a;
    }

/* === GLOW TEXT === */
.glow-text-pink {
    color: #f48fb1;
    text-shadow: 0 0 5px #f8bbd0, 0 0 10px #f8bbd0;
    animation: pinkGlow 2s infinite alternate;
}

@keyframes pinkGlow {
    0% {
        text-shadow: 0 0 5px #f8bbd0;
    }

    100% {
        text-shadow: 0 0 10px #f8bbd0;
    }
}

/* === SECTION HEADINGS === */
.section-title, .section-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #880e4f;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.text-pink {
    color: #e91e63;
}

/* === HERO SECTION === */
.resort-hero-section {
    background: url('Images/10.jpg') no-repeat center center/cover;
    height: 70vh;
    position: relative;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.5), rgba(34, 34, 34, 0.6));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    color: #ffecf2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    color: #ffeef5;
}

/* === IMAGE SCROLLERS === */
.image-scroller {
    overflow-x: auto;
    white-space: nowrap;
    height: 240px;
}

    .image-scroller .scroll-track {
        display: flex;
        scroll-snap-type: x mandatory;
        animation: scrollImages 80s linear infinite;
    }

        .image-scroller .scroll-track img {
            max-width: 80%;
            height: 240px;
            object-fit: cover;
            border-radius: 12px;
            margin-right: 10px;
            scroll-snap-align: center;
            transition: transform 0.3s ease;
        }

            .image-scroller .scroll-track img:hover {
                transform: scale(1.05);
            }

@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1250px);
    }
}

/* === ADVENTURE CARDS === */
.adventure-section {
    background: linear-gradient(120deg, #f8bbd0 0%, #fce4ec 100%);
    color: #4a148c;
}

.adventure-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .adventure-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

.adventure-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/* === SERVICES SECTION === */
.services-section {
    background: linear-gradient(to right, #fce4ec, #f3e5f5);
    color: #4a148c;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
    text-align: center;
}

    .service-content h5 {
        font-size: 1.2rem;
        color: #ad1457;
    }

    .service-content p {
        font-size: 0.95rem;
        color: #555;
    }

/* === FLIP CARD === */
.package-flip-card {
    perspective: 1000px;
    height: 280px;
}

.flip-inner {
    transition: transform 0.8s;
    transform-style: preserve-3d;
    height: 100%;
}

.package-flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

.flip-front, .flip-back {
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.flip-front {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.flip-back {
    background: linear-gradient(135deg, #d81b60, #8e24aa);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === MODALS === */
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }

    .section-title, .section-heading {
        font-size: 1.8rem;
    }

    .resort-hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .image-scroller {
        height: 180px;
    }

        .image-scroller .scroll-track img {
            height: 180px;
        }

    .footer-section {
        text-align: center;
    }

    .service-content h5 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}
/* Make text pop over background images */
.text-shadow-custom {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}
/* === Scrolling Background Gallery === */
.scrolling-bg-gallery {
    height: 100vh;
    position: relative;
    z-index: 1;
    background-color: #000;
}

.scrolling-title {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px;
}

.animated-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    animation: fadeInDown 2s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scrolling-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-track {
    display: flex;
    width: calc(100vw * 12); /* 6 images x 2 */
    animation: scrollImages 80s linear infinite;
}

.bg-img {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    filter: brightness(0.7);
}

    .bg-img:hover {
        transform: scale(1.05);
    }

/* Scrolling animation keyframes */
@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-600vw);
    }
}

/* Responsive for small devices */
@media (max-width: 768px) {
    .animated-heading {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .bg-img {
        height: 80vh;
    }
}
/* === SCROLLING BACKGROUND GALLERY === */
.scrolling-bg-gallery {
    height: 100vh;
    position: relative;
    z-index: 1;
    background-color: #000;
    overflow: hidden;
}

.scrolling-title {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 15px;
}

.animated-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
    animation: fadeInDown 2s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scrolling-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.image-track {
    display: flex;
    width: calc(100vw * 12); /* 6 images * 2 sets */
    animation: scrollImages 80s linear infinite; /* FAST SCROLL SPEED */
}

@keyframes scrollImages {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-600vw); /* 6 images * 100vw */
    }
}

.bg-img {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    filter: brightness(0.7);
    transition: transform 0.3s ease;
}

    .bg-img:hover {
        transform: scale(1.05);
    }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .animated-heading {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .bg-img {
        height: 80vh;
    }
}
.marathi-brand-title {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff9800, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.marathi-brand-subtitle {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    color: #e8f5e9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.marathi-hero-title {
    font-family: 'Baloo 2', cursive;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6f00, #d81b60, #8e24aa, #2196f3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite alternate;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.marathi-subtitle {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(255, 105, 180, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}
.continuous-scroller {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.scroll-track {
    display: flex;
    animation: continuousScroll 60s linear infinite;
}

    .scroll-track img {
        height: 240px;
        object-fit: cover;
        margin-right: 10px;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

        .scroll-track img:hover {
            transform: scale(1.05);
        }

@keyframes continuousScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
