/* ============================
   ОБЩИЕ СТИЛИ
============================ */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #007f80; /* новый фон страницы */
    color: #fff;
}

/* ============================
   ШАПКА — ПК
============================ */
.contact-header {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: #003f40; /* новый фон шапки */
    border-bottom: 2px solid #444;
}

.contact-logo {
    width: 150px;
    height: 150px;
}

.contact-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

.contact-back {
    font-size: 20px;
    color: #f0c040;
    text-decoration: none;
}

.contact-back:hover {
    color: #ffd66c;
}
.contact-seo {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px 15px;
    text-align: center;
    opacity: 0.85;
}


/* ============================
   ФОРМА ОБРАТНОЙ СВЯЗИ
============================ */
.contact-form-section {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.contact-form {
    width: 650px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    background: #0A3A3A;
    padding: 30px;              /* ← добавлено */
    border-radius: 12px;
    border-top: 3px solid #D4A94A;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
    box-sizing: border-box;     /* ← добавлено */
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    border-radius: 8px;
    border: none;
    outline: none;

    background: #0F4A4A;
    color: #fff;
    box-sizing: border-box;     /* ← добавлено */
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    font-size: 22px;
    background: #D4A94A;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background: #ffd66c;
}





/* ============================
   РЕКОМЕНДАЦИИ — КАРТОЧКИ
============================ */
.songs-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 0 40px;
}

/* Карточка */
.card {
    background: #0A3A3A;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.card img {
    width: 100%;
    display: block;
}

.card-info {
    padding: 14px;
}

.card-info h3 {
    font-size: 18px;
    margin: 0;
    line-height: 1.3;
}

/* ============================
   АДАПТИВНОСТЬ
============================ */

/* Планшеты */
@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

/* Телефоны */
@media (max-width: 600px) {
    .cards {
        grid-template-columns: repeat(1, 1fr);
        padding: 0 10px;
    }

    .card-info h3 {
        font-size: 16px;
    }
}




/* =================
