@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #6A0DAD;  /* Deep Purple */
    --secondary-color: #FF6B9E;  /* Vibrant Pink */
    --background-color: #F5E6FF;  /* Soft Lavender */
    --text-color: #2C003E;  /* Dark Purple */
    --accent-color: #9C27B0;  /* Bright Purple */
    --soft-gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F5E6FF 0%, #E6E6FA 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

.landing-page {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}

.event-poster {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

.event-poster img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

/* Header */
header {
    background: var(--soft-gradient);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.3);
}

header h1 {
    font-size: 1.5em;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

header h2 {
    font-size: 1em;
    font-weight: 300;
    opacity: 0.9;
}

/* Sections */
section {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.1);
}

section h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

/* Lists */
ul {
    list-style-type: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

ul li {
    display: flex;
    align-items: center;
    background-color: #F9F3FF;
    padding: 8px;
    border-radius: 8px;
}

ul li i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

/* Payment Details */
.payment-details {
    background: linear-gradient(to right, #F5E6FF, #E6E6FA);
    border-radius: 10px;
    padding: 15px;
}

.payment-details .payment-proof-section {
    margin-top: 15px;
    padding: 15px;
    background-color: #F9F3FF;
    border-radius: 10px;
    text-align: center;
}

.payment-confirmation {
    display: none;
}

.form-group {
    display: none;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 0.9em;
}

.form-group input {
    padding: 10px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-size: 0.9em;
}

.submit-proof-btn {
    display: none;
}

.send-proof-btn {
    display: inline-block;
    background: var(--soft-gradient);
    color: white;
    padding: 12px 15px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(106, 13, 173, 0.2);
}

.send-proof-btn i {
    margin-right: 10px;
    font-size: 1.2em;
}

.send-proof-btn:hover {
    transform: scale(1.05);
}

.payment-details-btn {
    display: inline-block;
    margin-left: 10px;
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8em;
    transition: background-color 0.3s ease;
}

.payment-details-btn:hover {
    background-color: var(--primary-color);
}

/* Event Panels Section */
.event-panels {
    background-color: #F9F3FF;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.event-panels h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.panel {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(106, 13, 173, 0.1);
}

.panel h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.panel p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background-color: #F9F3FF;
    padding: 15px;
    border-radius: 10px;
}

.testimonial-swiper {
    width: 100%;
    padding: 20px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonial-author {
    text-align: right;
    font-weight: bold;
    color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Social Media Section */
.social-media {
    background-color: #F9F3FF;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.social-media h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.social-link i {
    margin-right: 10px;
    font-size: 1.5em;
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.facebook {
    background-color: #1877F2;
}

.social-link.website {
    background: var(--soft-gradient);
}

.social-link:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    font-size: 0.8em;
    color: var(--text-color);
}

.whatsapp-proof {
    display: none;
}

.whatsapp-proof-btn {
    display: inline-block;
    background-color: #25D366;  /* WhatsApp green */
    color: white;
    padding: 12px 15px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s ease;
}

.whatsapp-proof-btn i {
    margin-right: 10px;
    font-size: 1.5em;
    vertical-align: middle;
}

.whatsapp-proof-btn:hover {
    background-color: #128C7E;  /* Darker WhatsApp green */
}

.proof-instructions {
    display: none;
}

/* Reasons Carousel Section */
.reasons-carousel-section {
    margin-bottom: 30px;
    text-align: center;
}

.carousel-title {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(106, 13, 173, 0.2);
}

.reasons-carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.reasons-carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(106, 13, 173, 0.7);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-navigation:hover {
    background-color: var(--primary-color);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-navigation i {
    font-size: 24px;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-dot.active {
    background-color: var(--primary-color);
}

/* Location Link */
.location-link {
    display: inline-block;
    color: white;
    background-color: var(--primary-color);
    text-decoration: none;
    margin-left: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(106, 13, 173, 0.2);
}

.location-link i {
    margin-right: 5px;
    color: white;
}

.location-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(106, 13, 173, 0.3);
}

/* Mobile optimization for location link */
@media (max-width: 600px) {
    .location-link {
        display: inline-block;
        margin-top: 5px;
        margin-left: 10px;
        padding: 4px 8px;
        font-size: 0.8em;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }

    .landing-page {
        padding: 5px;
    }

    header h1 {
        font-size: 1.3em;
    }

    header h2 {
        font-size: 0.9em;
    }

    section {
        padding: 10px;
    }

    .form-group input {
        font-size: 0.8em;
    }

    .testimonial-card {
        min-height: 180px;
        padding: 15px;
    }

    .testimonial-content p {
        font-size: 0.9em;
    }

    .testimonial-author {
        font-size: 0.8em;
    }
}
@media (max-width: 600px) {
    .whatsapp-proof-btn {
        font-size: 0.9em;
        padding: 10px 12px;
    }

    .whatsapp-proof-btn i {
        font-size: 1.3em;
    }
}

@media (max-width: 600px) {
    .social-links {
        gap: 8px;
    }

    .social-link {
        padding: 10px;
        font-size: 0.9em;
    }

    .social-link i {
        margin-right: 8px;
        font-size: 1.3em;
    }
}

@media (max-width: 600px) {
    .send-proof-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .event-panels {
        padding: 10px;
    }

    .panel {
        padding: 12px;
    }

    .panel h4 {
        font-size: 0.9em;
    }

    .panel p {
        font-size: 0.8em;
    }
}

@media (max-width: 600px) {
    .carousel-title {
        font-size: 1.5em;
    }

    .carousel-navigation {
        padding: 8px;
    }

    .carousel-navigation i {
        font-size: 20px;
    }
}

/* Speakers Carousel Section */
.speakers-carousel-section {
    margin-bottom: 30px;
    text-align: center;
}

.speakers-carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.speakers-carousel {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.speakers-carousel .carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.speakers-carousel .carousel-slide img {
    max-width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile optimization for speakers carousel */
@media (max-width: 600px) {
    .speakers-carousel-section {
        margin-bottom: 20px;
    }

    .speakers-carousel .carousel-slide img {
        max-height: 300px;
    }
}

/* CBA Live Top Button */
.cba-live-top-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: linear-gradient(45deg, #FF0000, #8B0000);
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    animation: pulse 1.5s infinite;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cba-live-top-btn i {
    font-size: 1.2em;
}

@media (max-width: 600px) {
    .cba-live-top-btn {
        padding: 8px 12px;
        font-size: 0.9em;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}