:root {
  --white: #ffffff;
  --black: #111111;
  --gray: #cccccc;
  --red: #ea5f4a;
  --green: rgb(34, 151, 67);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}

/* Mobile Styling */
@media (max-width: 600px) {
    .computernav{ 
        display:none
}
header {
    background-color: #ea5f4a;
    padding: 1em 1em 1em 0.5em;
    display: flex;
    justify-content: flex-start;
    position: relative;
}
.mobilehead{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size:25px;
    color: var(--white);
    font-weight: 100;    
    letter-spacing: 1px;
    font-style: italic;
    background-color: var(--green);
    height: 40px;
    width: 400px;
    border-radius: 20px;
    text-align: center;
    display: flex;     
    justify-content: center;    
    align-items: center;  
    text-shadow: 2px 2px 2px rgba(13, 80, 8, 0.7);     
}
  .hamb {
    cursor: pointer;
    padding: 10px;
    display: inline-block;
  }
  .hamb-line {
    background: var(--white);
    display: block;
    margin-top: 8px;
    height: 3px;
    width: 28px;
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  .hamb-line::before,
  .hamb-line::after {
    background: var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    transition: all 0.3s ease-in-out;
  }
  .hamb-line::before {
    top: 8px;
  }
  .hamb-line::after {
    top: -8px;
  }

  .side-menu {
    display: none;
  }

  .mobilenav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;      
    background-color: var(--white);
    z-index: 1000;
  }
  .menu{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 550;
    font-size: 20px;
  }

  .menu a {
    display: block;
    padding: 16px;
    border-bottom: 1px solid #8d8d8d;
    color: var(--black);
  }
  .menu a:hover {
    background-color: rgb(123, 190, 142);
  }
  .side-menu:checked ~ .mobilenav {
    display: block;
  }
  .side-menu:checked + .hamb .hamb-line {
    background: transparent;
  }
  .side-menu:checked + .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top: 0;
  }
  .side-menu:checked + .hamb .hamb-line::after {
    transform: rotate(45deg);
    top: 0;
  }
  body:has(.side-menu:checked) {
    overflow: hidden;
  }

  p {
    font-size: 15px;
}

.bigpizza{
  background-image: url("https://images.pexels.com/photos/3908115/pexels-photo-3908115.jpeg");
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
  height: 400px; 
  filter: blur(1px);
}

.about{
    margin: 15px;
    display: flex;
    flex-direction: column; 
    align-items: center;   
    text-align: center;
}
.about img {
  border-radius: 15px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  filter: brightness(95%);
  width: 100%;
  height: 100%;
  max-height: 650px;
  max-width: 350px;
  
}
.abouttext {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-right: 10px;
    text-align: center;
    margin-bottom: 15px;
}
.abouttext h1 {
    font-size: 25px;
    color: var(--red)
}
.abouttext p {
    font-size: 17px;
}


.menu-gallery img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px;
  box-shadow: 0 4px 8px 5px rgba(0,0,0,0.2);
}
.menu-gallery {
  display: flex;
  flex-wrap: wrap;            
  justify-content: center;    
  gap: 5px;
  background-color: var(--green);
  padding-top: 10px;
}
.menu-gallery h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: italic;
    color: var(--white);
    text-shadow: 2px 2px 2px rgba(13, 80, 8, 0.7);
}

}

@media (min-width: 600px) {
.side-menu {
    display: none;
  }
.mobilenav{ 
        display:none}
.mobilehead{
    display: none;
}

header {
    background-color: var(--red);
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    justify-content: center;
}

.computernav{
    display:flex;
    background-color: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    word-spacing: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 10px 20px;
}
.computernav h1 {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size:30px;
    margin: 0;
    color: var(--white);
    font-weight: 100;    
    letter-spacing: 1px;
    font-style: italic;
    word-spacing: 0;
    background-color: var(--green);
    height: 40px;
    width: 400px;
    border-radius: 20px;
    text-align: center;
    text-shadow: 2px 2px 2px rgba(13, 80, 8, 0.7);
}
.nav-left, .nav-right {
    display: flex;
    gap: 20px;
    margin: 0px 30px;
  }
.computernav a {
    color: var(--white);
}
.computernav a:hover{
    color: var(--green);
}

.bigpizza {
  background-image: url("https://images.pexels.com/photos/3908115/pexels-photo-3908115.jpeg");
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
  width: 100%;
  height: 400px; 
  filter: blur(1px);
}

.about{
    display: flex;
    margin: 15px;
}
.about img {
  border-radius: 15px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  filter: brightness(95%);
  width: 100%;
  max-width: 400px;
}
.abouttext {
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-right: 40px;
    text-align: right;
    padding-left: 40px;
}
.abouttext h1 {
    font-size: 40px;
    color: var(--red);
}
.abouttext p {
    font-size: 20px;
}

.menu-gallery {
  text-align: center;   
  gap: 10px;
  background-color: var(--green);
  padding-top: 10px;
}
.menu-gallery img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}
.menu-gallery img:hover {
  transform: scale(1.05);
}

.menu-gallery h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-style: italic;
    color: var(--white);
    text-shadow: 2px 2px 2px rgba(13, 80, 8, 0.7);
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

}

footer{
    background-color: var(--red);
}
