/* Variables CSS */
:root {
  --main-color: #333;
  --menu-color: #000;
  --background-color: #f4f4f4;
  --nav-height: 60px;
  --overlay-color: rgba(0, 0, 0, 0.5);
  --menu-width: 50%;
  --bcompany: #ff8e11;
  --byellow: #f6c243;
}

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
	scroll-behavior:smooth;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
  overflow-x: hidden;
  justify-content: center;
}



/* Añade estas reglas al archivo CSS */
header {
  /*position: fixed;*/ /* Fija el header en la parte superior */
  top: 0; /* Lo coloca en la parte superior */
  left: 0; /* Lo coloca en el borde izquierdo */
  width: 100%; /* Ocupa todo el ancho de la pantalla */
  z-index: 1000; /* Asegura que esté por encima del contenido */
  background-color: var(--main-color); /* Mantén el color de fondo */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Opcional: añade una sombra para mejor visibilidad */
  background: var(--main-color);
  color: white;
  padding: 50px 0;
}

/* Añade un margen superior al contenido principal para evitar que quede oculto detrás del header */
main {
  /*margin-top: 160px;*/ /* Ajusta este valor según la altura del header */
}

h1{
	padding-left:7px;
	font-size: 22px;
	line-height: 30px;
	text-align:center;
}
h2{
	line-height: normal;
}

/* Navegacion */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: var(--nav-height);
}

.logo h1 {
  margin: 0;
}

.nav-menu {
  list-style: none;
  display: flex;
}

.nav-menu li {
  margin-left: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin-bottom: 4px;
  border-radius: 5px;
}

/* Imagenes */
.stars{
	width:250px;
	height:40px;
}

/* Tamaños y formas */
.container, .containerflex{
	display: flex;	
	justify-content: space-between;
	align-items: center;		
}
.item{
	width:50%;
	overflow: hidden;
}
.item-inbox{
	overflow: hidden;
}
.item-text {
  padding: 40px;  
  overflow-y: auto; /* Permite el desplazamiento si el contenido es demasiado grande */
  display: flex;
  flex-direction: column; /* Asegura que los hijos se alineen en columna */
}

.item-image {  
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px; /* Mantén las esquinas redondeadas */
}

.mw1200{
	width: 100%;
    max-width: 1200px;    
    padding: 20px;
}
.mw1200header{
	width: 100%;
    max-width: 1200px;
    padding-right:20px;
}
.roundcorners{
	border-radius:10px;
}
.boxshadow{
	box-shadow: 9px 9px 9px rgb(0 0 0 / 10%)
}
.padding20{
	padding:20px;
}
.marginb20{
	margin-bottom:20px;
}
.w100{
	width:100%;
}
.h100{
	height:100%;
}

/* Posicion */
.center{
	margin:0 auto;
}

/* Colores de fondo */
.bccompany{
	background-color: var(--bcompany);
}
.bcwhite{
	background-color:#fff;
}
.bcyellow{
	background-color: var(--byellow);
}

/* Colores de fuentes */
.cwhite{
	color:#fff;
}

/* Estilo Fuentes */
.bolder{
	font-weight:600;
}
.nobolder{
	font-weight:400;
}
.f15{
	font-size: 15px;
}
.f20{
	font-size: 20px;
}
.f25{
	font-size: 25px;
}
.f30{
	font-size: 30px;
}
.textcenter{
	text-align:center;
}

/* Espaciadores */
.separator{
	height:0;
	clear:both;
}
.separator5{
	height:5px;
	clear:both;
}
.separator10{
	height:10px;
	clear:both;
}
.separator25{
	height:25px;
	clear:both;
}
.separator50{
	height:50px;
	clear:both;
}
.pointer{
	cursor:pointer;
}

/*Botones*/
#orderbtn{
    text-align:center;
}

/*Catalogo de productos*/
.product-list {
    padding:0 50px;
	height: 0px;	
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px dotted var(--main-color);
}

.product-name {
    font-weight: bold;
    margin-right: auto;
}

.product-price {
    text-align: right;
    font-weight: bold;
}

/*Sección de contacto*/
.contact-container {
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 0%), 
                url('img/pizzes-sant-pere.webp');
    background-size: cover;
    background-position: center bottom;
}

.contact-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8); /* Transparencia para mejor lectura */
    font-size: 20px;
    color: #555;
}

/* Imagen del top */
.topimgpc{
    display:block;
}
.topimgmobile{
    display:none;
}


/* Media Queries */
@media (max-width: 1200px) {
	h2#schedules {
        text-align: center;
    }
	#map a {
        margin-bottom: 25px;
    }    
  .nav-menu {
    padding-top: 50px;
    flex-direction: column;
    width: var(--menu-width);
    height: 100%;
    background-color: var(--menu-color);
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.3s ease;
    z-index: 1000;
	font-size: 20px;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 20px 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .overlay.active {
    display: block;
    opacity: 1;
  }
  
  .containerflex{
	flex-direction:column;
	justify-content: flex-start; /* Alinea los elementos al inicio del contenedor */
  }
  
  .flexend{
	display: flex;
	justify-content: end;  
  }
  
  .item{
	width:100%;
  }
  
  .item-image{
	margin-bottom:30px;
  }

  .stars{
	width:150px;
	height:25px;
  }
  .item.w50.bcwhite.item-text {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.item.w50.bcwhite.item-image {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
	
	.product-list {
		padding:0 20px !important;
	}
	
	/* Imagen del top */
    .topimgpc{
        display:none;
    }
    .topimgmobile{
        display:block;
    }
    #orderbtn{
        text-align:left;
        margin-left: 8px;
    }
}
