/* ===================================
   RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================
   CONTAINER
=================================== */

.container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

/* ===================================
   HEADER
=================================== */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#081120;
    z-index:9999;
}

.header .container{
    height:110px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ===================================
   LOGO
=================================== */

.logo img{
    height:110px;
    width:auto;
}

/* ===================================
   NAVIGATION
=================================== */

.navbar{
    margin-left:auto;
}

.navbar > ul{
    display:flex;
    align-items:center;
    gap:40px;
}

.navbar > ul > li{
    position:relative;
}

.navbar a{
    color:#fff;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover{
    color:#c8a45d;
}

/* ===================================
   BOOK BUTTON
=================================== */

.book-btn{
    background:#c8a45d;
    color:#fff !important;
    padding:15px 40px;
    border-radius:50px;
}

.book-btn:hover{
    background:#b79248;
}

/* ===================================
   DROPDOWN
=================================== */

.dropdown{
    position:relative;
}

.dropdown > a{
    position:relative;
}

.dropdown:hover > a{
    color:#c8a45d;
}

.dropdown:hover > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:100%;
    height:2px;
    background:#c8a45d;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:320px;

    background:#081120;

    display:none;

    padding:15px 0;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

    z-index:9999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu a{
    display:block;
    padding:14px 25px;
    font-size:17px;
    color:#fff;
}

.dropdown-menu a:hover{
    background:#10203d;
    color:#c8a45d;
}

/* ===================================
   MOBILE MENU BUTTON
=================================== */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

/* ===================================
   HERO SECTION
=================================== */

.hero{
    margin-top:110px;

    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.60),
        rgba(0,0,0,.60)
    ),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1920&q=80');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-container{
    width:100%;
    max-width:1400px;
    margin:auto;

    padding:0 40px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;
}

.hero-left{
    flex:1;
    color:#fff;
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
}

.hero-left p{
    font-size:24px;
    margin-bottom:30px;
}

.btn-gold{
    display:inline-block;
    background:#c8a45d;
    color:#fff;
    padding:18px 45px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.btn-gold:hover{
    background:#b79248;
}

/* ===================================
   HERO FORM
=================================== */

.hero-form{
    width:480px;

    background:#081120;

    padding:30px;

    border-radius:15px;

    box-shadow:0 20px 50px rgba(0,0,0,.40);
}

.hero-form h3{
    color:#fff;
    text-align:center;
    margin-bottom:20px;
    font-size:22px;
}

.hero-form form{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.hero-form input,
.hero-form select{
    width:100%;
    height:52px;

    border:none;

    border-radius:8px;

    padding:0 15px;

    font-size:15px;
}

.hero-form button{
    height:55px;

    border:none;

    border-radius:8px;

    background:#c8a45d;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.hero-form button:hover{
    background:#b79248;
}

/* ===================================
   SECTION
=================================== */

.section{
    padding:100px 0;
}

.section h2,
.section h3{
    font-size:42px;
    margin-bottom:20px;
}

.section p{
    font-size:18px;
    line-height:1.8;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;

        position:absolute;

        top:110px;
        left:0;

        width:100%;

        background:#081120;
    }

    .navbar.active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        gap:0;
        align-items:flex-start;
    }

    .navbar li{
        width:100%;
    }

    .navbar a{
        display:block;
        width:100%;
        padding:15px 25px;
    }

    .dropdown-menu{
        position:static;
        min-width:100%;
        display:none;
        box-shadow:none;
        padding:0;
    }

    .dropdown:hover .dropdown-menu{
        display:block;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        padding:60px 20px;
    }

    .hero-left h1{
        font-size:50px;
    }

    .hero-left p{
        font-size:20px;
    }

    .hero-form{
        width:100%;
        max-width:550px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:767px){

    .container{
        padding:0 20px;
    }

    .header .container{
        height:85px;
    }

    .logo img{
        height:70px;
    }

    .navbar{
        top:85px;
    }

    .hero{
        margin-top:85px;
    }

    .hero-left h1{
        font-size:38px;
    }

    .hero-left p{
        font-size:18px;
    }

    .btn-gold{
        padding:15px 30px;
        font-size:16px;
    }

    .hero-form{
        padding:20px;
    }
}