/* Custom Styles */
* {
    scroll-behavior: smooth;
    font-family: 'avenir-lt-w01_35-light1475496', 'Poppins', sans-serif;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

@keyframes particleFloat {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.glow-animation {
    animation: glow 2s ease-in-out infinite;
}

/* Update the star background with more subtle colors */
.star-bg {
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
                url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 0L12.245 7.755H20L13.877 12.245L16.123 20L10 15.51L3.877 20L6.123 12.245L0 7.755H7.755L10 0Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 20px 20px;
}

/* Update glass effect with more subtle colors */
.glass-effect {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#mobile-menu {
    background-color: #f3d4e0;
    height: 100vh;
    width: 100%;
    backdrop-filter: none;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'avenir-lt-w01_35-light1475496', sans-serif;
    text-transform: uppercase;
}

/* Subheading styles */
.subheading {
    font-family: 'avenir-lt-w01_35-light1475496', sans-serif;
}

/* Paragraph styles */
p {
    font-family: 'avenir-lt-w01_35-light1475496', sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    font-weight: normal;
    text-align: justify;
}

/* Slider Styles */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    will-change: opacity, transform;
}

.slider-image.active {
    opacity: 1;
    transform: scale(1);
}

/* Particle Overlay */
.particle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="10" cy="10" r="1" fill="white" opacity="0.3"/%3E%3Ccircle cx="90" cy="20" r="1" fill="white" opacity="0.2"/%3E%3Ccircle cx="50" cy="80" r="1" fill="white" opacity="0.4"/%3E%3Ccircle cx="30" cy="50" r="1" fill="white" opacity="0.3"/%3E%3C/svg%3E');
    animation: particleFloat 20s linear infinite;
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Tab Styles */
.tab-btn {
    position: relative;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: 0.5rem 0.5rem 0 0;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-bottom: 2px solid #f3d4e0;
}

.tab-content {
    display: none;
    padding: 2rem;
    border-radius: 0.5rem;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .slider-container, .slider-image {
        height: 100vh; /* Ensure full height on mobile */
    }
    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }
    .dot {
        width: 10px;
        height: 10px;
    }
    h1 {
        font-size: 2.5rem; /* Adjust font size for mobile */
    }
    p {
        font-size: 1rem;
    }
    a[href="#tab-content"] {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    .mobile-tabs {
        flex-wrap: wrap;
    }
    .mobile-tabs .tab-btn {
        flex-grow: 1;
        text-align: center;
        margin-bottom: 0.25rem;
        border-radius: 0.5rem;
    }
}

.service-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: #d8b4fe;
    text-align: right;
    margin-top: 0.5rem;
}

.price-tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.discount {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Updated colors for peaceful theme */
body {
    background: linear-gradient(to bottom right, #f3d4e0, #d4e0f3, #e0f3f3);
}

/* Contact Section Styles */
.contact-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 192, 203, 0.1), rgba(135, 206, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    position: relative;
    transition: all 0.3s ease;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff69b4, #87ceeb);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.contact-card:hover .contact-icon::after {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Modal Styles */
#exploreModal {
    backdrop-filter: blur(5px);
}

#exploreModal.show {
    display: flex;
}

#exploreModal.show #modalContent {
    transform: scale(1);
    opacity: 1;
}

#modalContent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Update heading size */
h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem !important;
    }
}
.tab-content {
    display: none;
     padding: 0!important;
}


/* Enhanced Paragraph Background Styles */
main p, .tab-content p {
    position: relative !important;
    padding: 1.5rem 2rem !important;
    margin: 0 0 1.5rem 0 !important;
    border-radius: 0 !important;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.2), rgba(135, 206, 235, 0.2)) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

main p:hover, .tab-content p:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.25), rgba(135, 206, 235, 0.25)) !important;
}

/* Section-specific gradients */
#about p {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(176, 196, 222, 0.2)) !important;
}

#bio p {
    background: linear-gradient(135deg, rgba(221, 160, 221, 0.2), rgba(176, 224, 230, 0.2)) !important;
}

#services p {
    background: linear-gradient(135deg, rgba(255, 218, 185, 0.2), rgba(176, 196, 222, 0.2)) !important;
}

#courses p {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.2), rgba(135, 206, 235, 0.2)) !important;
}

.service-detail p {
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(176, 196, 222, 0.2)) !important;
    padding: 2rem !important;
    border-radius: 0 !important;
    margin: 0 0 1.5rem 0 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

#about p:first-child {
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.25), rgba(135, 206, 235, 0.25)) !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}
