/* ==========================================
   GOOGLE FONT
========================================== */

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    color: #fff;
    background: url("images/bg.png") center center no-repeat;
    background-size: cover;

}

.overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .20),
            rgba(0, 0, 0, .55)),
        radial-gradient(circle at center,
            rgba(118, 3, 28, .18),
            rgba(0, 0, 0, .25));

    backdrop-filter: blur(2px);

    z-index: 1;
}

#particles-js {

    position: absolute;
    inset: 0;

    z-index: 2;
}

/* ==========================================
   LOADER
========================================== */

#loader {

    position: fixed;
    inset: 0;

    background: #76031c;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    transition: .8s ease;
}

.loader-content {

    text-align: center;
}

.loader-circle {

    width: 80px;
    height: 80px;

    border-radius: 50%;

    border: 4px solid rgba(255, 255, 255, .15);
    border-top-color: #D8B07A;

    margin: 0 auto 30px;

    animation: spin 1s linear infinite;
}

@keyframes spin {

    to {
        transform: rotate(360deg);
    }

}

.loader-content h1 {

    font-size: 34px;
    font-weight: 700;
    letter-spacing: 3px;
}

.loader-content p {

    margin-top: 15px;
    opacity: .75;
}

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

header {

    position: absolute;

    top: 35px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 20;
}

.logo {

    width: 95px;

    transition: .35s ease;
}

.logo:hover {

    transform: scale(1.05);
}

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

.hero {

    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 120px 20px 70px;

    position: relative;
    z-index: 10;
}

.content {

    width: 100%;
    max-width: 900px;

    text-align: center;

    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {

    from {

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

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

/* ==========================================
   LABEL
========================================== */

.coming-label {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    margin-bottom: 25px;

    border: 1px solid rgba(255, 255, 255, .15);

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(10px);

    color: #D8B07A;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 2px;

    text-transform: uppercase;
}

/* ==========================================
   TITLE
========================================== */

.title {

    font-size: clamp(3rem, 8vw, 5.8rem);

    font-weight: 800;

    letter-spacing: 12px;

    line-height: 1;

    text-transform: uppercase;

    margin-bottom: 18px;

    text-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

.subtitle {

    max-width: 650px;

    margin: 0 auto 55px;

    font-size: 18px;

    line-height: 1.7;

    color: rgba(255, 255, 255, .9);
}

/* ==========================================
   COUNTDOWN
========================================== */

#countdown {

    display: grid;

    grid-template-columns: repeat(4, 120px);

    justify-content: center;

    gap: 22px;

    margin-bottom: 55px;
}

.box {

    position: relative;

    overflow: hidden;

    width: 120px;
    height: 120px;

    border-radius: 22px;

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

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(15px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);

    transition: .35s ease;
}

.box::before {

    content: "";

    position: absolute;

    top: -100%;
    left: -40%;

    width: 50%;
    height: 300%;

    background: rgba(255, 255, 255, .18);

    transform: rotate(25deg);

    transition: .8s;
}

.box:hover::before {

    left: 150%;
}

.box:hover {

    transform: translateY(-8px);

    border-color: #D8B07A;

    box-shadow: 0 20px 45px rgba(216, 176, 122, .25);
}

.box span {

    font-size: 42px;

    font-weight: 700;
}

.box small {

    margin-top: 8px;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 2px;

    color: #ddd;
}

/* ==========================================
   SOCIALS
========================================== */

.socials {

    display: flex;

    justify-content: center;

    gap: 18px;

    margin-top: 20px;
}

.socials a {

    width: 52px;
    height: 52px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    font-size: 20px;

    background: rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    transition: .35s ease;
}

.socials a:hover {

    background: #D8B07A;

    color: #76031c;

    transform: translateY(-6px);
}

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

@media(max-width:900px) {

    #countdown {

        grid-template-columns: repeat(2, 110px);
    }

    .box {

        width: 110px;
        height: 110px;
    }

    .box span {

        font-size: 34px;
    }

    .logo {

        width: 80px;
    }

}

@media(max-width:600px) {

    .title {

        font-size: 2.7rem;

        letter-spacing: 5px;
    }

    .subtitle {

        width: 90%;

        font-size: 16px;

        margin-bottom: 40px;
    }

    #countdown {

        grid-template-columns: repeat(2, 95px);

        gap: 15px;
    }

    .box {

        width: 95px;
        height: 95px;
    }

    .box span {

        font-size: 28px;
    }

    .box small {

        font-size: 11px;
    }

    .socials {

        gap: 12px;
    }

    .socials a {

        width: 45px;
        height: 45px;

        font-size: 17px;
    }

    .logo {

        width: 70px;
    }

}