/* =========================
   GOOGLE FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

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

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Open Sans', sans-serif;
    background: #0f172a;
    color: #ffffff;
    overflow-x: hidden;
}

/* SMOOTH SELECTION */

::selection{
    background: #d4af37;
    color: #000;
}

img{
    max-width: 100%;
    display: block;
}

.container{
    width: 90%;
    max-width: 1320px;
    margin: auto;
}
/* =========================
   GOOGLE FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

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

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

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Open Sans', sans-serif;
    background: #0f172a;
    color: #ffffff;
    overflow-x: hidden;
}

/* SMOOTH SELECTION */

::selection{
    background: #d4af37;
    color: #000;
}

img{
    max-width: 100%;
    display: block;
}

.container{
    width: 90%;
    max-width: 1320px;
    margin: auto;
}

/* =========================
   HEADER
========================= */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition: 0.4s ease;
}

/* OPTIONAL SCROLL EFFECT */

header.scrolled{
    background: rgba(10, 15, 30, 0.88);
    padding: 2px 0;
}

.header-container{
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 90px;
}

/* =========================
   LOGO
========================= */

.logo{
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-image{
    width: 58px;
    height: 58px;
    object-fit: cover;

    border-radius: 50%;
    border: 2px solid #d4af37;

    box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.logo-text{
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;

    letter-spacing: 1px;
    line-height: 1.3;
}

/* =========================
   NAVIGATION
========================= */

nav ul{
    display: flex;
    align-items: center;
    gap: 35px;

    list-style: none;
}

nav ul li{
    position: relative;
}

nav ul li a{
    position: relative;

    text-decoration: none;
    color: #fff;

    font-size: 15px;
    font-weight: 600;

    transition: 0.35s ease;
}

/* NAV HOVER LINE */

nav ul li a::after{
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0%;
    height: 2px;

    background: #d4af37;

    transition: 0.4s ease;
}

nav ul li a:hover{
    color: #d4af37;
}

nav ul li a:hover::after{
    width: 100%;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu{
    position: absolute;
    top: 55px;
    left: 0;

    width: 300px;

    background: rgba(10, 15, 30, 0.96);
    backdrop-filter: blur(14px);

    border-radius: 18px;

    padding: 15px 0;

    border: 1px solid rgba(255,255,255,0.08);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: 0.45s ease;
}

.dropdown:hover .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li{
    width: 100%;
}

.dropdown-menu li a{
    display: block;

    padding: 14px 24px;

    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.dropdown-menu li a:hover{
    background: rgba(212,175,55,0.08);
    color: #d4af37;
}

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

.mobile-menu-btn{
    display: none;

    background: none;
    border: none;

    color: #fff;

    font-size: 28px;
    cursor: pointer;
}

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

.hero{
    position: relative;

    width: 100%;
    height: 100vh;

    overflow: hidden;
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider{
    width: 100%;
    height: 100%;

    position: relative;
}

/* EACH SLIDE */

.slide{
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition: opacity 1.6s ease;
}

.slide.active{
    opacity: 1;
    visibility: visible;
}

/* =========================
   IMAGE
========================= */

.slide-image{
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.15);

    animation: zoomHero 10s linear infinite;
}

/* =========================
   OVERLAY
========================= */

.hero-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.2)
    );

    z-index: 1;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
    position: relative;
    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 760px;

    padding-left: 8%;

    color: white;

    opacity: 0;
    transform: translateY(70px);

    transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.slide.active .hero-content{
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   TAG
========================= */

.hero-tag{
    width: fit-content;

    padding: 12px 24px;

    margin-bottom: 28px;

    border-radius: 50px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(12px);

    color: #f5e6a7;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================
   HERO HEADING
========================= */

.hero h1{
    font-family: 'Poppins', sans-serif;

    font-size: 82px;
    line-height: 1.08;

    margin-bottom: 28px;

    font-weight: 800;

    text-shadow: 0 5px 20px rgba(0,0,0,0.35);
}

/* =========================
   HERO PARAGRAPH
========================= */

.hero p{
    font-size: 10px;
    line-height: 1;

    color: rgba(255,255,255,0.85);

    max-width: 680px;

    margin-bottom: 42px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
    display: flex;
    align-items: center;
    gap: 20px;

    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    padding: 18px 38px;

    border-radius: 60px;

    font-weight: 700;
    font-size: 15px;

    transition: 0.4s ease;
}

/* PRIMARY */

.btn-primary{
    background: #d4af37;
    color: #111827;

    box-shadow: 0 10px 35px rgba(212,175,55,0.35);
}

.btn-primary:hover{
    transform: translateY(-5px);

    background: #fff;

    box-shadow: 0 15px 45px rgba(255,255,255,0.15);
}

/* SECONDARY */

.btn-secondary{
    border: 1px solid rgba(255,255,255,0.2);

    background: goldenrod;

    backdrop-filter: blur(10px);

    color: white;
}

.btn-secondary:hover{
    background: white;
    color: #111827;

    transform: translateY(-5px);
}

/* =========================
   HERO BOTTOM GRADIENT
========================= */

.hero::after{
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 180px;

    background: linear-gradient(
        to top,
        #0f172a,
        transparent
    );

    z-index: 5;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes zoomHero{

    0%{
        transform: scale(1.15);
    }

    100%{
        transform: scale(1);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 1200px){

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

@media(max-width: 992px){

    /* MOBILE NAV */

    .mobile-menu-btn{
        display: block;
    }

    nav{
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: rgba(10,15,30,0.98);

        padding: 30px;

        display: none;

        border-top: 1px solid rgba(255,255,255,0.08);
    }

    nav.active{
        display: block;
    }

    nav ul{
        flex-direction: column;
        align-items: flex-start;

        gap: 24px;
    }

    .dropdown-menu{
        position: relative;

        top: 12px;

        width: 100%;

        opacity: 1;
        visibility: visible;

        transform: none;

        display: none;
    }

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

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

    .hero-content{
        padding-left: 6%;
    }
}

@media(max-width: 768px){

    .hero{
        height: 100vh;
    }

    .hero-content{
        padding: 0 5%;
        max-width: 100%;
    }

    .hero-tag{
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero h1{
        font-size: 42px;
        line-height: 1.2;
    }

    .hero p{
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-secondary{
        width: 100%;
    }

    .logo-text{
        font-size: 14px;
    }

    .logo-image{
        width: 50px;
        height: 50px;
    }
}

@media(max-width: 480px){

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

    .hero p{
        font-size: 14px;
    }

    .header-container{
        min-height: 80px;
    }
}