/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --primary-blue: #2998FF;
    --dark-blue: #1b64a7;
    --white: #ffffff;
    --text-dark: #333333;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ABD7FF;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Общие компоненты */
.full-width-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin: 15px;
    border-radius: var(--border-radius);
}

.content-container {
    background-color: var(--white);
    box-shadow: var(--shadow);
    margin: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
}

/* Навигация */
nav {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2px; 
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 10px 10px;
    width: 100%;
}

.nav-list li {
    flex: 0 0 auto;
    margin: 8px; 
}

.nav-btn {
    display: inline-block;
    padding: 12px 5px;
    width: 215px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.nav-btn:hover {
    background-color: var(--dark-blue);
}

.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0 10px;
    margin: 15px auto;
    width: 100%;
    height: 300px;
    max-width: 1160px;
    border-radius: var(--border-radius);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.section-title-white {
    color: var(--primary-blue);
    font-size: 54px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
}

.hero-content {
    text-align: left;
    margin: 10px;
}

.hero-content h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 5px;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
}

.hero-button {
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
    margin: 15px 0 0 0;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.hero-button:hover {
    background-color: #e6f2ff;
    transform: scale(1.05);
}

/* contacts.css - Стили только для страницы контактов */

/* Секция контактов */
.section-title-white {
    color: var(--primary-blue);
    font-size: 54px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.contacts-section {
    text-align: center;
}

.city-select-title {
    font-size: 28px;
    color: var(--primary-blue);
    margin: 20px 0;
}

.city-search {
    margin: 30px auto;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.city-list {
    margin-top: 30px;
}

.city-list ul {
    list-style: none;
    columns: 3;
    column-gap: 30px;
    padding: 0;
}

.city-list li {
    padding: 10px 0;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.city-list li:hover {
    color: var(--primary-blue);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .city-list ul {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .city-list ul {
        columns: 1;
    }

    .city-select-title {
        font-size: 24px;
    }

    .search-input {
        padding: 12px 15px;
    }
}
