@font-face {
    font-family: 'garetBook';
    src: url('../fonts/Garet-Book.ttf');
}

@font-face {
    font-family: 'garetHeavy';
    src: url('../fonts/Garet-Heavy.ttf');
}

@font-face {
    font-family: 'aquire';
    src: url('../fonts/AquireLight-YzE0o.otf');
}

@font-face {
    font-family: 'aquireBold';
    src: url('../fonts/Aquire-BW0oxBold.otf');
}

:root {
    --color-primary: #f0f0f0;
    --color-secondary: #FFE111;
    --color-blacklight:rgba(255, 255, 255, 0.08);
}

.hide{
    display: none;
}
.show{
    display: block;
}

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

html {
    font-size: 62.5%;
  }

body {
    background-image: url("../assets/dark-abstract-3840x2160-18134.png");
    background-size: cover;
    background-position: center;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100vh;      
}

.no-scroll {
    overflow: hidden;
}

.person{
    position: absolute;
    bottom: 0;
    right: 200px;
    width: 408px;
    height: 612px;
    background-image: url("../assets/IMG-20240927-WA0006-removebg.png");
    background-size: cover;
    background-position: center;
}

.container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.container-1260 {
    max-width: 1260px;
    margin: auto;
}

header {
    padding: 4rem 0;
    transition: all 0.3s ease-in-out 0s;
}

header.header-top {
    height: 230px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    background:rgba(0, 0, 0, 0.404);

  }

header .brand {
    max-width: 375px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:var(--color-secondary)
}

header .brand img.logo-top{
    width: 100px;
}

header .brand h1:nth-of-type(1) {    
    font-size: 5rem;
    margin-top: 1rem;
    font-family: aquire;
}

header .brand h1:nth-of-type(2) {
    font-size: 2.8rem;
    font-family: garetBook;
}

header .brand h1.title-santa-top{
    font-size: 3.8rem;
}

header .brand h1.title-tattoo-top{
    font-size: 2rem;
}

.menu{
    margin-top:200px;
}

.menu h2{
    font-size: 4.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.menu p{
    font-size: 2.4rem;
    font-weight: 500;
    padding-top: 1rem;
    color: var(--color-primary);
}

.menu nav{
    margin-top: 35px;
}

.menu nav.nav-top {
    position: absolute;
    right: 600px;
    top: -90px;
  }

.menu nav ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu nav ul li+li{
    margin-left: 30px;
}

.menu nav a {
    display: block;
    position: relative;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.menu nav a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.menu nav a:hover::before, .menu nav li:hover > a::before, .menu nav .active > a::before {
    visibility: visible;
    width: 35px;
}

.social{
    padding-top: 3rem;
    display: flex;
}

.social-top {
    position: absolute;
    top: -30px;
    right: 600px;
}

.social a{
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    color: var(--color-primary);
    line-height: 1;
    margin-right: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: all 0.3s ease-in-out 0s;
}

.social a:hover{
    background: var(--color-secondary);
    color: #000;
}

section {
    overflow: hidden;
    position: absolute;
    width: 100%;
    top: 140px;
    bottom: 100%;
    opacity: 0;
    transition: ease-in-out 0.4s;
    z-index: 2;
    color: var(--color-primary);
}

section.section-show {
    top: 100px;
    bottom: auto;
    opacity: 1;
    padding-bottom: 45px;
}

section h2{
    text-transform: uppercase;
    font-weight: 400;
}

section h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--color-secondary);
    margin: 4px 10px;
}

section .container-1260{
    background: rgba(1,1,1,0.72);
    padding: 3rem;
}

#contact .container-cards{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#contact .container-cards .card{
    width: 40%;
    background-color: var(--color-blacklight);
    padding: 2rem;
    margin-top: 3rem;
}

#contact .container-cards .card > i{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--color-secondary);
    background-color: var(--color-blacklight);
    text-align: center;
    line-height: 40px;
    font-size: 1.4rem;
}

#contact .container-cards .card span{
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    padding-left: 1rem;
}

#contact .container-cards .card p{
    color: var(--color-primary);
    line-height: 24px;
    font-size: 1.4rem;
    margin: 0 0 0 68px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#contact .container-cards .card p i{
    color: var(--color-primary);
    padding: 0 1rem;
    font-size: 2rem;
}


  #hamburger {
    display: none;
    width: 24px;
    height: 24px;
    background: 0 0;
    border: 0;
    position: relative;
    cursor: pointer;
  }

  .bar {
    left: 0;
    background-color: #fff;
    width: 100%;
    transform-origin: center center;
    height: 2px;
    position: absolute;
    transition: all 1s;
  }

  #bar1 {
    rotate: 0 0;
    translate: 0 0;
    top:6px
  }

  #bar2 {
    top: 12px;
  }

  #bar3 {
    top: 18px;
  }



@media (max-width: 500px) {
    /* Estilos CSS para pantallas con ancho menor a 500px */
    header {
        position: relative;
        z-index: 5;
    }

    header .brand img{
        width: 50px;
    }

    header .brand img.logo-top{
        width: 50px;
    }

    body.no-scroll header .brand h1.title-santa-top{
        display: block;
    }

    header .brand h1.title-santa-top{
        display: none;
    }

    .menu{
        margin-top:0px;
    }

    body.no-scroll .menu .container-1260{
        margin-top: 80px;
    }
    
    .menu .container-1260 {
        position: static;
        text-align: center;
    }

    .menu .container-1260 nav{
        position: absolute;
        top:0;
        left:0;
        width: 100%;
    }

    .menu .container-1260 nav ul{
        position: relative;
    }

    .menu .container-1260 nav li{
        width: 100%;
        margin-left: 0;
        padding: 1rem 0;
        border-bottom:1px solid #333;
    }

    .menu .container-1260 nav a{
        color: #000;
    }

    .menu-hide{
        flex-direction: column;
        align-items: center;
        overflow: hidden;
        max-height: 0;
        transition: max-height 1s ease-in-out;
        width: 100%;
        background-color:rgba(255, 255, 255, 0.9);
        position: absolute;
        top:140px;
        left:0;
        z-index: 10;
    }

    .show-menu{
        max-height:300px;
    }

    .menu h2{
        font-size: 3.8rem;
        margin-top: 200px;
    }

    .menu p{
        font-size: 2rem;
        padding: 1rem 0.4rem;
    }

    .social{
        justify-content: center;
    }

    .person{
        z-index: -1;
    }

    #contact .container-cards{
        flex-direction: column;
        margin-top: 150px;
    }
    
    #contact .container-cards .card{
        width: 100%;
    }

    #contact .container-cards .card p{
        margin: 0 0 0 18px;
    }

    #hamburger {
        display: block;
        position: absolute;
        top:-30px;
        right: 10px;
        z-index: 8;
    }

    #hamburger.active #bar1 {
        rotate: 45deg;
        translate: 0 6.5px;
      }
  
      #hamburger.active #bar2 {
        width: 0;
      }
  
      #hamburger.active #bar3 {
        rotate: -45deg;
        translate: 0 -5.5px;
      }
}