/* ========================================
   FRONT PAGE STYLES
   ======================================== */

/* Main content layout */
.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vw;
    gap: 2vw;
    max-width: 1200px;
    margin: 0 auto;
}

.picture_paragraph {
    flex: 1;
    max-width: 50%;
}

.picture_paragraph h1 {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.picture_paragraph p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 530px;
    line-height: 1.5;
}

.picture_paragraph .btn-login {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.2rem;
    background-color: #FF9900;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    text-align: center;
    margin-left: auto;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.picture_paragraph .btn-login:hover {
    background-color: #e68a00;
}

.front_image_1 {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.front_image_1 img {
    max-width: 100%;
    height: auto;
}

/* Content sections */
.lower-content, .bottom-content {
    margin: 5rem auto;
    text-align: center;
}

.lower-content {
    max-width: 60%;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.bottom-content {
    max-width: 90%;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    line-height: 1.4;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Mobile devices (≤768px) */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3vw;
        gap: 2rem;
    }
    
    .picture_paragraph {
        max-width: 90%;
    }
    
    .picture_paragraph h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .picture_paragraph p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .picture_paragraph .btn-login {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        margin: 0 auto;
        border-radius: 20px;
    }
    
    .front_image_1 {
        justify-content: center;
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .front_image_1 img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    
    .lower-content, .bottom-content {
        margin: 3rem auto;
        padding: 0 1rem;
    }
    
    .lower-content {
        max-width: 100%;
        font-size: 1.3rem;
    }
    
    .bottom-content {
        max-width: 100%;
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: center;
    }
}

/* Tablet devices (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-content {
        padding: 4vw;
        gap: 3vw;
    }
    
    .picture_paragraph h1 {
        font-size: 2.5rem;
    }
    
    .picture_paragraph p {
        font-size: 1.3rem;
        max-width: 80%;
    }
}

/* Small desktop (1024px - 1200px) */
@media (min-width: 1025px) and (max-width: 1199px) {
    .main-content {
        padding: 4.5vw;
        gap: 2.5vw;
    }
    
    .picture_paragraph h1 {
        font-size: 2.8rem;
    }
    
    .picture_paragraph p {
        font-size: 1.4rem;
        max-width: 70%;
    }
}
