@import url("responsivity.css");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    line-height: 1.6;
  }
  
  ::selection {
    background-color: #d2b48c;
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
  }
  
  /* header */
  header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
  }
  
  .nav a:hover {
    color: gray;
  }
  
  /* menu */
  .menu {
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .menu h2 {
    margin-bottom: 30px;
    font-size: 180%;
  }
  
  .pizza-table {
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 100px 40px;
    table-layout: fixed;
    width: 100%;
    max-width: 1600px;
    word-wrap: break-word;
  }
  
  .pizza-table td {
    vertical-align: middle;
    text-align: center;
    padding: 0 10px;
    width: 33%;
  }

  .pizza-table img {
    max-width: 280px;
    border-radius: 8px;
  }
  
  /* pizzamaking about */
  .about {
    background-color: rgb(230, 230, 230);
    padding: 40px 20px;
  }
  
  .about h2 {
    text-align: center;
    font-size: 180%;
    margin-bottom: 30px;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }
  
  .cooking-video video {
    max-width: 600px;
    border-radius: 10px;
  }
  
  .about-text {
    max-width: 600px;
  }
  
  .about-text p {
    margin-bottom: 20px;
  }

  /* linkek */
  a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: color 0.2s, border-color 0.2s;
  }
  
  /* js pizzazoomhoz */
  .zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .zoomed-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
  }
  
  /* footer */
  footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }