/* homeStyle.css */

/* --- GENERAL LAYOUT & TYPOGRAPHY --- */
.section-container {
    text-align: center;
    color: white;
    padding: 2rem 20px;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--color-partner);
}

.text-pink {
    color: var(--color-pink);
}

.text-yellow {
    color: var(--color-partners-partner);
}

/* --- HERO SECTION --- */
.hero-text {
    color: white;
    margin-top: 10px;
}

.beta-badge {
    color: var(--color-you);
    background-color: rgba(38, 32, 62, 0.8);
    border: 1px solid var(--color-you);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    text-align: center;
    margin: 20px auto 40px;
    padding: 0 20px;
}

/* --- BUTTONS & BUTTON GROUPS --- */
.main-signup-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s, background-color 0.2s;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-signup-btn:hover {
    transform: scale(1.05);
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Button Stacking for Mobile */
@media (max-width: 600px) {
    .button-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .main-signup-btn {
        width: 100%;
    }
}

/* --- HOW IT WORKS CARDS --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    background: rgba(38, 32, 62, 0.3);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: left;
}

.step-card h3 {
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* --- BOTTOM CTA CARD --- */
.bottom-cta {
    background: rgba(38, 32, 62, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4rem 20px;
    margin-top: 2rem;
}

.bottom-cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-pink);
}

.bottom-cta-text {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* --- IMAGE LIGHTBOX & VIDEO EMBED --- */
.image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.image:hover {
    opacity: 0.8;
}

.image-center {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.image-center .image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.video-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

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

/* --- IMAGE LIGHTBOX MODAL (Dynamically generated by JS) --- */
.lightbox-modal {
    display: none; 
    position: fixed; 
    z-index: 999; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--color-purple, #8c7aea);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}