/* Main CSS for Paid Speaking Club - Based on paid-speaking-club-schedule */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bangers', cursive;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header h1 {
    color: #ff69b4; /* Pink color for titles */
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
}

.schedule-subtitle {
    color: #cccccc;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: normal;
}

/* Subscription Banner */
.subscription-banner {
    background: linear-gradient(45deg, #ff1493, #ff69b4, #ff1493, #ff69b4);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite, pulse 2s infinite;
    padding: 25px;
    margin: 30px 0;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid #ff69b4;
    position: relative;
    overflow: hidden;
}

.subscription-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 2s infinite;
}

.subscription-banner:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.subscription-banner h2 {
    color: #ffffff;
    font-size: 2.8rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 105, 180, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 105, 180, 0); }
}

/* Schedule Grid */
.schedule-container {
    margin: 40px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.day-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid #ff69b4;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.2);
    animation: fadeInUp 0.6s ease forwards;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 105, 180, 0.4);
    border-color: #ff1493;
}

.day-title {
    color: #ff69b4;
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(255, 105, 180, 0.3);
    font-family: 'Bangers', cursive !important;
}

.day-date {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    background: rgba(255, 105, 180, 0.2);
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    font-family: 'Bangers', cursive !important;
}

.session {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    margin: 15px 0;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #444;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.session::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff1493, #ff69b4, #ff1493);
}

.session:hover {
    border-color: #ff69b4;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
}

.session-time {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
}

.session-info {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #cccccc;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
    border-left: 3px solid #ff69b4;
}

.participants, .available-spots {
    margin-bottom: 5px;
    font-weight: 500;
}

.available-spots {
    color: #00ff00;
    font-weight: bold;
}

.session-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-family: 'Bangers', cursive;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.session-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.session-btn:hover::before {
    left: 100%;
}

.btn-open {
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
}

.btn-open:hover {
    background: linear-gradient(45deg, #00cc00, #00aa00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.btn-full {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: #ffffff;
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    opacity: 0.8;
}

.btn-coming-soon {
    background: linear-gradient(45deg, #ffaa00, #ff8800);
    color: #000000;
    cursor: not-allowed;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.3);
    opacity: 0.8;
}

/* Loading and No Data States */
.loading {
    text-align: center;
    color: #ff69b4;
    font-size: 1.5rem;
    padding: 40px;
    grid-column: 1 / -1;
    animation: pulse 1.5s infinite;
}

.no-data {
    text-align: center;
    color: #cccccc;
    font-size: 1.2rem;
    padding: 40px;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 10px;
    border: 2px solid #444;
}

/* Register Section */
.register-section {
    text-align: center;
    margin: 40px 0;
}

.register-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.register-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    margin: 5% auto;
    padding: 0;
    border: 3px solid #ff69b4;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.4);
    animation: slideIn 0.4s ease;
}

.modal-header {
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: white;
    padding: 20px;
    border-radius: 17px 17px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.session-details {
    padding: 20px 30px;
    text-align: center;
    border-bottom: 1px solid #444;
}

.session-details h3 {
    color: #ffffff;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
}

.session-date, .session-time {
    display: inline-block;
    margin: 0 10px;
    padding: 5px 10px;
    background: #333;
    border-radius: 5px;
    font-weight: bold;
}

.subscription-info {
    padding: 20px 30px;
    border-bottom: 1px solid #444;
}

.subscription-info h3 {
    color: #ff69b4;
    margin: 0 0 15px 0;
    font-size: 1.4rem;
}

.subscription-info p {
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: #ffffff;
    padding: 5px 0;
    font-size: 1rem;
}

.modal-form {
    padding: 20px 30px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    color: #ff69b4;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1rem;
}

.modal-form input {
    width: 100%;
    padding: 12px;
    background: #333;
    border: 2px solid #555;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.modal-form input:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.3);
    background: #444;
}

.modal-form small {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
    line-height: 1.4;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.close-modal-btn {
    padding: 12px 24px;
    background: #666;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal-btn:hover {
    background: #777;
}

.register-session-btn {
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff1493, #ff69b4);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.register-session-btn:hover:not(:disabled) {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.register-session-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.modal-footer {
    padding: 15px 30px;
    text-align: center;
    border-top: 1px solid #444;
}

.modal-footer p {
    color: #cccccc;
    margin: 0;
}

.modal-footer a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.day-card:nth-child(1) { animation-delay: 0.1s; }
.day-card:nth-child(2) { animation-delay: 0.2s; }
.day-card:nth-child(3) { animation-delay: 0.3s; }
.day-card:nth-child(4) { animation-delay: 0.4s; }
.day-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subscription-banner h2 {
        font-size: 1.8rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header,
    .session-details,
    .subscription-info,
    .modal-form,
    .modal-footer {
        padding: 15px 20px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .close-modal-btn,
    .register-session-btn {
        width: 100%;
    }
}