/* Resetting margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: auto;
    overflow-x: hidden;
    /*overflow-y: auto;*/
}


/* General Styles */
.masthead {
    position: relative;
    overflow: hidden; /* Ensure the image doesn't overflow */
    /*padding-top: 7.5rem !important;*/
    /*padding-bottom: 0 !important;*/
    height: 100vh; /* Ensure the masthead takes the full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image-container {
    position: relative;
    width: 100vw; /* Set the width to the full viewport width */
    height: auto; /* Default height for desktop */
    margin-left: calc(-50vw + 50%); /* Center the container */
}

    .header-image-container img {
        width: 100vw; /* Set the image width to the full viewport width */
        min-height: 100vh; /* Set the image height to full viewport height */
        display: block;
        margin-left: calc(-50vw + 50%); /* Center the image */
        object-fit: cover; /* Ensure the image covers the container without stretching */
    }

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Adjust opacity as needed */
    z-index: 1; /* Ensure overlay is above the image but below the text */
}

.header-content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white; /* Adjust text color as needed */
    z-index: 2; /* Ensure text is above the image */
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), /* Soft black outline */
    0 0 15px rgba(255, 255, 255, 0.5); /* Gentle white glow */
    margin: 0;
    animation: fadeInUp 2s ease-out;
}

.hero-subheading {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    color: #e0e0e0;
    margin-top: 1rem;
    animation: fadeInUp 2.5s ease-out;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.3);
}

.header-content-container a.button {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

    .header-content-container a.button:hover {
        background: linear-gradient(135deg, #e5c16c, #c39734);
        transform: translateY(-3px); /* More pronounced lift */
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

.hero-image-button {
    width: 50%;
}

/* Keyframe Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .header-image-container {
        height: 100vh; /* Set the container height to full viewport height on mobile */
    }

        .header-image-container img {
            width: 100%; /* Ensure the image takes full width */
            min-height: 100vh; /* Set the image height to full viewport height */
            object-fit: cover; /* Ensure the image covers the container without stretching */
            object-position: left; /* Adjust the image position on mobile */
        }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-subheading {
        font-size: 1rem;
    }

    .primary-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    .header-content-container a.button {
        padding: 0.5rem 2.5rem;
    }

    .hero-image-button {
        width: 75%;
    }
}

#about-me-2c {
    padding: 20px 20px;
    /*background-color: #f4f4f4;*/
}

#about-me-rtb h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

#about-me-rtb p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

#about-me-rtb h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

#about-me-rtb ul {
    list-style: none;
    padding-left: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #555;
}

    #about-me-rtb ul li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }

        #about-me-rtb ul li::before {
            content: '•';
            color: #333;
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.5rem;
        }

#tree-pose {
    max-width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}


@media (max-width: 768px) {
    #tree-pose {
        max-width: 70%;
        /*        height: auto;
        display: block;
        margin: 0 auto;*/
    }

    #about-me-rtb {
        text-align: center;
    }
}

/* Main Header Styling */
#services-header h1 {
    top: 0;
    width: 100%;
    background: linear-gradient(to right, #ffe9b3, #ffb3b3);
    padding: 20px 10px;
    text-align: center;
    font-size: 36px;
    font-family: 'Playfair Display', serif; /* A soft, yogic font */
    color: #5a3e2b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-bottom: 0;
}

/*#image-carousel {
    width: 100vw;
    height: 95vh;
}*/

#image-carousel .splide__track {
    height: 90vh;
}


#image-carousel .splide__slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    text-align: center;
    color: white;
    padding: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    #image-carousel .splide__slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    #image-carousel .splide__slide h2, #image-carousel .splide__slide p, #image-carousel .splide__slide ul {
        position: relative;
        z-index: 2;
    }

.services-splide-content {
    padding-bottom: 2rem;
}


    .services-splide-content h2 {
        font-size: 46px;
        margin: 30px 0 15px;
        font-family: 'Playfair Display', serif;
        text-transform: uppercase;
        color: #fff;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    }

    .services-splide-content p {
        font-size: 28px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        max-width: 1200px;
        margin-top: 10px;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    }

    .services-splide-content ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .services-splide-content li {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 28px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        position: relative;
        z-index: 2;
    }

    .services-splide-content .fa-location-dot {
        color: red;
        margin-right: 8px; /* Add spacing between icon and text */
        font-size: 1.2em; /* Slightly larger icon size */
    }

#park-yoga-info-button {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    width: 25%;
}

/* Responsiveness */
@media (max-width: 768px) {
    #services-header h1 {
        font-size: 28px;
    }

    .services-splide-content h2 {
        font-size: 28px;
    }

    .services-splide-content p {
        font-size: 16px;
    }

    /*    #image-carousel .splide__track {
        height: 80vh;
    }*/

    #park-yoga-info-button {
        width: 70%;
        padding: 0.5rem 2.5rem;
    }
}

#testimonial-quote-carousel {
    width: 75%;
}

@media (max-width: 768px) {
    #testimonial-quote-carousel {
        width: 90%;
    }
}

#quotes-1c {
    padding: 60px 20px;
}

#contact-1c {
    /*    background-color: #f4f4f4;*/
    padding: 60px 20px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: #008080;
    text-decoration: none;
    font-weight: 600;
}

    .contact-info a:hover {
        text-decoration: underline;
    }

/*#quote-carousel .splide__track {
    display: flex;
    align-items: flex-start;
}

#quote-carousel .splide__slide {
    height: auto !important;
}*/

/* quote block specific css */

.modern-blockquote {
    position: relative;
    font-weight: 300; /* Light font weight for a sleek look */
    color: #333; /* Darker text for contrast */
    padding: 20px 30px;
    background: #fff; /* White background for contrast */
    border-left: 10px solid #008080; /* Bold, tech-inspired accent color */
    border-right: 1px solid #008080; /* Bold, tech-inspired accent color */
    border-top: 1px solid #008080; /* Bold, tech-inspired accent color */
    border-bottom: 1px solid #008080; /* Bold, tech-inspired accent color */
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/ /* Subtle shadow for depth */
    border-radius: 8px; /* Slightly rounded corners for a modern feel */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%; /* Ensures blockquote takes up full available space */
    font-size: 2rem;
}

    .modern-blockquote:before {
        content: open-quote;
        font-size: 3em;
        color: #008080; /* Accent color for the opening quote */
        position: absolute;
        top: -10px;
        left: 10px;
        opacity: 0.2; /* Faint to avoid overpowering the text */
    }

    .modern-blockquote:after {
        content: close-quote;
        font-size: 3em;
        color: #008080; /* Accent color for the closing quote */
        position: absolute;
        bottom: -10px;
        right: 10px;
        opacity: 0.2; /* Faint to avoid overpowering the text */
    }

    .modern-blockquote cite {
        display: block;
        color: #008080; /* Accent color for the citation */
        font-weight: bold;
        margin-top: auto;
    }

@media (max-width: 768px) {
    .modern-blockquote {
        font-size: 1.2rem;
    }
}

/* end of quote block specific css*/


.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

    .floating-icons .icon {
        width: 50px;
        height: 50px;
        background-color: #fff;
        color: #000;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        transition: transform 0.3s, background-color 0.3s, color 0.3s;
    }

        .floating-icons .icon:hover {
            transform: scale(1.1);
        }

        .floating-icons .icon.whatsapp {
            background-color: #25D366;
            color: #fff;
        }

        .floating-icons .icon.email {
            background-color: #0072C6;
            color: #fff;
        }

        .floating-icons .icon.instagram {
            background-color: #C13584;
            color: #fff;
        }

.location-info {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

    .location-info i {
        color: #e74c3c; /* Red for the location icon */
        font-size: 18px;
    }


.site-logo {
    position: fixed;
    top: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    font-family: 'Georgia', 'Garamond', serif; /* Elegant font styles */
    font-size: 24px; /* Adjust for desired prominence */
    font-weight: bold;
    color: #333; /* Neutral dark color */
    background-color: rgba(255, 255, 255, 0.8); /* Light background for readability */
    padding: 5px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for elegance */
    z-index: 1000; /* Ensures it stays above other content */
}

    /* Ensure visibility on dark backgrounds */
    .site-logo.dark {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.8);
    }

@media (max-width: 768px) {
    .location-info {
        font-size: 14px; /* Adjust for desired prominence */
        padding: 5px 10px;
    }

    .site-logo {
        font-size: 14px; /* Adjust for desired prominence */
        padding: 5px 10px;
    }
}

/* Style for the logo container */
.logos {
    display: flex;
    justify-content: center; /* Center logos horizontally */
    align-items: center; /* Align logos vertically */
    gap: 20px; /* Space between logos */
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

    /* Style for the logos */
    .logos img {
        width: 200px; /* Set uniform width */
        height: auto; /* Maintain aspect ratio */
        max-height: 100px; /* Optional: Limit the height */
        object-fit: contain; /* Ensure logos fit within dimensions */
    }

    /* Add background behind each logo */
    .logos img {
        background: rgba(255, 255, 255, 0.8); /* Light background */
        padding: 10px; /* Space around the logo */
        border-radius: 8px; /* Rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    }

@media (max-width: 768px) {
    .logos img {
        width: 100px; /* Set uniform width */
        height: 75px; /* Maintain aspect ratio */
        max-height: 75px; /* Optional: Limit the height */
    }
}

/* park yoga faqs*?

*/

.park-yoga-header h1 {
    top: 0;
    width: 100%;
    background: linear-gradient(to right, #ffe9b3, #ffb3b3);
    padding: 20px 10px;
    text-align: center;
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: #5a3e2b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-bottom: 0;
}

.accordion {
    max-width: 800px;
    margin: auto;
}

.accordion-item {
    background-color: #faf7f0; /* Light natural beige */
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accordion-button2 {
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    color: #4a3d2f;
    cursor: pointer;
    padding: 15px;
    transition: background-color 0.3s ease-in-out;
}

    .accordion-button2:hover {
        background-color: #e2d7c6; /* Soft earthy hover */
    }

.accordion-body {
    color: #4a3d2f;
    padding: 15px;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .park-yoga-header h1 {
        font-size: 28px;
    }
}


#image-carousel-park-yoga .splide__track {
    height: 50vh;
    overflow: hidden; /* Prevents overflow */
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    #image-carousel-park-yoga .splide__track {
        height: 500px;
    }
}


#image-carousel-park-yoga img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures it fills the parent without distortion */
}

#corporate-waiver input[type="submit"] {
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
