/* Общие стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    line-height: 1.6;
    background:beige;
    color: #333;
}

/* Шапка с видом Омска */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/04/Железнодорожный_вокзал_Омска.jpg/960px-Железнодорожный_вокзал_Омска.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Навигация */
.main-menu {
    background: #004a99;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-menu a {
    display: block;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.main-menu a:hover {
    background: #003366;
}

.main-menu .highlight {
    background: #e67e22;
    font-weight: bold;
}

/* Футер */
footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

footer a {
    color: #3498db;
    text-decoration: none;
}


/* Стили для секции "О нас" */


#about {
    /* Цвет фона: можно использовать HEX, RGB или название */
    background-color: #f9f9f9;

    /* Добавляем отступы, чтобы текст не "прилипал" к границам фона */
    padding: 40px;

    /* Чтобы блок не растягивался на весь экран, а был по центру */
    max-width: 800px;
    margin: 20px auto;

    /* Легкая тень для объема */
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}


/* Общие стили для секций контента */
#about, #achievements {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Фон специально для "О нас" */
#about {
    background-color: #fdfdfd; /* Почти белый */
    border-bottom: 1px solid #eee;
}

/* Стили для сетки достижений */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #004a99; /* Синий акцент в стиле меню */
}

.card h3 {
    font-size: 2rem;
    color: #004a99;
    margin: 0 0 10px 0;
}



/* Улучшенные стили для О нас */
.highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
    border-left: 5px solid #004a99; /* Синяя полоса слева для акцента */
    padding-left: 20px;
    margin-bottom: 30px;
}

.equipment-list {
    background: #f0f4f8;
    padding: 25px;
    border-radius: 10px;
}

.equipment-list h3 {
    margin-top: 0;
    color: #003366;
}

.equipment-list ul {
    list-style: none; /* Убираем стандартные точки */
    padding: 0;
}

.equipment-list li {
    padding: 10px 0;
    border-bottom: 1px solid #d1d9e0;
    position: relative;
    padding-left: 25px;
}

/* Маленький значок перед пунктами списка */
.equipment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22; /* Оранжевый из вашего меню */
    font-weight: bold;
}

.equipment-list li:last-child {
    border-bottom: none;
}



/* Сетка достижений */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #004a99; /* Синий цвет в тон шапке */
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); /* Эффект всплытия при наведении */
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 2.2rem;
    color: #004a99;
    margin: 10px 0;
}

.card p {
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}



/* Стили Гостевой книги */
.gb-container { max-width: 800px; margin: 40px auto; padding: 20px; }
.back-link { text-decoration: none; color: #004a99; font-weight: bold; display: block; margin-bottom: 20px; }

.gb-form { background: #f4f4f4; padding: 20px; border-radius: 8px; margin-bottom: 40px; }
.msg-block { border-left: 4px solid #004a99; background: #fff; padding: 15px; margin-bottom: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.msg-block.hidden { opacity: 0.5; background: #f9f9f9; }

.msg-info { font-size: 0.85rem; color: #777; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
.msg-name { font-weight: bold; color: #004a99; }
.status-badge { background: #e74c3c; color: white; padding: 2px 6px; border-radius: 3px; font-size: 0.7rem; }

.more-link { color: #e67e22; text-decoration: none; border-bottom: 1px dashed; margin-left: 5px; cursor: pointer; }

.admin-answer {
    margin-top: 15px; margin-left: 20px; padding: 12px;
    background: #f0f7ff; border-left: 3px solid #e67e22; font-size: 0.95rem;
}
.admin-answer strong { color: #e67e22; display: block; margin-bottom: 5px; }

.reply-form textarea { width: 100%; height: 60px; margin-top: 10px; padding: 10px; box-sizing: border-box; }
.reply-form button { background: #27ae60; color: white; border: none; padding: 5px 15px; cursor: pointer; margin-top: 5px; border-radius: 4px; }

.pagination { margin: 30px 0; text-align: center; display: flex; justify-content: center; gap: 5px; }
.pagination a { text-decoration: none; color: #004a99; padding: 8px 16px; border: 1px solid #ddd; border-radius: 4px; }
.pagination a.active { background: #004a99; color: white; }

.admin-login-block { margin-top: 50px; padding: 15px; border-top: 1px solid #ddd; font-size: 0.8rem; }
