/* Custom Styles to complement Bootstrap */

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080?text=Hero+Background');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Section Title */
.section-title-places {
    position: relative;
    padding-bottom: 15px;
}

/* .body-section {
    min-height: calc(100vh - 100px);
} */

.section-title-places::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #28a745; /* Bootstrap success color */
}

/* Product Card Hover Effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Carousel Image Height - AUMENTADO PARA 2 CARDS POR FILA */
.carousel-item img {
    height: 400px;
    object-fit: cover;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Carousel Controls for Product Cards */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 10px;
}

/* Custom Carousel Indicators */
.carousel-indicators {
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

/* Footer Social Icons */
.footer .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.footer .social-icons a:hover {
    background-color: #28a745;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }
    
    .carousel-item img {
        height: 300px;
    }
}

/* Custom color for links */
a:hover {
    color: #28a745;
}

/* Custom styling for search results */
.product-card.hidden {
    display: none !important;
}

/* Custom styling for no results message */
#no-results {
    padding: 20px;
    margin: 20px 0;
}

/* Larger navbar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand {
    font-size: 1.8rem;
}

/* Larger card bodies - AUMENTADO PARA 2 CARDS POR FILA */
.card-body {
    padding: 2rem;
}

/* Larger card footer */
.card-footer {
    padding: 1.5rem;
}

/* Larger card title and text for 2 cards per row */
.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    margin-bottom: 1rem;
}

/* Larger buttons for 2 cards per row */
.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}