/* Events Organizer Page Styles */

.organizer-hero {
    background: linear-gradient(135deg, #1a0017 0%, #66003b 50%, #9b0465 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.organizer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.organizer-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.organizer-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.organizer-hero h1 span {
    color: #ff0080;
}

.organizer-hero p {
    font-size: 1.4rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 30px;
}

.organizer-hero .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.organizer-hero .cta-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
    color: white;
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #ff0080;
    transform: translateY(-3px);
    text-decoration: none;
}

.organizer-section {
    padding: 80px 0;
    background: #000;
}

.organizer-section-alt {
    background: #0a0a0a;
}

/* Enhanced CTA Section */
.organizer-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0017 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.organizer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.organizer-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.organizer-cta-title {
    color: white;
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.organizer-cta-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.organizer-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.organizer-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: none;
    min-width: 200px;
}

.organizer-cta-btn .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.organizer-cta-btn .btn-content i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.organizer-cta-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.organizer-cta-btn:hover .btn-shine {
    left: 100%;
}

/* Primary Button */
.organizer-cta-btn-primary {
    background: linear-gradient(135deg, #ff0080 0%, #ff5e98 50%, #ff0080 100%);
    background-size: 200% 100%;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.4),
                0 0 0 0 rgba(255, 0, 128, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.organizer-cta-btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.5),
                0 0 0 4px rgba(255, 0, 128, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
}

.organizer-cta-btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.organizer-cta-btn-primary:hover .btn-content i {
    transform: translateX(3px) rotate(-15deg);
}

/* Secondary Button */
.organizer-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.organizer-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.organizer-cta-btn-secondary:active {
    transform: translateY(-2px) scale(1);
}

.organizer-cta-btn-secondary:hover .btn-content i {
    transform: translateX(3px);
}

/* Responsive CTA Section */
@media (max-width: 768px) {
    .organizer-cta-section {
        padding: 60px 0;
    }

    .organizer-cta-title {
        font-size: 2.2rem;
    }

    .organizer-cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .organizer-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .organizer-cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .organizer-cta-title {
        font-size: 1.8rem;
    }

    .organizer-cta-subtitle {
        font-size: 1rem;
    }

    .organizer-cta-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

.organizer-section-title {
    text-align: center;
    color: white;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.organizer-section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.organizer-info-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 0, 128, 0.2);
    transition: all 0.3s ease;
    color: white;
    height: 100%;
}

.organizer-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.organizer-info-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 25px;
}

.organizer-info-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.organizer-info-card p {
    color: #ccc;
    line-height: 1.7;
    margin: 0;
}

/* Subscription Cards Grid */
.organizer-subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .organizer-subscription-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .organizer-subscription-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .organizer-subscription-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .organizer-subscription-grid {
        grid-template-columns: 1fr;
    }
}

.organizer-subscription-card {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 0, 128, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.organizer-subscription-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff0080, #ff5e98);
}

.organizer-subscription-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.2);
}

.organizer-subscription-header {
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    padding: 20px;
    border-radius: 15px 15px 0 0;
    margin: -30px -30px 25px -30px;
    color: white;
}

.organizer-subscription-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.organizer-subscription-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.organizer-price-section {
    text-align: center;
    margin: 25px 0;
}

.organizer-price-main {
    font-size: 3rem;
    font-weight: 800;
    color: #ff0080;
    line-height: 1;
}

.organizer-price-period {
    font-size: 1rem;
    color: #aaa;
    margin-top: 8px;
}

.organizer-price-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.organizer-price-option {
    text-align: center;
}

.organizer-price-option .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.organizer-price-option .period {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3px;
}

.organizer-price-divider {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.organizer-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
}

.organizer-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
}

.organizer-features-list li:last-child {
    border-bottom: none;
}

.organizer-features-list li i {
    color: #ff0080;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.organizer-subscribe-btn {
    background: linear-gradient(135deg, #ff0080, #ff5e98);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.25);
    margin-top: auto;
}

.organizer-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 128, 0.4);
    color: white;
    text-decoration: none;
}

.organizer-subscribe-btn:focus {
    outline: 2px solid #ff0080;
    outline-offset: 2px;
}

.organizer-subscribe-btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.organizer-subscribe-btn-group .organizer-subscribe-btn {
    flex: 1;
    margin-top: 0;
}

.organizer-faq-container {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    border: 2px solid rgba(255, 0, 128, 0.2);
}

.organizer-faq-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.organizer-faq-item:last-child {
    border-bottom: none;
}

.organizer-faq-question {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.organizer-faq-question i {
    color: #ff0080;
}

.organizer-faq-answer {
    color: #ccc;
    line-height: 1.7;
    padding-left: 30px;
}

.organizer-advertising-preview {
    text-align: center;
    margin-top: 40px;
}

.organizer-advertising-preview h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.organizer-advertising-preview p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.organizer-view-all-btn {
    background: transparent;
    color: #ff0080;
    border: 2px solid #ff0080;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-direction: row;
    white-space: nowrap;
    min-width: 200px;
    width: auto;
}

.organizer-view-all-btn i {
    flex-shrink: 0;
}

.organizer-view-all-btn span {
    display: inline;
}

.organizer-view-all-btn:hover {
    background: #ff0080;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .organizer-hero {
        padding: 120px 0 80px;
    }

    .organizer-hero h1 {
        font-size: 2.5rem;
    }

    .organizer-hero p {
        font-size: 1.1rem;
    }

    .organizer-section-title {
        font-size: 2rem;
    }

    .organizer-section-subtitle {
        font-size: 1rem;
    }

    .organizer-subscription-header h3 {
        font-size: 1.3rem;
    }

    .organizer-price-main {
        font-size: 2.5rem;
    }

    .organizer-price-option .price {
        font-size: 2rem;
    }
}
