:root {

    --bg: #050505;
    --bg2: #0b0b0b;

    --gold: #d4af37;
    --gold-light: #f0d87a;

    --white: #ffffff;
    --text: #d8d8d8;
    --grey: #9a9a9a;
    --dark-grey: #555555;

    --border: rgba(212,175,55,0.18);

    --container: 1280px;
    --container-small: 840px;
}

/* ==========================
   RESET
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;

    background: var(--bg);

    color: var(--white);

    font-family:
            Inter,
            -apple-system,
            BlinkMacSystemFont,
            "Segoe UI",
            sans-serif;

    line-height: 1.7;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/* ==========================
   BACKGROUND EFFECT
========================== */

body::after {

    content: "";

    position: fixed;

    inset: 0;

    z-index: -1;

    background-image:
            radial-gradient(
                    rgba(255,255,255,0.12) 1px,
                    transparent 1px
            );

    background-size: 90px 90px;

    opacity: .04;

    pointer-events: none;

    animation: particlesDrift 40s linear infinite;
}

/* ==========================
   CONTAINERS
========================== */

.container {

    width: 100%;

    max-width: var(--container);

    margin: auto;

    padding-left: 40px;
    padding-right: 40px;
}

.container-small {

    width: 100%;

    max-width: var(--container-small);

    margin: auto;

    padding-left: 40px;
    padding-right: 40px;
}

/* ==========================
   HEADER
========================== */

.header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background:
            rgba(5,5,5,.78);

    backdrop-filter:
            blur(18px);

    border-bottom:
            1px solid rgba(255,255,255,.05);

    transition: .3s ease;
}

.header.scrolled {

    background:
            rgba(5,5,5,.92);

    border-bottom:
            1px solid rgba(212,175,55,.15);
}

.header-container {

    min-height: 88px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* ==========================
   LOGO
========================== */

.logo-title {

    font-size: 1.15rem;

    font-weight: 800;

    letter-spacing: 5px;
}

.logo-subtitle {

    margin-top: 3px;

    color: var(--grey);

    font-size: .78rem;
}

/* ==========================
   MENU
========================== */

.menu {

    display: flex;

    align-items: center;

    gap: 28px;
}

.menu a {

    color: var(--grey);

    font-size: .92rem;

    transition: .25s;
}

.menu a:hover {

    color: var(--gold);
}

/* ==========================
   LANGUAGE
========================== */

.header-actions {

    display: flex;
    align-items: center;

    gap: 12px;
}

.language-dropdown {
    position: relative;
}

.language-current {

    height: 42px;

    display: flex;
    align-items: center;
    gap: 8px;

    background: transparent;

    color: white;

    border:
            1px solid rgba(255,255,255,.18);

    border-radius: 10px;

    padding: 4px 10px;

    cursor: pointer;
}

.language-current img,
.language-option img {

    width: 26px;
    height: 18px;

    object-fit: cover;

    border-radius: 3px;
}

.language-menu {

    display: none;

    position: absolute;

    top: 50px;
    right: 0;

    min-width: 150px;

    background: #080808;

    border:
            1px solid rgba(212,175,55,.25);

    border-radius: 12px;

    padding: 8px;

    z-index: 1001;
}

.language-dropdown.open .language-menu {
    display: block;
}

.language-option {

    width: 100%;

    display: flex;
    align-items: center;
    gap: 8px;

    background: transparent;

    color: white;

    border: 0;

    border-radius: 8px;

    padding: 9px 10px;

    cursor: pointer;
}

.language-option:hover,
.language-option.active {

    background:
            rgba(212,175,55,.12);
}

/* ==========================
   MOBILE MENU
========================== */

.menu-mobile-button {

    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    color: white;

    border:
            1px solid rgba(255,255,255,.18);

    border-radius: 10px;

    font-size: 1.4rem;

    cursor: pointer;
}

.mobile-menu {

    display: none;

    position: fixed;

    top: 88px;
    left: 0;
    right: 0;

    background: #090909;

    border-bottom:
            1px solid var(--border);

    z-index: 999;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {

    display: block;

    padding: 18px 28px;

    border-top:
            1px solid rgba(255,255,255,.06);
}

/* ==========================
   BUTTONS
========================== */

.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 30px;

    border-radius: 999px;

    font-weight: 700;

    transition: .3s ease;
}

.btn-primary {

    background: var(--gold);

    color: #000;
}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow:
            0 18px 45px rgba(212,175,55,.22);
}

.btn-secondary {

    color: white;

    border:
            1px solid rgba(255,255,255,.22);
}

.btn-secondary:hover {

    color: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);
}

/* ==========================
   SECTIONS
========================== */

.section {

    padding-top: 140px;
    padding-bottom: 140px;
}

.section-tag {

    margin-bottom: 20px;

    color: var(--gold);

    letter-spacing: 3px;

    font-size: .8rem;

    font-weight: 700;

    text-transform: uppercase;
}

.section h2 {

    margin-bottom: 30px;

    font-size:
            clamp(
                    2.2rem,
                    4.8vw,
                    4.8rem
            );

    line-height: 1.05;

    letter-spacing: -.04em;
}

.section p {

    margin-bottom: 20px;

    color: var(--text);

    font-size: 1.1rem;
}

.section-intro {

    color: white !important;

    font-size: 1.32rem !important;
}

/* ==========================
   FORMS
========================== */

form button {

    min-height: 54px;

    padding: 0 32px;

    background: var(--gold);

    color: black;

    border: 0;

    border-radius: 999px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s ease;
}

form button:hover {

    transform: translateY(-3px);

    box-shadow:
            0 18px 45px rgba(212,175,55,.22);
}

/* ==========================
   FOOTER
========================== */

.footer {

    padding: 80px 20px;

    text-align: center;

    background: #050505;

    border-top:
            1px solid rgba(255,255,255,.06);
}

.footer-title {

    margin-bottom: 8px;

    letter-spacing: 5px;

    font-weight: 800;
}

.footer-subtitle {

    margin-bottom: 25px;

    color: var(--grey);
}

.footer-links {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 22px;

    margin-bottom: 25px;
}

.footer-links a {

    color: var(--grey);

    transition: .25s;
}

.footer-links a:hover {

    color: var(--gold);
}

.footer-copy {

    color: var(--dark-grey);

    font-size: .9rem;
}

/* ==========================
   REVEAL
========================== */

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition:
            opacity .8s ease,
            transform .8s ease;
}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes particlesDrift {

    from {
        transform: translate3d(0,0,0);
    }

    to {
        transform: translate3d(-90px,-90px,0);
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1180px) {

    .menu {
        gap: 18px;
    }
}

@media (max-width: 900px) {

    .menu {
        display: none;
    }

    .menu-mobile-button {

        display: inline-flex;

        align-items: center;
        justify-content: center;
    }

    .section {

        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {

    .container,
    .container-small {

        padding-left: 24px;
        padding-right: 24px;
    }

    .language-current span {
        display: none;
    }

    body::after {
        opacity: .03;
    }
}