@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap');
@import url('https://fonts.googleapis.com/css2?family=UnifrakturMaguntia&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=UnifrakturMaguntia&display=swap');


/* 

.kanit-thin {
  font-family: "Kanit", sans-serif;
}

*/

:root {
    --white: #f8f9fa;
}

* {
    box-sizing: border-box;
    text-decoration: none;
    padding: 0;
    margin: 0;
    list-style: none;
}

html, body {
  margin: 0;
  padding: 0;
  height: calc(var(--vh) * 100);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url(../assets/bg/shop-bg-6.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  will-change: transform;
}

@media (max-width: 580px) {
  body::before {
    background-image: url(../assets/bg/shop-bg-5-mobile.jpeg);
  }
}


.main-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
}

.main-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Kanit", sans-serif;
    gap: 3rem;
}

.main-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -4rem;
}

.main-logo img {
    height: 13rem;
}

.date-time {
    font-weight: 500;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.678);
    text-align: center;
font-family: "Orbitron", sans-serif;
    font-style: italic;
}

.main-links-container {
    margin-top: -1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: .7rem;
}

.main-link a {
    color: var(--white);
    font-weight: 600;
    font-size: 3.2rem;
font-family: "Orbitron", sans-serif;
    line-height: 1;
    display: inline-block;
    font-weight: 800;
    position: relative;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
    /* relleno ORO metálico */
background-image:
    linear-gradient(90deg,
        #0e0e0e 0%,
        #2b2b2b 18%,
        #8a8a8a 32%,
        #3a3a3a 50%,
        #cfcfcf 62%,
        #2a2a2a 80%,
        #9b9b9b 100%),
    linear-gradient(180deg,
        rgba(0,0,0,0.45),
        rgba(255,255,255,0.08));


    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    /* profundidad */
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 14px rgba(97, 97, 97, 0.45);
        transition: all .2s ease-in-out;
}

.main-link {
    margin-top: 1.5rem;
}

.main-link a:hover {
    transform: scale(1.1);
    color: #f8f9fa63;
    transition: all .2s ease-in-out;
}


.main-icons-container {
    display: flex;
    justify-content: center;
    align-self: center;
    gap: 4rem;
    margin-top: 1.1rem;
}

.main-icons-container a {
    color: rgba(255, 255, 255, 0.678);
    transition: all .2s ease-in-out;
    margin-top: -1.3rem;
    transform: scale(1.3);
}

.main-icons-container a:hover {
    transform: scale(1.4);
    color: #ffffff;
    transition: all .2s ease-in-out;
}





/* ANIMACIONES */


@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


.main-logo {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards, floatBounce 3s ease-in-out infinite;
    animation-delay: 0.2s;
}

.date-time {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.main-links-container .main-link {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.main-icons-container {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: .70s;
}

/* DELAY */
.main-links-container .main-link:nth-child(1) {
    animation-delay: 0.6s;
}

.main-links-container .main-link:nth-child(2) {
    animation-delay: 0.8s;
}

.main-links-container .main-link:nth-child(3) {
    animation-delay: 1s;
}

.main-links-container .main-link:nth-child(4) {
    animation-delay: 1.2s;
}