﻿body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    
}

/* --- Header --- */
.navbar {
    background-color: #fff !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link.profile-icon {
    font-size: 1.5rem;
    color: #333;
}

.nav-link {
    font-weight: 500;
}

/* --- Hero Section --- */
.hero-section {
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    padding: 8rem 0;
    position: relative;
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

    .hero-section .container-fluid {
        position: relative;
        z-index: 2;
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* --- Search & Tabs --- */
.search-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.nav-tabs .nav-link {
    color: #555;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
}

    .nav-tabs .nav-link.active {
        color: #000;
        border-bottom-color: #0d6efd;
    }

    .nav-tabs .nav-link i {
        margin-right: 8px;
    }

.search-form {
    position: relative;
}

    .search-form .form-control {
        height: 50px;
        padding-left: 45px;
        border-radius: 30px;
    }

    .search-form .search-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #aaa;
    }

.search-btn {
    border-radius: 30px;
    height: 50px;
    font-weight: 600;
}

/* --- Content Shelves / Carousels --- */
.shelf-section {
    padding: 60px 0;
}

.shelf-title {
    font-weight: 700;
    margin-bottom: 0;
}

.shelf-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    padding-bottom: 15px;
    gap: 1rem;
    scrollbar-width: thin;
}

    .scroll-container::-webkit-scrollbar {
        height: 8px;
    }

    .scroll-container::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
    }

.destination-card {
    min-width: 280px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

    .destination-card:hover {
        transform: translateY(-5px);
    }

    .destination-card img {
        height: 200px;
        object-fit: cover;
    }

    .destination-card .card-body {
        font-weight: 600;
    }

/* --- Footer --- */
.footer {
    background-color: #343a40;
    color: white;
    padding: 40px 0;
}

    .footer h5 {
        color: #fff;
        margin-bottom: 15px;
    }

    .footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer a:hover {
            color: #fff;
        }

    .footer .social-icons a {
        color: white;
        font-size: 1.5rem;
        margin-right: 15px;
    }

.tab-pane .form-control,
.tab-pane .form-select {
    min-height: 45px;
}

.tab-pane .btn {
    height: 45px;
}
