/* Общие стили для всех страниц */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    color: #333;
}
header {
    position: relative;
    background-image: url('header.png'); /* новый путь к картинке */
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    filter: blur(10px);
    z-index: 0;
}

.breadcrumbs {
    max-width: 1200px;
    margin: 40px auto 20px auto;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #555;
}

.breadcrumbs a {
    color: #28a745;
    text-decoration: none;
    margin-right: 5px;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin-right: 5px;
}

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

h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Стиль для блока приложений */
.app-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.app-item {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.app-item:hover {
    transform: translateY(-10px);
}

.app-item img {

    object-fit: cover;
}

.app-item .content {
    padding: 20px;
}

.app-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.app-item p {
    font-size: 1rem;
    color: #777;
}

.app-item a {
    display: inline-block;
    margin: 15px auto 0 15px;
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.app-item a:hover {
    background-color: #218838;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #28a745;
    text-decoration: none;
    margin-left: 10px;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    color: white;
}

/* Навигация для главной страницы */
.menu {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}
.navigation {
    display: flex;
    gap: 30px;
}
.navigation a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s;
}
.navigation a:hover {
    color: #28a745;
}

.header-content {
    z-index: 1;
}

.header-content h1 {
    margin: 0;
    font-size: 3rem;
    color: white;
}
.header-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: white;
}
