/* ===== СТРАНИЦА КОНТАКТОВ ===== */

.contacts {
    padding: 220px 0 90px;
    background: #F5CDD3;
    min-height: 70vh;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Заголовок */
.contacts__title {
    text-align: center;
    font-size: 58px;
    color: #AA4E65;
    margin-bottom: 56px;
    letter-spacing: 0.5px;
    font-family: "Coolvetica", sans-serif;
}

.contacts__title span {
    display: block;
    font-family: "Czizh", cursive;
    font-size: 68px;
    color: #aa4e65;
    margin-top: 8px;
       letter-spacing: 0.5px;
}

/* Контент */
.contacts__content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

/* Карта — тень цвета AA4E65 */
.contacts__map {
    flex: 1.2;
    min-width: 280px;
    height: 400px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 25px 40px -12px rgba(170, 78, 101, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: #e9dbd6;
    transition: all 0.3s ease;
}

.contacts__map:hover {
    box-shadow: 
        0 35px 50px -12px rgba(170, 78, 101, 0.7),
        0 0 0 3px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Информационный блок */
.contacts__info {
    flex: 0.8;
    min-width: 280px;
    padding: 20px 20px;
}

.contacts__address {
    font-size: 1.80rem;
    margin-bottom: 20px;
    color: #2c1c18;
    font-family: "Coolvetica", sans-serif;
       letter-spacing: 0.5px;
}

/* Обычный текст для телефона и email (без ссылок) */
.contacts__text {
    font-size: 1.80rem;
    color: #aa4e65;
    margin: 18px 0;
    font-family: "Coolvetica", sans-serif;
       letter-spacing: 0.5px;
}

/* Соцсети с иконками */
.contacts__socials {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.80rem;
    font-weight: 500;
    color: #aa4e65;
    transition: 0.2s;
    font-family: "Coolvetica", sans-serif;
       letter-spacing: 0.5px;
}

.social-link:hover {
    color: #c73e4f;
    transform: translateX(4px);
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* Адаптив */
@media (max-width: 1024px) {
    .contacts {
        padding: 200px 0 60px;
    }
    
    .contacts__title {
        font-size: 48px;
    }
    
    .contacts__title span {
        font-size: 52px;
    }
    
    .contacts__address {
        font-size: 1.35rem;
    }
    
    .contacts__text {
        font-size: 1.2rem;
    }
    
    .social-link {
        font-size: 1.1rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .contacts {
        padding: 180px 0 50px;
    }
    
    .contacts__content {
        flex-direction: column;
    }
    
    .contacts__map {
        width: 100%;
        height: 300px;
    }
    
    .contacts__info {
        width: 100%;
        max-width: 500px;
        text-align: center;
        padding: 20px;
    }
    
    .contacts__text {
        justify-content: center;
    }
    
    .social-link {
        justify-content: center;
    }
    
    .contacts__title {
        font-size: 42px;
        margin-bottom: 40px;
    }
    
    .contacts__title span {
        font-size: 44px;
    }
}

@media (max-width: 550px) {
    .contacts {
        padding: 160px 0 40px;
    }
    
    .contacts__title {
        font-size: 36px;
    }
    
    .contacts__title span {
        font-size: 38px;
    }
    
    .contacts__address {
        font-size: 1.25rem;
    }
    
    .contacts__text {
        font-size: 1.1rem;
    }
    
    .social-link {
        font-size: 1rem;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
    }
}