html,
body {
    overflow-x: hidden;
    margin: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, #1b2735, #090a0f);
    color: #cbd5e1;


    -webkit-font-smoothing: antialiased;
}

:root {
    --bg1: #1b2735;
    --glass: rgba(255, 255, 255, 0.05);
    --accent1: #4067a5;
    --accent2: #1f2a3a;
    --muted: #3971cc;
    --card: #111826;
    --glass-2: rgba(255, 255, 255, 0.02);
    --text: #cbd5e1;
}

* {
    box-sizing: border-box
}

header {
    position: relative;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 50%;
    height: 50%;
}

/* Hamburger Menu */
.hamburger {
    width: 32px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 4px;
    width: 100%;
    background: white;
    border-radius: 4px;
    transition: all .4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Fullscreen Menu */
nav.menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .5s ease;
    z-index: 1000;
}

nav.menu.show {
    transform: translateX(0);
}

nav.menu a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: color .3s ease;
}

nav.menu a:hover {
    color: var(--accent2);
}

/* Hero Section */
.hero {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 520px;
    background: var(--glass-2);
    box-shadow: 0 8px 40px rgba(2, 6, 23, 0.6);
    margin-bottom: 40px;
}

.slides {
    display: flex;
    position: absolute;
    inset: 0;
    transition: transform 1s cubic-bezier(.2, .9, .2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 36px;
}

.slide .caption {
    background: linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.7));
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    max-width: 70%;
}

.controls {
    position: absolute;
    top: 50%;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.ctrl-btn {
    pointer-events: auto;
    background: var(--glass);
    border: none;
    padding: 12px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
    cursor: pointer;
    color: white;
}

/* Search Card */
.search-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    max-width: auto;
    margin-inline: auto;
}

.search-card h3 {
    font-family: Playfair Display;
    color: white;
    margin: 0 0 6px;
}

.search-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.search-row input,
.search-row select {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: var(--glass-2);
    color: var(--muted);
}

.btn-primary {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 114, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

@media(max-width:800px) {
    .carousel {
        height: 400px;
    }
}

@media(max-width:640px) {
    .carousel {
        height: 300px;
    }
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    padding: 20px;
    max-width: 1400px;
    margin-inline: auto;
}

.travel-grid .travel-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    height: 340px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.travel-grid .travel-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    transition: opacity 0.3s ease;
}

.travel-grid .travel-card:hover {
    transform: scale(1.03);
}

.travel-grid .travel-card:hover::before {
    opacity: 0.8;
}

.travel-grid .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
}

.travel-grid .caption h2 {
    margin: 0 0 6px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.travel-grid .muted {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.travel-grid .pill {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 6px;
}


.basic {
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto
}

.aeroplane {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}