﻿@import "colors.css";

.maps-container{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.maps-link {
    display: inline-block;
    text-align: center;
    transition: transform 0.2s ease;
}

    .maps-link:hover .maps-icon,
    .maps-link:hover .maps-text {
        color: var(--text-color);
    }

    .maps-link:hover {
        transform: scale(1.05);
    }

.maps-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
}

.maps-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: color 0.2s ease;
}

.maps-text {
    color: var(--secondary-color);
    transition: color 0.2s ease;
}
.maps-link:hover .maps-text {
}



.contact-section{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    flex-wrap:wrap;
}

.contact-wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item{
    margin: 0;
    display: flex;
    gap: 10px;
}

.contact-title{
    text-align: center;
}

.contact-item .social-link-item-icon{
    font-size: 1.5rem;
}

.contact-item .social-link-item-text{
    color: var(--tertiary-color);
}