:root {
    --gold: #D4AF37;
    --light-gold: #F4E4BC;
    --soft-white: #FAF9F6;
    --dark-text: #2C2C2C;
    --accent-purple: #8A6F9D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0f;
    color: #e0e0ff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

header {
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
    width: 100%;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5),
                 0 0 20px rgba(147, 51, 234, 0.3);
    white-space: nowrap;
}

.logo:hover {
    color: #a855f7;
    text-shadow: 0 0 15px rgba(147, 51, 234, 0.7),
                 0 0 25px rgba(147, 51, 234, 0.5),
                 0 0 35px rgba(147, 51, 234, 0.3);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #e0e0ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(147, 51, 234, 0.3);
}

.nav-links a:hover {
    color: #a855f7;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-header {
    text-align: center;
    margin-bottom: 3rem;
}

.title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5),
                 0 0 20px rgba(147, 51, 234, 0.3);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    color: #a855f7;
    letter-spacing: 2px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    background: linear-gradient(45deg, #2C2C2C, #3A3A3A);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--soft-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-placeholder .small {
    font-size: 1rem;
    opacity: 0.8;
}

.description {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.benefits {
    margin: 2rem 0;
    font-size: 1.1rem;
}

.benefits p {
    color: #e0e0ff;
    margin: 1rem 0;
}

.quantum-button {
    background: linear-gradient(45deg, #4c1d95, #7e22ce);
    color: white;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5),
                0 0 30px rgba(147, 51, 234, 0.3);
}

.quantum-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.7),
                0 0 40px rgba(147, 51, 234, 0.4);
}

.countdown-container {
    background: rgba(147, 51, 234, 0.05);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.quantum-note {
    color: #a855f7;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.cta-container {
    text-align: center;
}

.golden-button {
    background: linear-gradient(45deg, var(--gold), var(--light-gold));
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.golden-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.3),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.golden-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.offer-details {
    color: var(--accent-purple);
    font-size: 0.9rem;
    opacity: 0.9;
}

footer {
    text-align: center;
    padding: 2rem;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(147, 51, 234, 0.2);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5),
                 0 0 20px rgba(147, 51, 234, 0.3);
}

.footer-copyright {
    color: #a855f7;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .hero-header .title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }

    .hero-header .subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .golden-button {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }

    #countdown {
        gap: 0.8rem;
    }

    .time-segment span {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    footer {
        padding: 1.5rem;
    }

    .footer-brand {
        font-size: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-text {
    margin-bottom: 3rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0ff;
}

.quantum-link {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(147, 51, 234, 0.3);
}

.quantum-link:hover {
    color: #c084fc;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin: 3rem 0 2rem;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: rgba(147, 51, 234, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid #a855f7;
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.3);
}

.testimonial-text {
    color: #e0e0ff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: #a855f7;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 0 5px rgba(147, 51, 234, 0.3);
}

@media (max-width: 768px) {
    .video-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Course Grid and Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.course-card {
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.course-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: rgba(10, 10, 15, 0.9);
}

.course-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.course-description {
    color: #e0e0ff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-card .quantum-button {
    align-self: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    margin-top: auto;
    width: auto;
    min-width: 200px;
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
        padding: 1rem 0;
    }

    .course-title {
        font-size: 1.5rem;
    }
}

/* Add these new styles for the workshop page */
.workshop-details {
    text-align: center;
    margin: 2rem 0;
    color: #a855f7;
    background: rgba(147, 51, 234, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.workshop-details .date-time {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.workshop-details .time-zone {
    font-size: 1.2rem;
    color: #e0e0ff;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

#countdown .time-segment {
    background: rgba(147, 51, 234, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    min-width: 120px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.2);
}

#countdown .time-segment span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #a855f7;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

#countdown .time-segment .label {
    font-size: 0.9rem;
    color: #e0e0ff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .workshop-details .date-time {
        font-size: 1.5rem;
    }
    
    .workshop-details .time-zone {
        font-size: 1rem;
    }
    
    #countdown {
        gap: 0.8rem;
    }
    
    #countdown .time-segment {
        min-width: 65px;
        padding: 0.7rem;
    }
    
    #countdown .time-segment span {
        font-size: 1.5rem;
    }
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.error-message {
    font-size: 1.5rem;
    color: #a855f7;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.error-description {
    color: #e0e0ff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .error-message {
        font-size: 1.2rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
}

/* Add extra small screen adjustments */
@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .hero-header .title {
        font-size: 2rem;
    }

    .hero-header .subtitle {
        font-size: 1rem;
    }
}

.disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(147, 51, 234, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.disclaimer p {
    color: #a855f7;
    font-size: 0.9rem;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .disclaimer {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .disclaimer p {
        font-size: 0.8rem;
    }
}

.thank-you-container {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    margin: 2rem 0;
}

.thank-you-message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

.next-event-message {
    color: #e0e0ff;
    font-size: 1.2rem;
    line-height: 1.6;
}

.next-event-message .quantum-link {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(147, 51, 234, 0.3);
}

.next-event-message .quantum-link:hover {
    color: #c084fc;
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .thank-you-container {
        padding: 2rem 1rem;
    }
    
    .thank-you-message {
        font-size: 2rem;
    }
    
    .next-event-message {
        font-size: 1rem;
    }
} 