/* Hotel Section */
.hotel-section {
    padding: 60px 20px;
    background-color: #f4f6f9;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #1e3a8a;
}

.hotel-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.hotel-card {
    background: #ffffff;
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-info {
    padding: 15px;
}

.hotel-info h3 {
    margin-bottom: 10px;
    color: #1e3a8a;
}

.hotel-info p {
    margin-bottom: 8px;
    color: #555;
}

.price {
    font-weight: bold;
    color: #16a34a;
    font-size: 18px;
}

.book-btn {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background-color: #0f2a6b;
}

/* Home button at lower middle */
.home-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.home-btn {
    padding: 10px 20px;
    background-color: #1e3a8a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.2s ease;
}

.home-btn:hover {
    background-color: #0f2a6b;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hotel-container {
        flex-direction: column;
        align-items: center;
    }
}
