/* Custom Properties for consistency */
:root {
    --primary: #ff5a3d;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.3);
    --text-dark: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f4f7f6;
    color: var(--text-dark);
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.hero {
    height: 100vh;
    background:url('images/123.jpg') no-repeat center/cover;
    padding: 16rem 2rem 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); }

/* Search Bar (Mobile First) */
.search-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    margin-top: 30px;
}

/* Tour Grid - The "Friendly" Layout */
.container { padding: 50px 5%; }

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.tour-card {
    background: white; /* Fallback for older browsers */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tour-card:hover { transform: translateY(-10px); }

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-info { padding: 20px; }

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

/* Responsive Logic */
@media (min-width: 768px) {
    .search-container {
        flex-direction: row;
        border-radius: 50px;
        padding: 10px 30px;
    }
    
    .search-container input, .search-container select {
        border: none;
        background: transparent;
        color: white;
        padding: 10px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Update the card-info for better mobile tapping */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 90, 61, 0.3);
}