/*
 * style.css
 * EXPRESS PIANO KYIV - CSS STYLESHEET
 * Версія: 1.0.0
 */

/* ==================================== */
/* 1. БАЗОВІ СТИЛІ ТА ШРИФТИ */
/* ==================================== */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4; /* Світло-сірий фон для контрасту */
}

a {
    color: #007bff; /* Основний акцентний колір (синій) */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

h1, h2, h3 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #343a40; /* Темний колір для заголовків */
}

h1 { font-size: 2.2em; border-bottom: 2px solid #ccc; padding-bottom: 5px; }
h2 { font-size: 1.8em; color: #1e8449; /* Смарагдово-зелений для підзаголовків */ }
h3 { font-size: 1.4em; }

p, ul, ol {
    margin-bottom: 1em;
}

/* Виділення ключових слів */
b {
    color: #1e8449; /* Смарагдово-зелений */
}

/* ==================================== */
/* 2. СТИЛІ HEADER (ШАПКА) */
/* ==================================== */

header {
    background-color: #343a40; /* Темно-сірий фон шапки */
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffd700; /* Золотий колір логотипу */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    font-weight: 400;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover {
    color: #ffd700;
    text-decoration: none;
    border-bottom: 2px solid #ffd700;
}

.contacts a {
    color: #ffd700;
    margin-left: 15px;
    font-size: 1.1em;
    font-weight: 700;
}

.contacts a:hover {
    color: white;
    text-decoration: none;
}

/* ==================================== */
/* 3. ОСНОВНИЙ КОНТЕНТ */
/* ==================================== */

main {
    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Списки */
ul, ol {
    padding-left: 25px;
}

ul li, ol li {
    margin-bottom: 5px;
}

/* Таблиці (якщо будуть використані) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
    font-weight: 700;
}

/* ==================================== */
/* 4. СТИЛІ FOOTER (ПІДВАЛ) */
/* ==================================== */

footer {
    background-color: #343a40;
    color: white;
    padding: 20px 5%;
    text-align: center;
    margin-top: 30px;
    border-top: 5px solid #1e8449; /* Зелена лінія як акцент */
}

.footer-contacts p {
    margin-bottom: 10px;
    font-size: 1.1em;
    font-weight: 700;
}

.footer-contacts a {
    color: #ffd700;
    margin: 0 10px;
    font-size: 1em;
}

.footer-contacts a:hover {
    color: white;
}

.footer-links {
    margin-top: 15px;
    font-size: 0.9em;
}

.footer-links a {
    color: #aaa;
    margin-left: 15px;
}

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

/* ==================================== */
/* 5. МЕДІА ЗАПИТИ (АДАПТИВНІСТЬ) */
/* ==================================== */

@media (max-width: 900px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .contacts {
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    
    header {
        padding: 10px 5%;
    }

    .contacts a {
        display: block;
        margin: 5px 0;
    }
}