@import url('./main.css');

/* hero section */
.hero-section{
    width: 100%;
    position: relative;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    
}
.hero-section::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(50, 50, 50, 0.4);

}
.hero-section h1{
    color: white;
    z-index: 2;
    font-weight: 700;
    font-size: clamp(35px,2em,48px);

}



.main_container h2,.main_container h3 {
    color: var(--primary-color);
    text-align: center;
    font-size: clamp(22px,2vw,28px);
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.main_container {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 30px auto;
}

.main_container p {
    line-height: 1.6;
    font-size: 1.1rem;
    text-align: justify;
}

.main_container ul {
    list-style: none;
    padding: 0;
}

.main_container ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light_primary);
    position: relative;
    padding-left: 20px;
}

.main_container ul li::before {
    content: '\2022';
    color: var(--secondary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 5px;
}
.image_container{
    width: 100%;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.image_container img{
    width: 100%;
    height: 180px;
    border-radius: 5px;
    object-fit: cover;
    transition: 0.4s;
}
.image_container img:hover{
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .main_container {
        padding: 20px;
    }
    .main_container h2, h3 {
        font-size: 1.5rem;
    }
}
