@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #FF6B6B;
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --secondary-color: #4ECDC4;
    --text-color: #2D3748;
    --text-light: #718096;
    --bg-white: #FFFFFF;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f7fafc;
}

#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8; 
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #1A202C;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

section {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease;
}

section:hover {
    transform: translateY(-2px);
}

.hero {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
}

.badge {
    background: #EBF8FF;
    color: #2B6CB0;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem; /* Reduced for timer */
    font-weight: 600;
}

/* Countdown Timer */
#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #EDF2F7;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    min-width: 60px;
}

.time-val {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.time-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.event-details-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: #4A5568;
    font-weight: 500;
}

.detail-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.cta-button, .submit-button, .floating-cta {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 107, 107, 0.3);
}

.cta-button:hover, .submit-button:hover, .floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 14px rgba(255, 107, 107, 0.4);
    filter: brightness(1.05);
}

.primary-cta {
    width: 100%;
    text-align: center;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gif-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #E2E8F0;
}

.workflow-gif {
    display: block;
    width: 100%;
    height: auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #EDF2F7;
    transition: all 0.2s ease;
}

.info-card:hover {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.icon-pain { color: #FC8181; }
.pain-card p { font-weight: 500; }
.audience-card i { color: #4FD1C5; }

.list-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-item {
    display: flex;
    align-items: center;
    background: #F0FFF4;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #C6F6D5;
}

.icon-check {
    background: #48BB78;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.highlight-box, .result-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    background: #FFF5F5;
    border-left: 4px solid var(--primary-color);
    text-align: center;
    font-weight: 600;
}

.result-box {
    background: #E6FFFA;
    border-left-color: var(--secondary-color);
    font-size: 1.1rem;
}

.host-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #F7FAFC;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.host-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.host-info h4 { margin-bottom: 0.5rem; }
.host-info { flex: 1; }

.host-facts {
    list-style: none;
    margin: 1rem 0;
}

.host-facts li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.host-facts li i {
    color: #48BB78;
    margin-top: 4px; /* Align checkmark with text */
    flex-shrink: 0;
}

.linkedin-link {
    color: #0077B5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.mobile-cta-container {
    text-align: center;
    display: none; /* Hidden by default */
}

.small-mobile-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

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

.testimonial-card {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 10px;
    position: relative;
    border: 1px solid #E2E8F0;
}

.quote-icon {
    font-size: 1.5rem;
    color: #CBD5E0;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-card p {
    font-style: italic;
    color: #4A5568;
    position: relative;
    z-index: 1;
}

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

.detail-block {
    text-align: center;
    padding: 1rem;
    background: #EDF2F7;
    border-radius: 8px;
}

.detail-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #718096;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.detail-value {
    display: block;
    font-weight: 600;
    color: #2D3748;
}

.urgent-tag {
    display: inline-block;
    background: #FFF5F5;
    color: #C53030;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid #FEB2B2;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1rem;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2D3748;
}

.faq-item p {
    color: #4A5568;
    font-size: 0.95rem;
}

.cta-final {
    text-align: center;
    border: 2px solid var(--primary-color);
}

#registration-form {
    max-width: 400px;
    margin: 2rem auto 0;
    text-align: left;
}

.form-group { margin-bottom: 1.25rem; }

label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #4A5568;
}

input {
    width: 100%;
    padding: 1rem; 
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button { width: 100%; }

.privacy-note {
    font-size: 0.8rem;
    color: #A0AEC0;
    margin: 1rem 0;
    text-align: center;
    line-height: 1.4;
}

#form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 1.4rem; } /* Smaller font as requested */
    .subtitle { font-size: 1rem; } /* Smaller font as requested */
    
    .content-wrapper { padding: 1rem; }
    section { padding: 1.5rem; }
    
    .host-profile { 
        flex-direction: column; 
        text-align: center; 
    }
    
    .host-info { text-align: left; width: 100%; }
    .host-facts li { justify-content: flex-start; }
    .linkedin-link { justify-content: center; width: 100%; }

    .event-details-hero { flex-direction: column; gap: 0.5rem; }
    
    .floating-cta { display: none; }
    
    /* Show mobile CTA */
    .mobile-cta-container { 
        display: block; 
        margin-top: 1rem;
    }
}

@media (min-width: 769px) {
    .floating-cta { display: inline-block; }
}
