@import url(colors.css);


.head-image-container
{
    position: relative; 
    text-align: center; 
    color: white;
}

.head-image-container img
{
    width: 100%; 
    height: 520px; 
    object-fit: cover;
    filter: brightness(70%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.img-text
{
    position: absolute; 
    top: 50%;
    font-size: 3em;
    
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .img-text {
        font-size: 2.5em;
    }
}

.image-gallery {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.image-item {
    width: 600px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);

}

.image-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-info {
    background-color: var(--bg-color);
    padding: 20px;
    margin-top: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.about-info h {
    font-size: 2em;
    margin-bottom: 10px;
    color: #111;
}

.about-info p {
    font-size: 1.2em;
    color: #222;

}