/* ===== Base ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
}

/* ===== Navbar ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a2e;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    color: #fff;
    font-size: 3vw;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 1.5vw;
}

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

/* ===== Dropdown ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 160px;
    z-index: 200;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    text-align: center;
    padding: 80px 5%;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
    color: #ccc;
}

.btn-primary {
    background: #e94560;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 2vw;
    display: inline-block;
}

.btn-primary:hover {
    background: #c73652;
}

/* ===== Container (percentage width) ===== */
.container {
    width: 90%;
    margin: 40px auto;
}

/* ===== Ad Banner ===== */
#ad {
    margin: 20px 0;
    padding: 20px;
    background: orange;
    text-align: center;
    font-size: 2vw;
    font-weight: bold;
    border-radius: 5px;
}

/* ===== Button Group ===== */
.btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
}

.btn-group button {
    padding: 10px 20px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1.5vw;
}

.btn-group button:hover {
    background: #e94560;
}

/* ===== Destinations ===== */
#destinations h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.places {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}

.card h3 {
    margin: 10px 0;
    color: #1a1a2e;
}

.card p {
    font-size: 1.5vw;
    color: #555;
}

/* ===== Card destination images (colored banners, max-width:100%) ===== */
.card-img {
    width: 100%;
    max-width: 100%;
    height: 140px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-img.paris  { background: linear-gradient(135deg, #667eea, #764ba2); }
.card-img.tokyo  { background: linear-gradient(135deg, #f093fb, #f5576c); }
.card-img.dubai  { background: linear-gradient(135deg, #4facfe, #00f2fe); }

/* ===== About Section ===== */
.about-section {
    background: #f9f9f9;
    padding: 40px 5%;
    border-radius: 8px;
}

.about-section h2 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.about-section p {
    font-size: 1.5vw;
    color: #555;
    line-height: 1.6;
}

.stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    text-align: center;
    background: #1a1a2e;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    flex: 1;
}

.stat-box span {
    display: block;
    font-size: 1.5vw;
}

/* ===== Contact Section ===== */
.contact-section h2 {
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.contact-form {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.5vw;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #e94560;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.5vw;
}

.contact-form button:hover {
    background: #c73652;
}

/* ===== Footer ===== */
footer {
    background: #1a1a2e;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 1.5vw;
}

/* ===== Media Queries ===== */
@media screen and (max-width: 768px) {
    .nav-brand {
        font-size: 5vw;
    }

    .nav-links a {
        font-size: 3vw;
    }

    .hero h1 {
        font-size: 8vw;
    }

    .hero p {
        font-size: 4vw;
    }

    .btn-primary {
        font-size: 4vw;
    }

    .places {
        flex-direction: column;
    }

    .card {
        width: 100% !important;
    }

    .card h3 {
        font-size: 5vw;
    }

    .card p {
        font-size: 3.5vw;
    }

    .leftcolumn,
    .rightcolumn {
        width: 100% !important;
        float: none !important;
    }

    .contact-form {
        width: 90%;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form button {
        font-size: 3.5vw;
    }

    #ad {
        font-size: 4vw;
    }

    .btn-group button {
        font-size: 3.5vw;
    }

    footer {
        font-size: 3vw;
    }

    .about-section p {
        font-size: 3.5vw;
    }

    .stat-box span {
        font-size: 3vw;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero {
        padding: 50px 5%;
    }

    .hero h1 {
        font-size: 10vw;
    }

    .hero p {
        font-size: 5vw;
    }

    .stats {
        flex-direction: column;
    }
}
