body, .container-wrap {
  position: relative;
  z-index: 2;
}

#background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* So it won't block clicks */
  background: radial-gradient(circle at center, #6363b9, #ffffff);
  transition: background-position 0.1s ease;
  z-index: -1; /* Behind everything */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.main-header {
  background: linear-gradient(to right, #5997c6, #ffffff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #f9b233;
  padding: 15px 30px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.1);
}

.title-text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.title-text p {
  font-size: 14px;
  color: #010000;
  margin-top: 2px;
}

.icon-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.icon-link {
  color: #8059f5;
  text-decoration: none;
  font-size: 22px;
  transition: color 0.3s;
}

.icon-link:hover {
  color: #5c3cc0;
}

    header div, footer div {
      box-sizing: border-box;
    }
    h1, h2, h3 {
      margin: 0 0 10px 0;
    }
    .container-wrap {
      padding: 20px;
      max-width: 1200px;
      margin: 40px auto;
    }
    .model-block {
      margin-bottom: 40px;
    }


   .model-qr-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.qr-box canvas {
  width: 150px;
  height: 150px;
}


    model-viewer {
      width: 100%;
      max-width: 600px;
      height: 400px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    .qr-box {
      margin-top: 10px;
    }
    .qr-box p {
      margin: 0 0 5px 0;
      font-weight: bold;
    }
    /* Footer styles */
    footer {
      background-color: #222;
      color: #fff;
      padding: 40px 20px;
      font-family: Arial, sans-serif;
    }
    footer a {
      color: #f9b233;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
    footer .footer-container {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      gap: 20px;
    }
    footer .footer-section {
      flex: 1;
      min-width: 200px;
    }
    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 14px;
      line-height: 2;
    }
    footer ul li a {
      color: #fff;
      text-decoration: none;
    }
    footer ul li a:hover {
      text-decoration: underline;
    }
    footer .main-persons a {
      display: inline-block;
      background: #333;
      padding: 5px 10px;
      border-radius: 5px;
      color: #fff;
      margin: 3px 5px 3px 0;
      text-decoration: none;
      font-size: 14px;
    }
    footer .main-persons a.delicious,
    footer .main-persons a.desserts,
    footer .main-persons a.drinks {
      background: #333;
    }
    footer .main-persons a.allaha {
      background-image: url(./images/allaha.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      padding: 5px 70px;
      color: transparent;
      pointer-events: none;
    }
    footer .subscribe form {
      display: flex;
      align-items: center;
    }
    footer .subscribe input[type="email"] {
      padding: 10px;
      flex: 1;
      font-size: 14px;
      border: none;
      border-radius: 5px 0 0 5px;
    }
    footer .subscribe button {
      background: #f9b233;
      color: #fff;
      border: none;
      padding: 8px 12px;
      border-radius: 0 5px 5px 0;
      cursor: pointer;
      font-weight: bold;
    }
    footer .social-icons a {
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      margin-right: 15px;
    }
    footer .social-icons a:hover {
      color: #f9b233;
    }
    footer .bottom-text {
      text-align: center;
      margin-top: 40px;
      font-size: 12px;
      color: #ccc;
    }
    footer .bottom-text a {
      color: #f9b233;
      margin: 0 10px;
      font-size: 12px;
      text-decoration: none;
    }
    @media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .logo-section {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .title-text {
    flex: 1;
    margin-top: 10px;
  }

  .icon-links {
    margin-top: 0;
    justify-content: flex-start;
    width: 100%;
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .main-header {
    padding: 10px 15px;
  }

  .logo-image {
    width: 60px;
    height: 60px;
  }

  .title-text h1 {
    font-size: 20px;
  }

  .title-text p {
    font-size: 12px;
  }

  .icon-link {
    font-size: 20px;
  }

  .model-qr-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  footer .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  footer .subscribe form {
    flex-direction: column;
    align-items: stretch;
  }

  footer .subscribe input[type="email"],
  footer .subscribe button {
    width: 100%;
    border-radius: 5px;
    margin-top: 8px;
  }

  footer .social-icons {
    margin-top: 10px;
  }

  footer .bottom-text {
    text-align: left;
    margin-top: 20px;
  }
}