/*==============================================================
      PALANIDAS Sathursan - 10.12.2025 - Style de l'accueil
===============================================================*/
/* ========================================
   BACKGROUND
======================================== */
body {
    background-image: url(../image/Bamboo.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* ========================================
   LAYOUT PRINCIPAL
======================================== */
main {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 1.25rem;
    position: relative;
    z-index: 2;
}

section {
    background: rgb(255, 255, 255);
    padding: 1.875rem;
    margin-bottom: 1.875rem;
    border-radius: 20px;
    border-left: solid 5px rgb(170, 19, 19);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    border-bottom: 3px solid rgb(170, 19, 19);
}

h2 {
    font-size: 2rem;
    color: rgb(83, 22, 22);
}

p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    main {
        max-width: 95%;
        margin: 1.5rem auto;
        padding: 1rem;
    }
    
    section {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    main {
        max-width: 95%;
        margin: 1rem auto;
        padding: 0.5rem;
    }
    
    section {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 20px;
    }
    
    section h2 {
        font-size: 1.2rem;
    }
}