:root {
    --primary: #2E8B57;
    --primary-dark: #1F6B48;
    --primary-light: #3CBC77;
    --accent: #FF6B35;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: #f9fdfb;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.hero-profiles {
    background: white;
    padding: 40px 0;
    border-radius: 20px 20px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.profile-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 auto 15px;
    transition: all 0.3s;
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card {
    text-align: center;
    padding: 20px 15px;
    transition: all 0.3s;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card:hover .profile-circle {
    border-color: var(--primary-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.profile-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.profile-title {
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profile-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.profile-link:hover {
    color: inherit;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 15px auto;
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.video-card img {
    transition: transform 0.5s;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-card:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    opacity: 0.9;
    transition: all 0.3s;
}

.play-btn:hover {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.carousel-item {
    height: auto;
    min-height: 400px;
    padding: 40px 0;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.social-links a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-light);
}

.page-content {
    display: none;
}

.page-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.form-control, .form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.25);
}

.required:after {
    content: " *";
    color: #dc3545;
}

.intro-video {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.loading {
    text-align: center;
    padding: 40px 0;
}

.loading-spinner {
    width: 3rem;
    height: 3rem;
}

/* Performer */

/* Performer Profile Styles */
.performer-profile-container {
    min-height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px 0;
}

.performer-hero {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 20px 0;
}

.performer-image-container {
    position: relative;
    width: 250px;
    margin: 0 auto;
}

.performer-image {
    width: 100%;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.performer-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--accent);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.performer-name {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 5px;
}

.performer-title {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.performer-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark);
}

.performer-bio {
    /*padding: 40px 0;*/
}

.performer-bio h2 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.join-form-container {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.join-form-container h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .performer-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .performer-image-container {
        width: 200px;
    }
    
    .performer-image {
        height: 200px;
    }
    
    .join-form-container {
        position: static;
        margin-top: 30px;
    }
}
/* Modal Overlay Styles */
/* Modal Overlay Styles - Fixed Version */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.modal-container {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(-50px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001; /* Higher than overlay */
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1002; /* Ensure header is above everything */
}

    .modal-header h3 {
        margin: 0;
        color: var(--primary);
    }

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
    z-index: 1003; /* Ensure close button is above everything */
    position: relative;
}

    .close-button:hover {
        color: var(--accent);
    }

.modal-body {
    padding: 20px;
    position: relative;
    z-index: 1002; /* Ensure body content is above everything */
}

.video-modal {
    max-width: 800px;
}

/* Blur effect for background content only */
body.modal-open .performer-profile-container {
    //filter: blur(5px);
    transition: filter 0.3s ease;
}
/* Alternative solution - add this if the above doesn't work */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.modal-open .blur-overlay {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    backdrop-filter: none !important;
}
/* Ensure modals and their content are never blurred */
.modal-overlay,
.modal-container,
.modal-overlay * {
    filter: none !important;
}

/* YouTube Player Styles */
#youtube-player {
    width: 100%;
    height: 400px;
}

.video-modal .modal-body {
    padding: 0;
}

/* Responsive YouTube player */
@media (max-width: 768px) {
    #youtube-player {
        height: 250px;
    }

    .video-modal {
        width: 95%;
    }

    .modal-container {
        width: 95%;
    }
}
/* WhatsApp Widget Styles */
.whatsapp-widget {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 20px;
    position: sticky;
    top: 20px;
}

.whatsapp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f0f2f5;
    border-bottom: 1px solid #e0e0e0;
}

.whatsapp-profile {
    display: flex;
    align-items: center;
}

    .whatsapp-profile img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 10px;
        object-fit: cover;
    }

.whatsapp-info h5 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.whatsapp-status {
    margin: 0;
    font-size: 0.8rem;
    color: #25D366;
}

.whatsapp-action-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
}

.whatsapp-body {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.whatsapp-message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 7.5px;
    position: relative;
}

.whatsapp-message-received {
    background: white;
    margin-right: auto;
    border-top-left-radius: 0;
}

.whatsapp-message-sent {
    background: #DCF8C6;
    margin-left: auto;
    border-top-right-radius: 0;
}

.message-time {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-align: right;
    margin-top: 3px;
}

.whatsapp-footer {
    padding: 15px;
    background: #f0f2f5;
    border-top: 1px solid #e0e0e0;
}

.whatsapp-input {
    display: flex;
    align-items: center;
}

#whatsapp-input-field {
    flex: 1;
    border: none;
    border-radius: 20px;
    padding: 10px 15px;
    margin-right: 10px;
    background: white;
}

.whatsapp-send-btn {
    background: #25D366;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

    .whatsapp-send-btn:hover {
        background: #128C7E;
    }

.whatsapp-disclaimer {
    margin-top: 10px;
    text-align: center;
}

    .whatsapp-disclaimer small {
        color: #999;
    }
/* Zoom Meeting Styles */
.zoom-meeting-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eaeaea;
}

.zoom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.zoom-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.zoom-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2D8CFF 0%, #2D8CFF 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

    .zoom-icon i {
        color: white;
        font-size: 1.5rem;
    }

.zoom-info h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.zoom-info p {
    margin: 5px 0 0;
    color: #666;
}

.zoom-details {
    margin-bottom: 20px;
}

.zoom-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

    .zoom-detail-item i {
        color: #2D8CFF;
        margin-right: 10px;
        font-size: 1.1rem;
        width: 20px;
    }

    .zoom-detail-item span {
        color: #555;
        font-weight: 500;
        margin-right: 5px;
    }

    .zoom-detail-item a {
        color: #2D8CFF;
        text-decoration: none;
        font-weight: 500;
    }

        .zoom-detail-item a:hover {
            text-decoration: underline;
        }

    .zoom-detail-item strong {
        color: #333;
    }

.btn-zoom {
    background: linear-gradient(135deg, #2D8CFF 0%, #2D8CFF 100%);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 140, 255, 0.3);
    transition: all 0.3s;
}

    .btn-zoom:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(45, 140, 255, 0.4);
        background: linear-gradient(135deg, #2D8CFF 0%, #2D8CFF 100%);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .zoom-header {
        flex-direction: column;
        text-align: center;
    }

    .zoom-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .zoom-detail-item {
        flex-direction: column;
        align-items: flex-start;
    }

        .zoom-detail-item i {
            margin-bottom: 5px;
        }
}
/* Responsive adjustments */
@media (max-width: 992px) {
    .whatsapp-widget {
        position: static;
        margin-top: 40px;
    }
}