@font-face{
font-family:'regular';
src:url('https://rarefinds.city/assets/fonts/LiberationSans-Regular.ttf') format('truetype');
}

@font-face{
font-family:'bold';
src:url('https://rarefinds.city/assets/fonts/LiberationSans-Bold.ttf') format('truetype');
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(
            circle at 50% 35%,
            #210052 0%,
            #100027 35%,
            #050008 75%
        );
    color: white;
    min-height: 100vh;
}


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

.navbar {
    height: 85px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(4, 0, 10, 0.35);
    backdrop-filter: blur(15px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.navbar nav {
    display: flex;
    gap: 38px;
}

.navbar nav a,
.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.navbar nav a:hover,
.mobile-menu a:hover {
    color: #f7ad18;
}


/* Mobile menu button */

.menu-btn {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 25px;
    cursor: pointer;
}


/* Mobile menu */

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding: 25px 7%;
    background: #0d001c;
}

.mobile-menu.active {
    display: flex;
}


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

.hero {
    min-height: 645px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 20px 80px;
}

.hero-content {
    width: 100%;
    max-width: 1000px;
}


/* Logo */

.hero-logo {
    width: 185px;
    height: 185px;
    object-fit: contain;
    margin-bottom: 15px;

    filter:
        drop-shadow(0 0 25px rgba(100, 0, 255, 0.25));
}


/* Main heading */

.hero h1 {
    font-size: clamp(50px, 7vw, 82px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1;
}

.tagline {
    margin-top: 18px;
    color: #cfc7d9;
    font-size: 21px;
}


/* =========================
   SEARCH
========================= */

.search-box {
    margin: 42px auto 0;

    width: min(900px, 92%);
    height: 88px;

    display: flex;
    align-items: center;

    padding: 8px 9px 8px 30px;

    background: white;
    border: 3px solid rgba(255,255,255,0.9);

    border-radius: 50px;

    box-shadow:
        0 0 35px rgba(124, 35, 255, 0.25),
        0 15px 40px rgba(0,0,0,0.35);
}

.search-icon {
    font-size: 34px;
    color: #9898a5;
    transform: rotate(-20deg);
}

.search-box input {
    flex: 1;

    height: 100%;

    border: none;
    outline: none;

    padding: 0 18px;

    font-family: inherit;
    font-size: 18px;

    color: #222;
}

.search-box input::placeholder {
    color: #898994;
}


/* Search button */

.search-box button {
    width: 70px;
    height: 70px;

    border: none;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #6325c9,
            #39118b
        );

    color: white;

    font-size: 34px;

    cursor: pointer;

    transition: 0.3s;
}

.search-box button:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 25px rgba(126, 42, 255, 0.6);
}

.search-message {
    margin-top: 18px;
    color: #f7ad18;
    font-size: 14px;
}


/* =========================
   DOWNLOAD
========================= */

.download {
    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    padding: 55px 20px 60px;

    background:
        linear-gradient(
            rgba(8, 0, 20, 0.25),
            rgba(8, 0, 20, 0.55)
        );
}

.download h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.download p {
    color: #bbb3c5;
    margin-bottom: 28px;
}


/* Store buttons */

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    min-width: 220px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 12px 22px;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 9px;

    background: #050505;

    color: white;

    text-decoration: none;

    transition: 0.3s;
}

.store-button:hover {
    transform: translateY(-3px);

    border-color: #f7ad18;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35);
}

.store-icon {
    font-size: 30px;
    color: #4ade80;
}

.apple-icon {
    font-size: 25px;
    color: white;
}

.store-button small {
    display: block;
    text-align: left;
    font-size: 9px;
    color: #ddd;
}

.store-button strong {
    display: block;
    font-size: 18px;
}


/* =========================
   FOOTER
========================= */

footer {
    text-align: center;

    padding: 30px 20px 35px;

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

    background: #030005;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa2b0;
    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: #f7ad18;
}

footer p {
    color: #77717d;
    font-size: 13px;
}


/* =========================
   HIDDEN CONTENT SECTIONS
========================= */

.hidden-section {
    display: none;
}


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

@media (max-width: 800px) {

    .navbar {
        height: 72px;
        padding: 0 6%;
    }

    .navbar nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        min-height: 570px;
        padding-top: 50px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .hero h1 {
        font-size: 55px;
        letter-spacing: -3px;
    }

    .tagline {
        font-size: 17px;
    }

    .search-box {
        height: 70px;
        padding-left: 20px;
    }

    .search-box input {
        font-size: 14px;
        padding: 0 10px;
    }

    .search-box button {
        width: 54px;
        height: 54px;
        font-size: 26px;
    }

    .search-icon {
        font-size: 26px;
    }
}


@media (max-width: 480px) {

    .nav-logo span {
        font-size: 18px;
    }

    .hero {
        min-height: 520px;
        padding-top: 30px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

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

    .search-box {
        width: 96%;
    }

    .search-box input {
        min-width: 0;
    }

    .download {
        padding: 45px 15px;
    }

    .store-button {
        width: 250px;
    }
}