/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
}

.site-header {
    background-color: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    color: #4CAF50 !important;
}

.nav-link {
    color: #fff !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #4CAF50 !important;
}

/* Hero section */
.hero-section {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-section h1 {
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
/* Стиль для кнопок стран */
.btn-country {
    background-color: rgba(76, 175, 80, 0.9);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-country:hover {
    background-color: rgba(62, 142, 65, 0.9);
    transform: translateY(-2px);
}

/* Стиль для заголовков стран */
.country-cities h3 {
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Список городов в спойлере */
.city-list {
    display: grid;
    gap: 0.5rem;
}

/* Choose city section with image background */
.choose-city-section {
    background-image: url('/assets/images/4759230.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6rem 0;
}

.choose-city-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* City buttons */
.city-btn {
    background-color: rgba(76, 175, 80, 0.9);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.city-btn:hover {
    background-color: rgba(62, 142, 65, 0.9);
    transform: translateY(-2px);
}

/* Grid layout for cities */
.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

/* Facts section */
.facts-section {
    background-color: #1a1a1a;
    margin-top: -50px;
}

.facts-section h2,
.facts-section p,
.facts-section .card-title {
    color: #fff !important;
}

.card {
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
    margin-top: 50px;
}
