/* Global Styles */
body.global-body {
    font-family: 'Nunito', sans-serif;
    background-color: #f9f9f9;
    color: #444;
    margin: 0;
    padding: 0;
}

/* Main Block */
header.main-block {
    background: linear-gradient(135deg, #8e44ad, #1abc9c);
    color: white;
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

header.main-block .main-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

header.main-block .main-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

header.main-block .play-btn {
    background-color: #ff69b4;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.5);
}

header.main-block .play-btn:hover {
    background-color: #ff85c2;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 105, 180, 0.7);
}

/* Section Titles */
.section-title {
    font-family: 'Lobster', cursive;
    color: #1abc9c;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* About Section */
section.about {
    background: #ffffff;
    padding: 50px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Benefits Section */
section.benefits {
    background: #f1f9f9;
    padding: 50px 0;
    border-radius: 10px;
}

.benefit-card {
    background: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    color: #8e44ad;
    margin-bottom: 10px;
}

.benefit-title {
    font-size: 1.2rem;
    color: #8e44ad;
    font-weight: bold;
    margin-bottom: 10px;
}

.benefit-text {
    color: #555;
    font-size: 0.9rem;
}

/* Gallery Section */
section.gallery {
    background: #fdf6ff;
    padding: 50px 0;
    border-radius: 10px;
}

.gallery-image {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(142, 68, 173, 0.3);
}

/* FAQ Section */
section.faq {
    background: #f9f9f9;
    padding: 50px 0;
    border-radius: 10px;
}

.accordion-button {
    background-color: #ffffff;
    color: #444;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}

.accordion-button:hover {
    background-color: #1abc9c;
    color: white;
}

.accordion-button:not(.collapsed) {
    background-color: #8e44ad;
    color: white;
}

/* Reviews Section */
section.reviews {
    background: #ffffff;
    padding: 50px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

blockquote {
    font-size: 1rem;
    color: #555;
    font-style: italic;
}

blockquote.footer {
    font-size: 0.9rem;
    color: #888;
}

/* Footer */
footer.footer {
    background: linear-gradient(135deg, #8e44ad, #1abc9c);
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    border-top: 2px solid #ddd;
}

/* Utility Classes */
.text-light {
    color: white !important;
}

.text-center {
    text-align: center !important;
}

.rounded {
    border-radius: 10px !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header.main-block .main-title {
        font-size: 2.5rem;
    }

    header.main-block .main-subtitle {
        font-size: 1rem;
    }

    .gallery-image {
        width: 100%;
    }
}
/* Navbar Styles */
.navbar {
    background: linear-gradient(90deg, #ff69b4, #6bafff); /* Bright gradient background */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
    font-family: 'Nunito', sans-serif;
    padding: 0.8rem 1rem;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    border: 2px solid white; /* White border around the logo */
    padding: 2px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: rotate(360deg); /* Rotate the logo on hover */
}

.nav-link {
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #ffea00 !important; /* Bright yellow hover color */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

.navbar-toggler {
    border: none;
    background-color: rgba(255, 255, 255, 0.3); /* Transparent button */
}

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23fff" viewBox="0 0 30 30"%3E%3Cpath stroke="rgba%28255, 255, 255, 0.5%29" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Sticky Top Shadow */
.navbar.sticky-top {
    transition: box-shadow 0.3s ease;
}

.navbar.sticky-top.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow when scrolled */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
        text-align: center;
    }
}
