﻿.contact-page-contact-background-container {
    position: relative;
    width: 100vw;
    padding: 4rem 0;
    background-image: url('/images/music-sheet.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.contact-page-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.contact-page-contact-row {
    position: relative;
    z-index: 1;
    width: 95%;
    max-width: 1200px;
    height: auto;
    background-color: rgba(227, 193, 180, 0.75);
    padding: 2rem;
    padding-top: 2.5rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-page-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 200px;
    max-width: 300px;
}

    .contact-page-contact-item:hover {
        transform: scale(1.05);
        filter: brightness(1.1);
        cursor: pointer;
    }

.contact-page-contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    fill: #DDD9CE; 
    stroke: #050505;
    stroke-width: 1px;
}

.contact-page-contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #DDD9CE;
    text-shadow: -1px -1px 0 #050505, 1px -1px 0 black, -1px 1px 0 #050505, 1px 1px 0 #050505;
}

.contact-page-pages-buttons-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    z-index: 20;
    margin-top: 3rem;
    margin-bottom: 10rem;
}