/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ffffff;
}

/* ===========================
   HEADER
=========================== */
header {
    width: 100%;
    max-width: 1200px;
    padding: 15px 40px;
    background: #ffffff;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

header:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 140px;
    transition: transform 0.3s;
}

.logo-icon:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 17px;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: gold;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons i {
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.header-icons i:hover {
    color: gold;
}

/* ===========================
   HAMBURGER MENU
=========================== */
.menu-toggle {
    display: none; /* hidden on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 35px;
    height: 25px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: black; /* black hamburger */
    border-radius: 2px;
    transition: 0.4s;
}

/* Hamburger animation when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   MOBILE MENU
=========================== */
@media (max-width: 850px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding-top: 120px;
        gap: 30px;
        text-align: center;
        transition: right 0.4s ease;
        z-index: 998;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    }

    nav ul.active {
        right: 0;
    }

    .menu-toggle {
        display: flex; /* show hamburger on mobile */
        align-items: center;
        justify-content: center;
    }

    .header-icons {
        display: none; /* hide icons on mobile */
    }
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5); /* black overlay */
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 400;
}

/* ===========================
   GOLD BUTTON
=========================== */
button.gold-btn {
    padding: 15px 40px;
    border: 2px solid gold;
    background: transparent;
    color: gold;
    font-size: 18px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button.gold-btn:hover {
    background: gold;
    color: #000;
    transform: scale(1.05);
}

/* ===========================
   FOOTER
=========================== */
footer {
    background: #001f3f;
    color: white;
    padding: 40px 30px;
    text-align: center;
}

/* ===========================
   RESPONSIVE HERO TEXT
=========================== */
@media (max-width: 768px) {
    .hero h1 { font-size: 50px; }
    .hero p { font-size: 18px; }
    button.gold-btn { padding: 12px 30px; font-size: 16px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 35px; }
    .hero p { font-size: 16px; }
    button.gold-btn { padding: 10px 25px; font-size: 14px; }
}
