/* =========================
   RESET
========================= */

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

body {
    font-family: Arial, sans-serif;
    color: #1f2937;
    background: #ffffff;
}


/* =========================
   NAVBAR
========================= */

.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #111827;
}


/* MENU */

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #2563eb;
}


/* BOOK NOW BUTTON */

.nav-button {
    display: inline-block;
    text-decoration: none;
    background: #2563eb;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-button:hover {
    background: #1d4ed8;
}


/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    background: #f3f4f6;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 80px 30px;
}

.hero-tag {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 4px;
    color: #2563eb;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 68px;
    line-height: 1.05;
    max-width: 650px;
    margin-bottom: 25px;
    color: #111827;
}

.hero-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 600px;
    color: #4b5563;
    margin-bottom: 30px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: bold;
}

.btn-secondary {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    padding: 14px 24px;
    font-weight: bold;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-button {
        padding: 10px 15px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }
}