/* Event Detail Page Styles */
.event-banner {
    background: linear-gradient(135deg, #10b981 0%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.event-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.event-banner-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.event-title-main {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.event-title-sub {
    font-size: 64px;
    font-weight: 800;
    color: #C4161C;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.event-info-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.event-info-box {
    background: rgba(255, 255, 255, 0.1);
    /*border: 2px solid #C4161C;*/
    border-radius: 8px;
    padding: 20px 30px;
    min-width: 200px;
    backdrop-filter: blur(10px);
}

.event-info-box i {
    font-size: 24px;
    color: #C4161C;
    margin-bottom: 10px;
}

.event-info-box-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.event-info-box-value {
    font-size: 18px;
    font-weight: 600;
}

.event-organizer {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 30px;
}

.btn-register-banner {
    background: #10b981;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-register-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
}

.participation-info {
    padding: 60px 0;
    background: #f9fafb;
}

.pricing-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pricing-box {
    background: white;
    border-radius: 12px;
    padding: 40px;
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.pricing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pricing-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.pricing-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 16px;
    margin-bottom: 5px;
}

.pricing-amount {
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 25px;
}

.pricing-benefits {
    list-style: none;
    padding: 0;
}

.pricing-benefits li {
    padding: 10px 0;
    color: #4b5563;
    display: flex;
}

.pricing-benefits li::before {
    content: '●';
    color: #C4161C;
    font-size: 20px;
    margin-right: 10px;
}

.video-section {
    padding: 60px 0;
    background: white;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefits-section {
    padding: 60px 0;
    background: #f9fafb;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.video-list, .benefits-list {
    padding-left: 0 !important;
}


.benefits-list li, .video-list li {
    padding: 8px 0;
    font-size: 16px;
    color: #4b5563;
    display: flex;
    align-items: flex-start;
}

    .benefits-list li::before, .video-list li::before {
        content: '●';
        color: #C4161C;
        font-size: 24px;
        margin-right: 15px;
        flex-shrink: 0;
    }

.program-section {
    padding: 60px 0;
    background: white;
}

.program-list {
    list-style: none;
    padding: 0;
}

.program-item {
    padding: 20px 0;
    /*border-bottom: 1px solid #e5e7eb;*/
    display: flex;
    align-items: flex-start;
}

.program-time {
    font-weight: 600;
    color: #10b981;
    min-width: 120px;
    margin-right: 20px;
}

.program-content {
    flex: 1;
    color: #4b5563;
}

.program-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.register-section {
    padding: 60px 0;
    background: #f9fafb;
}

.register-form {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    display: block;
}

.form-label.required::after {
    content: ' *';
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.btn-register-form {
    background: #C4161C;
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.btn-register-form:hover {
    transform: translateY(-2px);
}

.guests-section {
    padding: 60px 0;
    background: white;
}

.guest-profiles {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guest-profile {
    text-align: center;
    max-width: 200px;
}

.guest-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #C4161C;
}

.guest-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.guest-title {
    font-size: 14px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .event-title-main {
        font-size: 32px;
    }
    
    .event-title-sub {
        font-size: 40px;
    }
    
    .event-info-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-boxes {
        flex-direction: column;
    }
}


