/* General styles for the Featured Stays section */
.featured-stay-card {
    border: none;
    border-radius: 10px; /* Slightly increased border radius for a softer look */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); /* Softer shadow */
    background: white;
}

.featured-stay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12); /* Deeper shadow on hover for a lifting effect */
}

/* General styles for the Featured Stays carousel images */
.featured-stays-carousel .carousel-inner img {
    width: 100%;
    height: 250px; /* Increased height for better image display */
    object-fit: cover; /* Ensure images cover the area well without stretching */
}

.card-body {
    padding: 25px; /* More padding for a spacious feel */
}

.card-title {
    font-size: 1.3rem; /* Slightly larger font size */
    color: #333;
    margin-bottom: 8px; /* Adjusted spacing for visual balance */
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px; /* Adjusted space before the button */
}

.btn-light {
    background-color: #ffffff;
    border: 1px solid #cccccc; /* Define border to emphasize button */
    color: #333;
    padding: 12px 24px; /* More generous padding for a better touch area */
    border-radius: 8px; /* More pronounced rounded corners */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-light:hover {
    background-color: #f0f0f0; /* Light grey for hover state */
    color: #212529;
    text-decoration: none; /* Ensure no underline on hover */
}

/* Responsive adjustments for smaller devices */
@media (max-width: 768px) {
    .featured-stays-carousel .carousel-inner img {
        height: 200px; /* Adjust height for medium devices */
    }

    .card-body {
        padding: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    .btn-light {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .featured-stays-carousel .carousel-inner img {
        height: 150px; /* Smaller height for better fit on small screens */
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.8rem;
    }

    .btn-light {
        padding: 8px 16px; /* Smaller padding for smaller devices */
    }
}
