/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* ===== LAYOUT COMPONENTS ===== */
.workshop-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.workshop-header {
    text-align: center;
    margin-bottom: 30px;
}

.workshop-title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2em;
    font-weight: 550;
    letter-spacing: 0;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}   

.workshop-subtitle {
    font-size: 1.3em;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.workshop-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.8;
}

/* ===== ILLUSTRATIONS SECTION ===== */
.illustrations-section {
    max-width: 1200px;
    margin: 30px auto 30px;
    padding: 0 20px;
}

.illustrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.illustration-item {
    text-align: center;
}

.illustration-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.illustration-image:hover {
    transform: translateY(-5px);
}

.emoji {
    font-size: 1.2em;
}

/* ===== VIDEO SECTION ===== */
.video-container {
    aspect-ratio: 16 / 9;
    max-width: 1200px;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #000;
}

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

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background-color: #f2f2f2;
    padding: 30px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.benefits-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.benefit-item h3 {
    margin-bottom: 10px;
    color: #1a1a1a;
    font-size: 1.2em;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    padding: 30px;
    background: #f2f2f2;
    border-radius: 12px;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #e0e0e0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
    font-size: 1.1em;
}

.testimonial-handle {
    color: #666;
    font-size: 0.9em;
    margin-top: 0;
}

.testimonial::before {
    content: '"';
    font-size: 3em;
    color: #e0e0e0;
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-text {
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.8;
    padding-left: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #666;
    text-align: right;
}

.testimonial-linkedin {
    width: 25px;
    height: 25px;
    background-color: #0077b5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    margin-left: auto;
    position: relative;
}

.testimonial-linkedin:hover {
    background-color: #005885;
}

.testimonial-linkedin::before {
    content: "in";
    color: white;
    font-weight: bold;
    font-size: 18px;
    font-family: Arial, sans-serif;
}

/* ===== GROUP PHOTO SECTION ===== */
.group-photo-section {
    margin: 30px 0;
    text-align: center;
}

.group-photo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.group-photo {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background-color: #f2f2f2;
    color: #1a1a1a;
    padding: 30px 30px;
    border-radius: 16px;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}



.pricing-card.featured {
    border: 3px solid #FFCC00;
    position: relative;
    background: rgba(255, 204, 0, 0.15);
    color: #1a1a1a;
}

.pricing-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    line-height: 1.2;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFCC00;
    color: #1a1a1a;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9em;
}

.price {
    font-size: 3em;
    font-weight: 700;
    margin: 20px 0;
}

.price-currency {
    font-size: 0.5em;
    vertical-align: super;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.pricing-features li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    text-align: left;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #8c8c8c;
    font-weight: bold;
    width: 20px;
    text-align: center;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #FFCC00;
    color: #1a1a1a;
}

.pricing-card:not(.featured) .cta-button:hover {
    background: #FFCC00;
    color: #1a1a1a;
}

.workshop-header .cta-button:hover,
.final-cta .cta-button:hover {
    background: #FFCC00;
    color: #1a1a1a;
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: 20px;
}

.pricing-card.featured .cta-button {
    background: #FFCC00;
    color: #1a1a1a;
}

.pricing-card.featured .cta-button:hover {
    background: #1a1a1a;
    color: white;
}

/* ===== WORKSHOP DETAILS ===== */
.workshop-details {
    max-width: 800px;
    margin: 30px auto 30px;
    text-align: center;
}

.workshop-details h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.detail-item {
    margin: 15px 0;
    font-size: 1.1em;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.final-cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    border-top: 1px solid #e0e0e0;
}

.footer a {
    color: #1a1a1a;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .workshop-title {
        font-size: 2em;
    }
    
    .illustrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    
    .benefit-item,
    .pricing-card,
    .testimonial {
        max-width: 400px;
        width: 100%;
    }

    .workshop-section {
        padding-left: 20px;
        padding-right: 20px;
    }
} 