/* Webinar Page Styles */

/* Hero Section */
.webinar-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.webinar-hero-bg {
    background-image: url('/images/creators-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(2px);
    z-index: 1;
}

.webinar-hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.webinar-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.webinar-hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Webinar Overview Section */
.webinar-overview-section {
    background: #f8f9fa;
    margin-top: -50px;
    position: relative;
    z-index: 3;
}

.webinar-overview-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.webinar-overview-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.webinar-overview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.webinar-overview-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.webinar-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem;
}

.topic-card {
    background: #E3F2FD;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.topic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #0047AB;
}

.topic-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* Webinar Registration Section */
.webinar-registration-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.webinar-registration-bg {
    background-image: url('/images/creators-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(2px);
    z-index: 1;
}

.webinar-registration-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.webinar-registration-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.webinar-registration-subtitle {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.webinar-registration-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.registration-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Calendar Styles */
.calendar-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-nav-btn {
    background: #0047AB;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
    background: #003a8c;
    transform: scale(1.1);
}

.calendar-month {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.calendar-grid {
    width: 100%;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.weekday {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    padding: 0.5rem;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.calendar-date:hover {
    background: #f0f0f0;
}

.calendar-date.available {
    background: #E3F2FD;
    color: #0047AB;
    font-weight: 600;
}

.calendar-date.available:hover {
    background: #0047AB;
    color: white;
}

.calendar-date.selected {
    background: #0047AB;
    color: white;
    font-weight: 700;
}

.calendar-date.empty {
    cursor: default;
    opacity: 0.3;
}

/* Time Selection Styles */
.time-selection-section {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.selected-date-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.time-slots {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-slot-btn {
    background: #E3F2FD;
    color: #0047AB;
    border: 2px solid #E3F2FD;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.time-slot-btn:hover {
    background: #0047AB;
    color: white;
}

.time-slot-btn.active {
    background: #0047AB;
    color: white;
    border-color: #0047AB;
}

.timezone-selector label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
}

.timezone-selector .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.95rem;
}

.timezone-selector .form-select:focus {
    border-color: #0047AB;
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.25);
}

/* Calendly Integration */
.calendly-container {
    width: 100%;
    height: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.calendly-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}
.registration-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.registration-form .form-control:focus {
    border-color: #0047AB;
    box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.25);
}

.registration-form .btn-primary {
    background: #0047AB;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
}

.registration-form .btn-primary:hover {
    background: #003a8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.3);
}

.registration-form .btn-primary:disabled {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

/* Sales Presentation Section */
.sales-presentation-section {
    background: #f8f9fa;
}

.sales-presentation-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sales-presentation-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.sales-presentation-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.video-player-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.video-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.video-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.video-title i {
    color: #0047AB;
}

.video-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    position: relative;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.play-button {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.video-description {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .webinar-hero-section,
    .webinar-registration-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .webinar-hero-bg,
    .webinar-registration-bg {
        background-attachment: scroll;
    }
    
    .webinar-hero-title,
    .webinar-registration-title {
        font-size: 2.5rem;
    }
    
    .webinar-hero-subtitle,
    .webinar-registration-subtitle {
        font-size: 1.1rem;
    }
    
    .webinar-overview-card,
    .webinar-registration-card {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .webinar-overview-title,
    .sales-presentation-title {
        font-size: 2rem;
    }
    
    .webinar-topics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .time-slots {
        flex-direction: column;
    }
    
    .video-container {
        height: 250px;
    }
    
    .video-thumbnail {
        width: 80px;
        height: 80px;
    }
    
    .play-button {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .webinar-hero-title,
    .webinar-registration-title {
        font-size: 2rem;
    }
    
    .webinar-hero-subtitle,
    .webinar-registration-subtitle {
        font-size: 1rem;
    }
    
    .webinar-overview-card,
    .webinar-registration-card {
        padding: 1.5rem 1rem;
    }
    
    .webinar-overview-title,
    .sales-presentation-title {
        font-size: 1.75rem;
    }
    
    .registration-card-title {
        font-size: 1.5rem;
    }
    
    .calendar-section,
    .time-selection-section {
        padding: 1rem;
    }
    
    .video-container {
        height: 200px;
    }
}
