/* frontend/assets/css/style.css */
body {
    font-family: 'Nunito', sans-serif;
    color: #333;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.search-box {
    background: white;
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.search-box input {
    border: none;
    box-shadow: none !important;
    font-size: 1.1rem;
}

.search-box .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

.section-title {
    font-weight: 800;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.dest-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.dest-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.place-card {
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.2s;
}
.place-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13,110,253,0.1);
}
