:root{
    --blanco: #FFFFFF;
    --blanco2: #E2E2E2;
    --blanco3: #cecbcb4b;
    --negro: #000000;
    --negro2: #1D1D1D;
    --negro3: #393939;
    --negro4: #555555;
    
    --verdeazul: #58CADC;
    --verdeazul1: #357B85;
    --verdeazul2: #295F67;


    --rojo1: #f42e17;
    --rojo2: #e32311;
    --rojo3: #d1170b;
    --rojo4: #c00c06;
    --rojo5: #af0000;
    --rojo6: #520000;
    
    


    --negroOpaco: rgba(85, 96, 121, 0.229);
    --blancoOpaco: rgba(255, 255, 255, 0.086);
    --blancoOpaco2:rgba(255, 255, 255, 0.579);
    --azulOpaco: rgba(5, 32, 46, 0.908);
    --rojoOpaco: #5b0000f5;



    --degradado6: linear-gradient(180deg,var(--verdeazul2),var(--azulpro2));
    --degradado7: linear-gradient(180deg,var(--rojo1),var(--rojo5));
    
    
  --max-width: 1100px;
  --radius: 10px;
  --gap: 1rem;
  --font-sans:"Inconsolata", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* RESET / BASE */

*,
*::before,
*::after { 
    box-sizing: border-box; 
}

* {
    margin:0; 
    padding:0; 
    font-family: var(--font-sans);
    line-height:1.45;
}

a{
    text-decoration: none;
}

hr{
    margin: 0 15rem;
    background-color: var(--rojo1);
    border: none;
    height: 3px;
}

/* FONDO */

.S_Fondo{
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image:
    radial-gradient(circle at 30% 40%, rgba(20, 19, 19, 0.15), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(203, 203, 203, 0.1), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
    url("img/fondo4.jpg");

    background-size: cover;
    background-position: center;

    z-index: -1;
}

/* HEADER */

header{
    padding: 1rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: transparent;
    /* position: fixed; */
}

.D_Header{
    width: 30%;
    min-width: 25rem;
} 

.D_Header a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.D_Header a picture img{
    height: 5rem;
    width: auto;
    border-radius: 50%;
    margin-right: 2rem;
}

h1{
    font-weight: bold;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--blanco);
}

nav{
    width: 40%;
    min-width: 20rem;
    margin: auto 0;
}

nav ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li{
    list-style: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

nav ul li a{
    color: var(--blancoOpaco2);
} 

nav ul li a:hover{
    color: var(--rojo4);
}


/*MENU RESPONSIVE*/

.menu-bars{
    display: none;
    color: var(--blanco);
    margin-left: 2rem;
    font-size: 1.5rem;
}

.menu-x{
    position: fixed;
	z-index: 300;
	width: 2rem;
	right: 10px;
    top: 40px;
    z-index: 300;
    color: var(--blanco);
    font-size: 1.5rem;
}

.menu-xI{
    display: none;
}

.menu-bars:hover{
	color: var(--rojo1);
}

.Nav_RI{
    position: fixed;
    height: 60%;
    top: 10px;
    right: 0;
    opacity: 0;
    /* visibility: hidden; */
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.4s ease;
}



.Nav_R{
    position: fixed;
    width: 50%;
    background-color: var(--rojoOpaco);
    height: 60%;
    border-radius: 3rem 0 0 3rem ;
    top: 10px;
    right: 0;
    padding: 2rem;
    z-index: 150;
    opacity: 1;
    /* visibility: visible; */
    pointer-events: auto;
    transform: translateX(0%);
    transition: 0.4s ease;
}

.Nav_R ul{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.Nav_R ul a{
    color: var(--blanco);
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.Nav_R ul li{
    list-style: none;
    text-align: center;
}

.Nav_R ul a:hover{
    color: var(--negro);
    text-shadow: 1px 1px var(--blancoOpaco);
    
}




/* HERO */

.S_Hero{
    height: 36.5rem;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.S_Hero picture{
    position: absolute;
    right: 7%;
    top: 5%;
    transform: translateX(-10%);
    transform: translateY(10%);
    animation: float 3s linear infinite;
    z-index: 10;
}

.S_Hero picture img{
    height: 30rem;
    width: auto;
    filter: brightness(0.85) contrast(2) saturate(0.6) sepia(0.3);
}

.S_Hero .pic2{
    right: 3%;
    top: 25%;
    z-index: 1;
    animation: float2 3s linear infinite;
}

.S_Hero .pic2 img{
    height: 25rem;
    filter: brightness(0) saturate(100%) drop-shadow(5px 5px 25px rgba(255, 0, 0, 0.4));
    opacity: 0.8;

    /* filter: brightness(0) saturate(100%) 
        drop-shadow(0 0 15px red)
        drop-shadow(0 0 30px rgba(255, 0, 0, 0.6)); */
}


.D_Hero{
    width: 50vw;
    min-width: 20rem;
    height: 70%;
    min-height: 30rem;
    padding-left: 7rem;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.D_Hero h2{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    color: var(--blanco);
}

.D_Hero h2 b{
    color: var(--rojo2);
}

.D_Hero span{
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--blancoOpaco2);
    margin-bottom: .5rem;
}

.D_Hero p{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--blanco);
    margin-bottom: 1rem;
}

.A_Contacto{
    display: block;
    background: var(--degradado7);
    color: var(--negro);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 3rem;
    padding: .5rem 2rem;
    margin-bottom: 1rem;
    width: fit-content;
    transition: linear .1s;
}

.A_Contacto:hover{
    transform: scale(1.05);
    color: var(--blanco);
}

.A_Contacto i{
    margin-right: .5rem;
    color: var(--verdeazul2);
    font-weight: bolder;
}

.A_Uber{
    background-color: var(--negroOpaco);
    color: var(--blanco);
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 3rem;
    padding: .5rem 2rem;
    width: fit-content;
    transition: linear .1s;
}

.A_Uber:hover{
    color: var(--negro);
    background-color: var(--blanco);
    border: none;
}

.A_Uber div{
    display: flex;
    align-items: center;
}

.A_Uber div img{
    display: inline-block;
    height: 2rem;
    width: 2rem;
}

.A_Uber span{
    margin-left: .5rem;
}

nav ul li .A_Contacto{
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* SECTION MENÚ */

.S_Menu{
    background: linear-gradient(to bottom,
    var(--negro2) 0%,
    var(--negro) 100%);
    padding: 3rem 2rem 5rem 2rem;
    min-width: 412px;
}

.S_Postres{
    background: var(--negro);
    padding: 0 2rem 5rem 2rem;
}

h3{
    color: var(--blanco);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 2rem;
}

.D_Menu, .D_Postres{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.D_Pizzas, .D_Postre{
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    align-items: start;

    min-height: 25rem;
    width: 15rem;
    min-width: 18rem;
    background-image:
    radial-gradient(circle at 30% 40%, rgba(2, 2, 2, 0.15), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(4, 3, 3, 0.1), transparent 30%),
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
    url("img/fondo1.jpg");
    background-size: cover;
    background-position: center;
    box-shadow: 2px 2px 10px 1px var(--blanco3); 
    border-radius: 2rem;
    padding: 2rem 1rem;
    margin: 2rem;
}

.D_Pizzas h4, .D_Postre h4{
    color: var(--blanco);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
}

.D_Pizzas p,.D_Postre p{
    color: var(--blanco);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
}

.D_Pizzas span, .D_Postre span{
    color: var(--rojo1);
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-align: center;
}

.D_Pizzas a, .D_Postre a{
    display: block;
    color: var(--rojo1);
    background-color: var(--blancoOpaco);
    width: fit-content;
    font-size: 1.2rem;
    font-weight: bold;
    padding: .5rem 2rem;
    border-radius: 3rem;
    letter-spacing: 2px;
    margin: auto;
    transition: linear .1s;
}

.D_Pizzas a:hover, .D_Postre a:hover{
    transform: scale(1.05);
    background-color: var(--rojo5);
    color: var(--blanco);
}

.S_Menu hr{
    margin-top: 5rem;
}

/* SECTION ACERCA DE */

.S_Acercade{
    padding: 3rem 0;
    background: linear-gradient(to bottom,
    var(--negro) 0%,
    var(--negro2) 100%);
    min-width: 412px;
}

.D_Acercade{
    background-image:
    radial-gradient(circle at 30% 40%, rgba(2, 2, 2, 0.15), transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(4, 3, 3, 0.1), transparent 30%),
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
    url("img/fondo2.jpg");
    background-size: cover;
    background-position: center;
    width: 80%;
    margin: auto;
    padding: 3rem 4rem;
    align-items: center;
    border-radius: 3rem;
    box-shadow: 2px 2px 10px 1px var(--blanco3);    
}

.D_Acercade h3 b{
    color: var(--rojo1);
}

.D_Acercade p{
    color: var(--blanco);
    font-size: 1.3rem;
    letter-spacing: 1px;
    line-height: 2;
    text-align: center;
}

.D_Acercade p b{
    color: var(--rojo1);
}


/* FOOTER */

footer{
    padding: 3rem 0;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer h2{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--blanco);
    margin-bottom: 3rem;
}

footer h2 span{
    font-size: 1.5rem;
}

footer ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

footer ul li{
    list-style: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 3rem;
    min-width: 7rem;
    text-align: center;
}

footer ul li a{
    color: var(--blanco);
}

footer ul li a:hover{
    color: var(--rojo3);
}


footer ul li a i{
    color: var(--verdeazul2);
    margin-right: .5rem;
}



@keyframes float {
	0%, 100%{
		transform: translateY(.2rem);
	}
	50%{
		transform: translateY(-.2rem);
	}
}

@keyframes float2 {
	0%, 100%{
		transform: translateY(-.2rem);
	}
	50%{
		transform: translateY(.2rem);
	}
}



/* ______________RESPONSIVE DESIGN_____________ */

/* ----------------------------------------------------------------------------
   ULTRA WIDE / 4K (Ultra-wide & 4K displays)
   2561px+
---------------------------------------------------------------------------- */
@media only screen and (min-width: 2201px) {
    .S_Hero picture{
        right: 15%;
    }

    .S_Hero .pic2{
        right: 20%;
    }
}

/* ----------------------------------------------------------------------------
   DESKTOP GRANDE (Large desktop)
   1921px - 2560px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 2200px) {
    .S_Hero picture{
        right: 10%;
        top: -10%;
    }

    .S_Hero .pic2{
        right: 7%;
        top: 10%;
    }

    .S_Hero picture img{
        height: 35rem;
    }
    
    .S_Hero .pic2 img{
        height: 30rem;
    }
}

/* ----------------------------------------------------------------------------
   DESKTOP ESTÁNDAR (Standard desktop)
   1441px - 1920px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 1920px) {
    .S_Hero picture{
        right: 7%;
        top: 5%;
    }

    .S_Hero picture img{
        height: 30rem;
    }

    .S_Hero .pic2{
        right: 3%;
        top: 25%;
    }

    .S_Hero .pic2 img{
        height: 25rem;
    }
    
}

/* ----------------------------------------------------------------------------
   LAPTOPS ESTÁNDAR (Standard laptops)
   1281px - 1440px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 1440px) {
}

/* ----------------------------------------------------------------------------
   LAPTOPS PEQUEÑAS (Small laptops)
   1025px - 1280px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 1280px) {
    html{
		font-size: 90%;
	}
}

/* ----------------------------------------------------------------------------
   TABLETS GRANDES (Large tablets - Portrait/Landscape)
   835px - 1024px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
    html{
		font-size: 80%;
	}
}

/* ----------------------------------------------------------------------------
   TABLETS ESTÁNDAR (Standard tablets - Portrait)
   769px - 834px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 848px) {
    .D_Header{
        width: 35%;
    } 

    nav{
        width: 50%;
    }

}

/* ----------------------------------------------------------------------------
   TABLETS PEQUEÑAS (Small tablets - Portrait)
   601px - 768px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
    html{
		font-size: 70%;
	}

    header{
        justify-content: space-between;
    }


    nav{
        width: 30%;
        margin-right: 2vw;
    }

    .A_Nav{
        display: none;
    }

    
	.menu-bars_Active{
		display: block;
	}

}

/* ----------------------------------------------------------------------------
   MÓVILES GRANDES (Large phones)
   426px - 600px
---------------------------------------------------------------------------- */

@media only screen and (max-width: 700px) {
    .D_Header{
        min-width: 19rem;
    }
    h1{
        font-size: 1.7rem;
    }

    .D_Header a picture img{
        margin-right: 1rem;
    }

    .A_Contacto{
        padding: .5rem;
        letter-spacing: 0;
    }

    nav{
        width: 25%;
        min-width: 13rem;
    }

    .D_Hero{
        padding-left: 4rem;
    }


    .D_Hero h2{
        font-size: 2.3rem;
    }

    .D_Hero p{
        font-size: 1rem;
    }

    .D_Hero a{
        font-size: 1.2rem;
    }

    .D_Hero .A_Contacto{
        letter-spacing: 2px;
        padding: .5rem 1.4rem;
    }

    .S_Hero picture img{
        height: 20rem;
    }
    
    .S_Hero .pic2 img{
        height: 15rem;
    }
}

@media only screen and (max-width: 500px){


    footer ul{
        flex-direction: column;
    }

    footer ul li{
        margin: 2rem auto;
    }
}

@media only screen and (max-width: 450px) {
    
    .S_Fondo{
        height: 46.5rem;
    }

    
    .D_Hero{
        padding-left: 1.2rem;
    }

    .S_Hero picture{
        right: 0;
        top: 15%;
    }

    .S_Hero .pic2{
        right: -3%;
        top: 30%;
    }

    .S_Hero picture img{
        height: 15rem;
    }
    
    .S_Hero .pic2 img{
        height: 12rem;
    }
    
    footer{
        background-image:
        radial-gradient(circle at 30% 40%, rgba(20, 19, 19, 0.15), transparent 60%),
        radial-gradient(circle at 80% 60%, rgba(203, 203, 203, 0.1), transparent 60%),
        linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
        url("img/fondo4.jpg");
    
        background-size: cover;
        background-position: center;
    }
}

/* ----------------------------------------------------------------------------
   MÓVILES ESTÁNDAR (Standard phones)
   376px - 425px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 414px){
    .S_Fondo{
        width: 100%;
    }
    
}



/* ----------------------------------------------------------------------------
   MÓVILES PEQUEÑOS (Small phones)
   321px - 375px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 390px) {
    html{
        position: static;
        min-width: 400px;
    }
    
}

/* ----------------------------------------------------------------------------
   MÓVILES ULTRA PEQUEÑOS (Smartwatches, mini phones)
   0px - 320px
---------------------------------------------------------------------------- */
@media only screen and (max-width: 320px) {
}