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

.travel-main-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 32px;
}

.travel-countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.travel-country-card {
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.travel-country-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.travel-country-image {
    height: 200px;
    overflow: hidden;
}

.travel-country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.travel-country-card:hover .travel-country-image img {
    transform: scale(1.05);
}

.travel-country-content {
    padding: 20px;
}

.travel-country-name {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #2c3e50;
}

.travel-country-description {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .travel-countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .travel-countries-grid {
        grid-template-columns: 1fr;
    }

    .travel-main-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}


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

.travel-country-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.travel-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.travel-hotel-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.travel-hotel-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.travel-hotel-image {
    height: 200px;
    overflow: hidden;
}

.travel-hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.travel-hotel-card:hover .travel-hotel-image img {
    transform: scale(1.05);
}

.travel-hotel-header {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.travel-hotel-name {
    flex: 2;
}

.travel-hotel-name h2 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #222;
}

.travel-hotel-country {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.travel-hotel-stars {
    flex: 1;
    text-align: right;
    color: #ffb400;
    font-size: 18px;
    line-height: 1.4;
}

.travel-hotel-description {
    padding: 15px;
    flex-grow: 1;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.travel-hotel-action {
    padding: 15px;
    margin-top: auto; /* Прижимаем к низу карточки */
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: center;
}

.travel-hotel-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 25px; /* Закруглённые углы */
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 200px;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.travel-hotel-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .travel-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .travel-hotels-grid {
        grid-template-columns: 1fr;
    }
}
