/*FONT STYLES*/

@font-face {
    font-family: 'Gotham';
    src: url(Gotham-Bold.otf);
    font-weight: bold;
    font-style: bold;
}

@font-face {
    font-family: 'Gotham';
    src: url(Gotham-Medium.otf);
    font-weight: medium;
    font-style: medium;
}

@font-face {
    font-family: 'Freshman';
    src: url(Freshman.ttf);
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: 'Open Sans', sans-serif;*/
    font-family: 'Gotham';
    font-weight: medium;
    text-align: center;
}

/*DESIGNACION FONTS*/

h1{
    font-family: 'Freshman';
    font-weight: normal;
}

h2{
    font-family: 'Gotham';
    font-weight: bold;
    color: #fff;
}

h3{
    font-family: 'Gotham';
    font-weight: bold;
}

p{
    font-family: 'Gotham';
    font-weight: medium;
}

/*BACKGROUND-IMAGE INSERTAR IMG DE FONDO*/

body{
    height: 100vh;
    background-color: #fff;
    background-image: url('../background/bg.jpg');
    background-size: cover;
    background-position: center;
    text-shadow: 2px 2px 4px black;
}

.tittle-index{
    width: 100%;
    height: 0 auto;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 35px;
    margin-top: 1rem;
    text-shadow: 10px 10px 15px rgb(13, 6, 73);
}

@media (max-width: 992px) {
    .tittle-index{
        font-size: 18px;
    }
}

@media (max-width: 576px){
    .tittle-index{
        pad: 1rem;
        margin-top: 1rem;
        font-size: 15px;
        text-shadow: 2px 2px 4px rgb(13, 6, 73);

    }
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover{
 color: rgb(3, 255, 14);
}

/* HEADER */

header{
    position: relative;
    padding: 0 2rem;
}

.navbar{
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a{
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .logo a img{
    height: 60px;
    margin-top: 1rem;
}

.navbar .links{
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn{
    background-color: rgb(3, 255, 14);
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
}

.action_btn:hover{
    scale: 1.05;
    color: #fff;
}

.action_btn:active{
    scale: 0.95;
}

/* DROPDOWN MENU */

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgb(41, 41, 41);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 240px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100px;
    display: flex;
    justify-content: center;
}

/* RESPONSIVE - MOBILE*/

@media (max-width: 992px) {

    header{
        background: rgb(22, 22, 22, 0.8);
    }
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .logo a img{
        height: 50px;
        margin-top: 0.5rem;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }

}

@media (max-width: 576px) {
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}

/* GALERIA IMAGENES INICIO */

.gallery{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 15px 0;
}

.gallery img{
    flex-wrap: wrap;
    width: 400px;
    height: 600px;
    margin: 10px 0;
    border-radius: 10px;
}

/* GALERIA FOTOS FRANQUICIAS */

.gallery-stand {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 15px 0;
}

.gallery-stand img{
    flex-wrap: wrap;
    width: 600px;
    height: 450px;
    margin: 10px 0;
    border-radius: 10px;
}

/* CONTRATACIONES Y FRANQUICIAS */

.container-txt-eventos{
    margin: 1rem;
    padding: 0.5rem;
    background: rgb(22, 22, 22, 0.8);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container-txt-eventos h1{
    width: 100%;
    height: 0 auto;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 20px;
    margin: 0.5rem;
    padding: 0.5rem;
}

.container-txt-eventos h3{
    width: 100%;
    height: 0 auto;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    margin: 0.5rem;
    padding: 0.5rem;
}

.container-txt-eventos p{
    width: 50%;
    height: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin: 1rem;
    padding: 0.5rem;
}

@media (max-width: 992px) {

    .container-txt-eventos h1{
        width: 90%;
        font-size: 17px;
        margin: 0.5rem;
        padding: 0;
    }

    .container-txt-eventos h3{
        width: 90%;
        font-size: 13px;
        margin: 0.5rem;
        padding: 0;
    }

    .container-txt-eventos p{
        width: 90%;
        font-size: 14px;
        margin: 0.5rem;
        padding: 0;
    }
}

/*BOTON GALERIA FOTOS*/

.button-28 {
    appearance: none;
    background-color: #1A1A1A;
    border: 2px solid rgb(3, 255, 14);
    border-radius: 15px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    min-height: 60px;
    min-width: 0;
    outline: none;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 150px;
    will-change: transform;
    margin: 15px;
  }

  .button-28 a{
    font-size: 12px;
    font-family: 'Gotham';
    line-height: normal;
  }
  
  .button-28:disabled {
    pointer-events: none;
  }
  
  .button-28:hover {
    color: #fff;
    background-color: #1A1A1A;
    box-shadow: rgb(3, 255, 14) 0 8px 15px;
    transform: translateY(-2px);
  }
  
  .button-28:active {
    box-shadow: none;
    transform: translateY(0);
  }

/* LIST JUEGO VELOCIDADES */

.container-txt-eventos h2 {
    color: #fff;
}

.container-txt-eventos ul li{
    list-style: circle;
    color: #fff;
    margin: 1rem;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .container-txt-eventos h2 {
        font-size: 17px;
    }

    .container-txt-eventos ul li{
        font-size: 14px;
    }

}

/* FORMULARIO CONTACTO */

.format-container{
    margin: 1rem;
    padding: 0.5rem;
    background: rgb(22, 22, 22, 0.8);
    border-radius: 10px;
    display:flex;
    justify-content: center;
    align-items: center;
}

.container {
    display:grid;
    grid-template-columns: repeat(2,50%);
    padding:20px;
    gap:10px;
    width: 1000px;
}

.box-info {
    color:#fff;
    display:flex;
    flex-direction: column;
    gap:50px;
}

.box-info > h1 {
    text-align: left;
    letter-spacing: 5px;
}

.data {
    display: flex;
    flex-direction: column;
    gap:25px
}

.data > p {
    font-size: 1rem;
}

.data > p > i {
    color:rgb(3, 255, 14);
    margin-right: 10px;
    font-size:25px;
}

.links {
    display:flex;
    gap:15px;
}

.links > a {
    text-decoration: none;
    width: 40px;
    height: 40px;
    background: rgb(3, 255, 14);
    text-align: center;
    transition: .1s;
}

.links > a > i {
    color:#fff;
    line-height: 40px;
    font-size: 20px;
}

form {
    display:flex;
    flex-direction: column;
    text-align: center;
    gap:15px;
}

.input-box {
    position:relative;
}

.input-box > input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    outline:none;
    background: rgba(255 255 255 / .1);
    border:3px solid transparent;
    letter-spacing: 1px;
    transition:.3s;
    color:#fff;
    
}

.input-box > input::placeholder,
.input-box > textarea::placeholder {
    color:#a3a3a3;
    
}

.input-box > input:focus::placeholder,
.input-box > textarea:focus::placeholder {
    color:transparent;
}

.input-box > input:focus,
.input-box > textarea:focus {
    border-bottom:3px solid #18c02e;
    animation: shake .2s;
}

.input-box > textarea {
    width: 100%;
    height: 130px;
    padding: 10px;
    background: rgba(255 255 255 / .1);
    border:3px solid transparent;
    letter-spacing: 1px;
    outline: none;
    transition:.3s;
    color:#fff;
    letter-spacing: 1.5px;
}


.input-box > i {
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right: 10px;
    color:rgba(255 255 255 / .3);
    transition: .3s;
}

.input-box > input:focus ~ i {
    color:rgb(3, 255, 14);
}

form > button {
    width: 100%;
    padding: 10px;
    outline: none;
    background: rgb(3, 255, 14);
    color:#fff;
    border:none;
    transition: .1s;
    cursor: pointer;
    font-size: 1rem;
}

form > button:hover,
.links > a:hover {
    background: #02500c;
}

@keyframes shake { 
    0%, 100% {transform: translateX(0);} 
    10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);} 
    20%, 40%, 60%, 80% {transform: translateX(10px);} 
 }


@media screen and (max-width:600px) {
    .container {
        width: 95%;
        display: flex;
        flex-direction: column;
        gap:20px;
    }

    .box-info {
        gap:15px;
    }

    .box-info > h1 {
        font-size: 1.5rem;
    }
}

/* ICONO WHATSAPP */

.float{
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    bottom: 40px;
    right: 40px;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 999;
}

.fa-whatsapp{
    font-size: 60px;
}

.float:hover{
    background-color: #28914e;
}

/* FOOTER - PIE DE PAGINA */

footer {
    width: 100%;
    height: 100px;
    position: unset;
    bottom: 0;
    left: 0;
    padding: 2rem 8%;


    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icons.container, .footer-menu-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.social-icon {
    background-position: center;
    background-size: 40%;
    background-repeat: no-repeat;
    margin: 1rem;
}

.social-icon img{
    height: 50px;
    width: 50px;
    margin-bottom: 2rem;
}

.footer-menu-container{
    list-style-type: none;
    color: #fff;
    font-size: 16px;
}

.copyright{
    color: #fff;
    opacity: 0.4;
    text-align: center;
}

@media (max-width: 992px) {

    footer {
        position: unset;
    }

    .social-icon img {
        height: 25px;
        width: 25px;
        margin-bottom: 1rem;
    }
}