/* Live page specific styles */

/* Webinar registration specific styles */
.webinar-hero {
    min-height: 70vh;
}

.webinar-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--pure-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-top: 50px;
}

.webinar-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.highlight-text {
    color: var(--neutral-white);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.agenda-container {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.agenda-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.agenda-intro {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0 0 40px 0;
    padding: 30px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.agenda-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--neutral-white);
    text-align: center;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-item {
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.agenda-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.agenda-item:hover {
    transform: translateY(-5px);
}

.agenda-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
}

.agenda-content {
    flex: 1;
}

.agenda-item-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--neutral-white);
}

.agenda-item-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.presenters-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px auto;
    max-width: 900px;
    gap: 40px;
}

.presenter-card {
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.presenter-card:hover {
    transform: translateY(-10px);
}

.presenter-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.presenter-card:hover .presenter-image-wrapper {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
    transform: scale(1.05);
}

.presenter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presenter-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 10px;
}

.presenter-title {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.presenter-bio {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.webinar-details {
    background: rgba(255, 193, 7, 0.05);
    border-radius: 10px;
    padding: 30px 40px;
    margin: 40px auto;
    max-width: 700px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.webinar-details p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 10px 0;
}

.webinar-details strong {
    color: var(--primary-color);
}

.register-cta {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.register-button::after {
    transition: left 0.7s;
}

/* Animated background elements */
.bg-element {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: var(--z-background);
}

.bg-element-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation: float 20s infinite alternate;
}

.bg-element-2 {
    width: 350px;
    height: 350px;
    top: 30%;
    right: 10%;
    animation: float 15s infinite alternate-reverse;
}

.bg-element-3 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: 20%;
    animation: float 18s infinite alternate;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
}

/* Special code elements for webinar page */
.webinar-code {
    position: absolute;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    z-index: var(--z-particles);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: pulse 3s infinite;
}

.webinar-code-1 {
    top: 10%;
    right: 10%;
    transform: rotate(5deg);
}

.webinar-code-2 {
    bottom: 35%;
    right: 15%;
    transform: rotate(-3deg);
}

.webinar-code-3 {
    top: 30%;
    left: 5%;
    transform: rotate(-5deg);
}

/* Responsive design */
@media (max-width: 768px) {
    .webinar-title {
        font-size: 42px;
        padding: 0 15px;
    }
    
    .webinar-subtitle {
        font-size: 22px;
        padding: 0 15px;
    }
    
    .agenda-container {
        padding: 25px;
        margin: 30px 15px;
    }
    
    .agenda-intro {
        font-size: 16px;
        padding: 20px;
        margin: 0 0 30px 0;
    }

    .agenda-title {
        font-size: 28px;
    }

    .agenda-number {
        font-size: 20px;
        min-width: 40px;
        width: 40px;
        height: 40px;
    }

    .webinar-details {
        padding: 20px;
        margin: 30px 15px;
    }

    .webinar-details p {
        font-size: 16px;
    }
    
    .agenda-item-title {
        font-size: 18px;
    }
    
    .presenters-container {
        flex-direction: column;
        align-items: center;
        margin: 40px auto;
    }
    
    .presenter-card {
        width: 90%;
        margin-bottom: 30px;
    }
    
    .bg-element {
        opacity: 0.05;
    }
    
    .webinar-code {
        display: none;
    }
}

@media (max-width: 480px) {
    .webinar-title {
        font-size: 32px;
    }
    
    .webinar-subtitle {
        font-size: 18px;
    }
    
    .agenda-item {
        flex-direction: column;
    }
    
    .agenda-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .register-button {
        padding: 15px 30px;
        font-size: 16px;
        width: 90%;
    }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    /* Disable all animations */
    .bg-element-1,
    .bg-element-2,
    .bg-element-3,
    .webinar-code {
        animation: none !important;
    }
    
    /* Disable transitions */
    .agenda-item:hover,
    .presenter-card:hover,
    .presenter-image-wrapper,
    .register-button::after {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
    
    .register-button:hover {
        transform: none !important;
    }
}
