/* ===================================================
   HOME.CSS — Landing / Hero Section Styles
   =================================================== */

@font-face {
    font-family: 'Outfit';
    src: url('../Assets/Fonts/Outfit-fonts/Outfit-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease;
}

/* Scrolled state */
.navbar--scrolled {
    background: #000;
}

.navbar--scrolled .navbar__link {
    color: rgba(255, 255, 255, 0.6);
}

.navbar--scrolled .navbar__link:hover,
.navbar--scrolled .navbar__link.active {
    color: #fff;
}

.navbar--scrolled .navbar__menu-btn span {
    background: #fff;
}

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar__links {
    display: flex;
    gap: 2.5rem;
}

.navbar__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.navbar__link:hover,
.navbar__link.active {
    color: #fff;
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

/* Mobile menu button */
.navbar__menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 3rem;
    overflow: hidden;
    background: url('../Assets/Images/Home_wallpaper.jpg') center center / cover no-repeat;
}

/* Dark overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-top: 8rem;
}

/* Badge */
.hero__badge {
    display: inline-block;
    width: fit-content;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0.55rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Headlines */
.hero__headlines {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2rem;
}

.hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.hero__title--white {
    color: #ffffff;
}

.hero__title--accent {
    color: rgba(255, 255, 255, 0.35);
}

.hero__title--gray {
    color: #ffffff;
}

/* Subtitle */
.hero__subtitle {
    max-width: 420px;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* ---------- Wave Divider ---------- */
.hero__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    line-height: 0;
}

.hero__wave svg {
    display: block;
    width: 100%;
    height: 140px;
}

/* ---------- Bottom Bar ---------- */
.hero__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__bottom-brand {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero__bottom-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.02em;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease, gap 0.3s ease;
}

.hero__cta:hover {
    color: #fff;
    gap: 0.75rem;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .navbar {
        padding: 1.25rem 2rem;
    }

    .hero {
        padding: 0 2rem;
    }

    .hero__title {
        font-size: clamp(3rem, 9vw, 7rem);
    }

    .hero__wave svg {
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        padding: 1.25rem 1.5rem;
    }

    .navbar__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        background: rgba(0, 0, 0, 0.97);
        backdrop-filter: blur(20px);
        transition: right 0.4s ease;
    }

    .navbar__links.open {
        right: 0;
    }

    .navbar__links .navbar__link {
        font-size: 1rem;
    }

    .navbar__menu-btn {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 0 1.5rem;
    }

    .hero__container {
        padding-top: 7rem;
    }

    .hero__badge {
        font-size: 0.65rem;
        padding: 0.45rem 1rem;
        margin-bottom: 2rem;
    }

    .hero__title {
        font-size: clamp(2.5rem, 14vw, 5rem);
    }

    .hero__subtitle {
        font-size: 0.875rem;
        max-width: 100%;
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem 0 2rem;
    }

    .hero__wave svg {
        height: 60px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero__title {
        font-size: clamp(2rem, 13vw, 3.5rem);
    }
}
