        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: var(--dark-color);
        }
        
        .navbar {
            background-color: var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: white !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: white !important;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1529270296466-b09d5f5c2bab?q=80&w=1332&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            margin-bottom: 50px;
        }
        
        .search-box {
            background-color: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-control {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
        }
.featured-hotels {
    padding-bottom: 40px; /* Adds space at the bottom of the section */
}
 .hotel-card {
        transition: all 0.3s ease;
        margin-bottom: 30px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }

.feature-icon {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

    .hotel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .distance-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 3px 8px;
        border-radius: 12px;
        font-size: 0.8rem;
    }
    .btn-map {
        background-color: #34a853;
        color: white;
    }
    .btn-map:hover {
        background-color: #2d8e47;
        color: white;
    }
    .btn-container {
        display: flex;
        gap: 10px;
    }
    .btn-container .btn {
        flex: 1;
    }

/* Add this to your CSS */
#hotelsContainer {
    margin-left: -8px;  /* Counteract column padding */
    margin-right: -8px;
}
#hotelsContainer > [class*="col-"] {
    padding-left: 8px;  /* Add spacing between columns */
    padding-right: 8px;
}
        
        footer {
            background-color: var(--secondary-color);
            color: white;
            padding: 30px 0;
            /*margin-top: 50px;*/
        }
        
        .city-selector {
            margin-bottom: 30px;
        }
        
        .no-hotels {
            text-align: center;
            padding: 50px;
            color: #7f8c8d;
        }
