/**********************************************
    MAIN PAGE RESTORATION — AIsle Landing Page
    Keeps neutral pink theme + restores layout
**********************************************/

/* === HERO SECTION === */
/* Estilo para la sección hero */
.hero {
    background-image: url('../images/main_page/hero_background.png');
    /* Coloca aquí la imagen de boda */
    background-size: cover;
    background-position: center 35%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
}


/* === FOUNDERS SECTION === */

/* Estilos para los fundadores */
.founders {
    padding: 40px;
    text-align: center;
}

.founders h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.founders ul {
    list-style: none;
}

.founders ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-top: 20px;
}


/* === SHARED BUTTONS === */
.cta-btn {
    background: var(--accent);
    color: white;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 18px;
    transition: 0.2s ease-out;
}

.cta-btn:hover {
    background: var(--accent-dark);
}

/* === LOGIN CARD (used on main page) === */
.form-container {
    width: 320px;
    margin: 40px auto;
    padding: 22px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

/* === INPUTS FOR LOGIN === */
form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

form button:hover {
    background: var(--accent-dark);
}

/* === FOOTER (landing only) === */
footer {
    margin-top: 40px;
}

/**********************************************
    MOBILE FIXES
**********************************************/
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .founders {
        padding: 40px 20px;
    }
}