/* Organizers Section */
.organizers-section {
    padding: 100px 0 300px;
    background: #fff;
    position: relative;
}

.organizers-title {
    font-size: 3.5rem;
    color: #ff6b35;
    font-style: italic;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

.organizers-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.organizers-text {
    flex: 1 1 40%;
    max-width: 600px;
}

.organizers-subtitle {
    font-size: 2rem;
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 30px;
}

.organizers-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.pricing-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    border: 1px solid #eee;
}

.pricing-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-buy-now {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-buy-now:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(255, 107, 53, 0.4);
}

/* Mockups */
.organizers-image {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 600px;
    top: 330px;
    width: 70%;
}

.organizers-image img {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}



/* Responsive */
@media (max-width: 992px) {
    .organizers-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        min-height: auto;
    }

    .organizers-text,
    .organizers-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .organizers-image {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        height: auto;
        min-height: 500px;
        margin: 0;
        padding: 0;
    }

    .organizers-image img {
        max-width: 100%;
        max-height: 400px;
    }
}

/* Mobile specific */
@media (max-width: 768px) {
    .organizers-section {
        padding: 60px 0 0 0px;
    }

    .organizers-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .organizers-subtitle {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .organizers-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .organizers-image img {
        width: 100%;
        height: auto;
        min-height: 400px;
        object-fit: cover;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .organizers-image img {
        width: 100%;
        height: auto;
        min-height: 350px;
        object-fit: cover;
        margin: 0;
        padding: 0;
    }
}

/* Visibility fix: ensure secondary button is visible on white background in organizers section */
.organizers-section .btn-secondary {
    background: rgba(120, 130, 150, 0.28);
    color: #FFFFFF !important;
    border: 1px solid rgba(120, 130, 150, 0.45);
    backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(120, 130, 150, 0.25);
}

.organizers-section .btn-secondary:hover {
    background: rgba(120, 130, 150, 0.40);
    color: #FFFFFF !important;
    border-color: rgba(120, 130, 150, 0.55);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(120, 130, 150, 0.35);
}

.organizers-section .hero-actions {
    position: relative;
    z-index: 5;
}

.organizers-section .btn-primary,
.organizers-section .btn-secondary {
    position: relative;
    z-index: 6;
}

/* Ensure primary button is orange in organizers section (override framework blue) */
.organizers-section .btn-primary {
    background: #FF6B35;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border-color: #FF6B35;
}

.organizers-section .btn-primary:hover {
    background: #E55A2B;
    border-color: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Strong override to ensure primary/register button is orange in organizers section */
.organizers-section .btn-primary,
.organizers-section .btn-register {
    background: #FF6B35 !important;
    color: #FFFFFF !important;
    border-color: #FF6B35 !important;
}

.organizers-section .btn-primary:hover,
.organizers-section .btn-register:hover {
    background: #E55A2B !important;
    border-color: #E55A2B !important;
}


