/* Umumiy sozlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0d0d0d; /* High-tech qora fon */
    color: #ffffff;
}

/* Asosiy Ekran (Hero Section) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Unsplash'dan vaqtinchalik yuqori sifatli rasm */
    background: url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
}

/* Rasm ustidan qora qoplama (matn yaxshi ko'rinishi uchun) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Navigatsiya menyusi */
.navbar {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #00e5ff; /* Neon ko'k aksent */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00e5ff;
}

.btn-login {
    text-decoration: none;
    padding: 10px 25px;
    border: 1px solid #00e5ff;
    border-radius: 20px;
    color: #00e5ff;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #00e5ff;
    color: #000;
}

/* Markaziy Kontent */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Glassmorphism Qidiruv paneli */
.search-glass-panel {
    background: rgba(255, 255, 255, 0.1); /* Shaffof oq */
    backdrop-filter: blur(15px); /* Oyna effekti */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 900px;
}

.search-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.input-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #e0e0e0;
}

.input-group input, .input-group select {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    outline: none;
}

.btn-search {
    padding: 14px 30px;
    background: linear-gradient(135deg, #00e5ff, #0077ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.4);
}