/* 

html, body {
    margin: 0;
    padding: 0;
    font-family: "P22 Victorian W00 Swashes";
	box-sizing: border-box;
}

*::before, *::after {
    box-sizing: inherit;
}

body{
	background-color: #222;
	font-family: "P22 Victorian W00 Swashes";
}

/** Header **/

/*

header{
    font-family: "P22 Victorian W00 Swashes";
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 2rem;
}
.logo-header img{
    width: 50px;
}

.logo-header a{
	color: white;
	text-decoration: none;
	font-family: "P22 Victorian W00 Swashes"; 
	font-size: 3rem;
	transition: .3s;
}

.nav-menu a:hover{
	color: #4ad295;
}

.nav-menu ul{
    display: flex;
    align-items: center;
}
.nav-menu li{
    margin-right: 1rem;
	list-style: none;
}

.nav-menu li:last-child{
	background-color: #4ad295;
	border: 2px solid #4ad295;
	padding: .25rem .75rem;
	border-radius: .2rem;
}

.nav-menu li:last-child:hover{
	background: transparent;
	border: 2px solid #4ad295;
}

.nav-menu li .third{
	background-color: #b32428;
	border: 2px solid #b32428;
	padding: .25rem .75rem;
	border-radius: .2rem;
}

.nav-menu li .third:hover{
	background: transparent;
	border: 2px solid #b32428;
    color: #b32428;
}

.nav-menu a{
	text-decoration: none;
	color: white;
	font-size: 2.2rem;
    font-family: "P22 Victorian W00 Swashes";

}
.nav-menu li{
    padding: .25rem .75rem;
    border-radius: .2rem;

}
.menu-icon img{
    width: 30px;
    height: 30px;
    border-radius: 2px;
}
.menu-icon, #check{
    display: none;
}

.reserv{
    color: white;
    text-decoration: none;
    font-family: "P22 Victorian W00 Swashes";
    background-color: #4ad295;
	border: 2px solid #4ad295;
	border-radius: .2rem;
	cursor: pointer;
	display: block;
	margin-left: 50px;
	margin-right: 50px;
	padding: .25rem .75rem;
}

.reserv:hover{
	background: transparent;
	border: 2px solid #4ad295;
}

.reservaMesa{
    color: white;
    text-decoration: none;
    padding: .25rem .75rem;
    font-family: "P22 Victorian W00 Swashes";
}

@media (max-width:768px){
    .checkbtn{
        display: block;
    }
    .menu-icon{
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        cursor: pointer;
        border-radius: 60%;
    }
    .nav-menu ul{
        display: block;
        position: fixed;
        top:70px;
        left:-100%;
        background: #222;
        width: 100%;
        height: 100vh;
        right: 0;
    }
    .nav-menu ul li{
        padding: 1rem;
        display: flex;
        justify-content: center;
        margin: 0;
    }
    .nav-menu ul li:last-child{
        background: none;
        padding: 1rem;
    }
    #check:checked ~ ul{
        left: 0;
        transition: all .25s;
    }

}

/** End Header **/

/*

h2 {
    text-align: center;
    font-size: 3rem;
    padding-top: 50px;
	color: white;
    font-family: "P22 Victorian W00 Swashes";
}

p{
	color: white;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
    font-family: "P22 Victorian W00 Swashes";
    font-size: 2rem;
}

.reserva a{
    text-decoration: none; 
    color: white;
    font-family: "P22 Victorian W00 Swashes";
}

.reserva a:hover{
    color: #4ad295; 
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');


/*:::::Pie de Pagina*/

/*

footer{
    font-family: "P22 Victorian W00 Swashes";
}

.pie-pagina{
    width: 100%;
    background-color: #222;
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap:50px;
    padding: 45px 0px;
}
.pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure img{
    width: 200px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 3rem;
    
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social{
    text-align: center;
}

.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease;
    border-radius: 30%;
}
.pie-pagina .grupo-1 .red-social a:hover{
    background-color: #4ad295;
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}
@media screen and (max-width:800px){
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
    }
}

/**--------------------------------SOLO INDEX.HTML---------------------------**/

/*

.img-box{
	display: flex;
	justify-content: center;
	padding: 10px;
}

iframe{
	display: block;
	margin: 0 auto;
	margin-top: 15px;
}

.slider-frame {
	max-width: 100%;
	max-height: 100%;
    height: auto;
	padding:0;
	overflow: hidden;
}

.slider-frame ul {
	display: flex;
	padding: 0;
	width: 400%;
	
	
	animation: slide 15s infinite alternate ease-in-out;
}

.slider-frame li {
	width: 100%;
	height: 50%;
	list-style: none;
}

.slider-frame img {
	width: 100%;
	height: 100%;
}

@keyframes slide {
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	
	25% {margin-left: -100%;}
	45% {margin-left: -100%;}
	
	50% {margin-left: -200%;}
	70% {margin-left: -200%;}
	
	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

*/

/* RESET Y FUENTES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "P22 Victorian W00 Swashes", sans-serif;
  background-color: #222;
  color: white;
  overflow-x: hidden; /* ✅ AÑADIDO para evitar scroll horizontal */
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}

.logo-header a {
  color: white;
  text-decoration: none;
  font-size: 3rem;
  transition: 0.3s;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: 2.2rem;
}

.nav-menu a:hover {
  color: #4ad295;
}

.nav-menu ul {
  display: flex;
  align-items: center;
}

.nav-menu li {
  list-style: none;
  padding: 0.25rem 0.75rem;
  border-radius: 0.2rem;
  margin-right: 1rem;
}

.nav-menu li:last-child {
  background-color: #4ad295;
  border: 2px solid #4ad295;
}

.nav-menu li:last-child:hover {
  background: transparent;
}

.menu-icon img {
  width: 30px;
  height: 30px;
  border-radius: 2px;
}

.menu-icon, #check {
  display: none;
}

/* RESERVA */
.reserv {
  background-color: #4ad295;
  border: 2px solid #4ad295;
  border-radius: 0.2rem;
  cursor: pointer;
  display: block;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  text-align: center;
  max-width: 300px;
}

.reserv:hover {
  background: transparent;
}

.reservaMesa {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

/* SLIDER */
.slider-frame {
  max-width: 100%;
  overflow: hidden;
}

.slider-frame ul {
  display: flex;
  width: 400%;
  animation: slide 15s infinite alternate ease-in-out;
  padding: 0;
}

.slider-frame li {
  width: 100%;
  list-style: none;
}

.slider-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes slide {
  0%, 20% { margin-left: 0; }
  25%, 45% { margin-left: -100%; }
  50%, 70% { margin-left: -200%; }
  75%, 100% { margin-left: -300%; }
}

/* CONTACTO */
.img-box {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.direccion p {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 10px;
}

.reserva a:hover {
  color: #4ad295;
}

/* FOOTER */
footer {
  font-family: "P22 Victorian W00 Swashes", sans-serif;
}

.pie-pagina {
  background-color: #222;
  width: 100%;
}

.pie-pagina .grupo-1 {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 1rem;
}

.pie-pagina .grupo-1 .box figure {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pie-pagina .grupo-1 .box figure img {
  width: 150px; /* ✅ AJUSTADO para que no sea gigante en móvil */
  height: auto;
  max-width: 100%;
}

.pie-pagina .grupo-1 .box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pie-pagina .grupo-1 .box p {
  color: #efefef;
}

.pie-pagina .red-social a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: #fff;
  margin-right: 10px;
  background-color: #0d2033;
  border-radius: 30%;
  transition: all 300ms ease;
}

.pie-pagina .red-social a:hover {
  background-color: #4ad295;
}

.pie-pagina .grupo-2 {
  background-color: #0a1a2a;
  text-align: center;
  padding: 1rem;
}

.pie-pagina .grupo-2 small {
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .checkbtn {
    display: block;
  }

  .menu-icon {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    border-radius: 50%;
  }

  .nav-menu ul {
    position: fixed;
    top: 70px;
    left: -100%;
    background: #222;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    flex-direction: column;
    transition: left 0.25s ease;
    overflow: hidden;
  }

  #check:checked ~ ul {
    left: 0;
  }

  .nav-menu ul li {
    padding: 1rem;
    justify-content: center;
  }

  .nav-menu ul li:last-child {
    background: none; /* ✅ CORREGIDO: para evitar el borde verde extraño */
    border: none;
    width: 100%;
  }
  
    .pie-pagina .grupo-1 .box figure img {
    width: 120px; /* ✅ TAMAÑO ADAPTADO para móviles */
  }
}

