.footer {
    background: #F5CDD3;
    position: relative;
    padding: 40px 0;
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-left {
    font-family: "Coolvetica";
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 140px;
}

.footer-info {
    text-align: left;
}

.footer-copy {
    font-size: 18px;
    color: #5a2a33;
    line-height: 1.5;
    font-weight: normal;
}

.footer-diplom {
    font-family: "Coolvetica", sans-serif;
    font-size: 16px;
    color: #5a2a33;
    line-height: 1.6;
    margin-top: 12px;
    font-weight: normal;
}

.footer-center {
    font-family: "Coolvetica";
    text-align: center;
    font-size: 18px;
    color: #5a2a33;
    line-height: 1.6;
    white-space: nowrap;
    margin: 0 auto;
    font-weight: normal;
}

.footer-bottom {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

/* ===== ЛАПКИ ===== */
.footer-decor {
    position: absolute;
    bottom: -40px;
    right: 450px;
    max-width: 200px;
    pointer-events: none;
    z-index: 1;
}

.footer-decor img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== СОЦСЕТИ ===== */
.footer-socials {
    display: flex;
    gap: 12px;
    z-index: 2;
}

.social {
    width: 38px;
    height: 38px;
    border: 2px solid #aa4e65;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aa4e65;
    text-decoration: none;
    transition: 0.3s;
    background: transparent;
}

.social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social:hover {
    background: #aa4e65;
    color: white;
}

/* Адаптив */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 20px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-copy {
        white-space: normal;
        font-size: 16px;
    }

    .footer-diplom {
        font-size: 14px;
    }

    .footer-center {
        white-space: normal;
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        min-height: 150px;
        position: relative;
    }
    
    .footer-socials {
        margin: 0;
        z-index: 3;
    }
    
    .footer-decor {
        position: absolute;
        bottom: -20px;
        right: 10px;
        max-width: 120px;
        opacity: 0.5;
        z-index: 1;
    }
}

@media (max-width: 600px) {
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-logo {
        width: 120px;
    }
    
    .footer-copy {
        font-size: 14px;
    }

    .footer-diplom {
        font-size: 13px;
    }

    .footer-center {
        font-size: 14px;
    }
    
    .footer-decor {
        max-width: 100px;
        bottom: -10px;
        right: 5px;
    }
}

@font-face {
    font-family: "Coolvetica";
    src: url("../fonts/Coolvetica.ttf") format("truetype");
}
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.footer-links a {
    font-family: "Coolvetica", sans-serif;
    font-size: 12px;
    color: #5a2a33;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #AA4E65;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 15px;
}

.footer-links a {
    font-family: "Coolvetica", sans-serif;
    font-size: 12px;
    color: #5a2a33;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #AA4E65;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/* ===== АДАПТИВНЫЕ ПРАВКИ ДЛЯ ПОДВАЛА ===== */
@media (max-width: 480px) {
    .footer {
        padding: 30px 0;
    }
    
    .footer-logo {
        width: 100px;
    }
    
    .footer-copy {
        font-size: 12px;
    }
    
    .footer-diplom {
        font-size: 10px;
    }
    
    .footer-center {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 10px;
    }
    
    .social {
        width: 32px;
        height: 32px;
    }
    
    .social svg {
        width: 14px;
        height: 14px;
    }
}