/* =========================
   GOOGLE FONTS
========================= */

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

/* =========================
   NIGHTANGELS ? GLOBAL.CSS
   Fondation universelle
========================= */

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

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

/* =========================
   ROOT VARIABLES
========================= */

:root{

    --accent-color:#ffffff;

    --header-bg:
    rgba(0,0,0,0.35);

    --header-border:
    rgba(255,255,255,0.08);

    --global-bg:#000000;

    --global-text:#ffffff;

    --global-text-soft:
    rgba(255,255,255,0.72);
}

/* =========================
   HTML / BODY
========================= */

html,
body{

    width:100%;

    overflow-x:hidden;

}

body{

    background:var(--global-bg);

    color:var(--global-text);

    font-family:'Montserrat',sans-serif;

    min-height:100vh;

    position:relative;

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Cinzel',serif;

    font-weight:700;
}

p{

    line-height:1.7;
}

/* =========================
   IMAGES
========================= */

img{

    max-width:100%;

    display:block;
}

/* =========================
   LINKS
========================= */

a{

    text-decoration:none;

    color:inherit;
}

/* =========================
   LISTS
========================= */

ul,
ol{

    list-style:none;
}

/* =========================
   BUTTONS
========================= */

button{

    border:none;

    background:none;

    font:inherit;

    cursor:pointer;
}

/* =========================
   INPUTS
========================= */

input,
textarea,
select{

    font:inherit;
}

/* =========================
   SELECTION
========================= */

::selection{

    background:var(--accent-color);

    color:#ffffff;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#050505;
}

::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
    to bottom,
    var(--accent-color),
    rgba(255,255,255,0.35)
    );

    border-radius:999px;
}

/* =========================
   UTILITIES
========================= */

.container{

    width:min(1400px,100%);

    margin:auto;
}

.text-center{

    text-align:center;
}

.hidden{

    display:none;
}

.text-gold{

    color:var(--theme-gold);
}

.text-primary{

    color:var(--accent-color);
}

.text-soft{

    color:var(--theme-text-secondary);
}

/* =========================
   PERFORMANCE
========================= */

video,
iframe{

    max-width:100%;
}

/* =========================
   FADE SYSTEM
========================= */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.fade-up.visible{

    opacity:1;

    transform:translateY(0);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    body{

        font-size:0.95rem;
    }

}