/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(247, 173, 15, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(247, 173, 15, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(247, 173, 15, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    text-align: center;
}

.hero-flyer {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 173, 15, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-flyer:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #F7AD0F 0%, #e09a0d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-details {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.detail-item i {
    color: #F7AD0F;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: #F7AD0F;
    color: white;
    box-shadow: 0 4px 15px rgba(247, 173, 15, 0.3);
}

.cta-button.primary:hover {
    background: #e09a0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 173, 15, 0.4);
}

.cta-button.secondary {
    background: white;
    color: #1a1a1a;
    border: 1px solid #e2e8f0;
}

.cta-button.secondary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.speaker-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.speaker-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.speaker-info p {
    color: #4a5568;
    margin-bottom: 0.25rem;
}

.speaker-info .company {
    font-weight: 500;
    color: #F7AD0F;
}

.speaker-info .company a {
    color: #F7AD0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.speaker-info .company a:hover {
    color: #e09a0d;
    text-decoration: underline;
}

/* Workshop Details Section */
.workshop-details {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.workshop-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(247, 173, 15, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(247, 173, 15, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.detail-card {
    background: rgba(247, 173, 15, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(247, 173, 15, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.detail-card:hover {
    transform: translateY(-5px);
    background: rgba(247, 173, 15, 0.08);
    border-color: rgba(247, 173, 15, 0.2);
}

.detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F7AD0F 0%, #e09a0d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.detail-icon i {
    font-size: 2rem;
    color: white;
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.detail-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 20%, rgba(247, 173, 15, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(247, 173, 15, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.workshop-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.discovery-items {
    margin-bottom: 2rem;
}

.discovery-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.discovery-icon {
    width: 50px;
    height: 50px;
    background: #FFFAEE;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discovery-icon i {
    font-size: 1.2rem;
    color: #F7AD0F;
}

.discovery-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.discovery-content p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

.workshop-details-box {
    background: rgba(247, 173, 15, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(247, 173, 15, 0.1);
    backdrop-filter: blur(10px);
}

.workshop-details-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
}

.detail-list-item i {
    color: #F7AD0F;
    font-size: 1rem;
    width: 16px;
}

.calendly-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.calendly-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.workshop-flyer {
    margin-bottom: 2rem;
    text-align: center;
}

.flyer-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(247, 173, 15, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flyer-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background: #ffffff;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 40%, rgba(247, 173, 15, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 60%, rgba(247, 173, 15, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.resource-card {
    background: rgba(247, 173, 15, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(247, 173, 15, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    backdrop-filter: blur(10px);
}

.resource-card:hover {
    transform: translateY(-5px);
    background: rgba(247, 173, 15, 0.08);
    border-color: rgba(247, 173, 15, 0.2);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F7AD0F 0%, #e09a0d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    font-size: 2rem;
    color: white;
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resource-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F7AD0F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #e09a0d;
}

/* Footer */
.footer {
    background: #ffffff;
    color: #1a1a1a;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(247, 173, 15, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.footer-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-details {
        /* flex-direction: column; */
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .calendly-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .details-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-card,
    .resource-card {
        padding: 1.5rem;
    }
    
    .discovery-item {
        flex-direction: column;
        text-align: center;
    }
    
    .discovery-icon {
        align-self: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for Calendly */
.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #F7AD0F  0%, #e09a0d 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e09a0d 0%, #F7AD0F 100%);
}
