body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* General styles */
h1, h2, h3 {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

a {
  color: #ff4040;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

a:hover {
  color: #ff7070;
  transform: scale(1.1);
}

button {
  background-color: #ff4040;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

button:hover {
  background-color: #ff7070;
  transform: translateY(-2px);
}

/* Header */
header {
  background-color: #222;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: #fff;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav ul li a:hover {
  color: #ff4040;
  transform: scale(1.1);
}

/* Hero Section */
#hero {
  background-color: #000;
  padding: 60px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  text-align: left;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.imgur.com/dummy-pizza-pattern.png');
  opacity: 0.1;
  z-index: 0;
}

#hero .hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  animation: pulse 5s infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

#hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#hero .hero-text {
  position: relative;
  z-index: 1;
}

#hero .hero-text h1 {
  font-size: 48px;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px #ff4040, 0 0 20px #ff4040;
  animation: neonGlow 3s infinite alternate;
}

@keyframes neonGlow {
  0% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px #ff4040, 0 0 20px #ff4040;
  }

  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px #ff7070, 0 0 30px #ff7070;
  }
}

#hero .hero-text p {
  font-size: 20px;
  color: #ddd;
  margin-bottom: 25px;
}

/* Menu Section */
#menu {
  padding: 60px 30px;
  text-align: center;
  background: linear-gradient(to bottom, #111, #222);
}

#menu h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

#menu .menu-item {
  background-color: #222;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

#menu .menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

#menu .menu-item h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

#menu .menu-item .description {
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

#menu .menu-item .price {
  font-weight: bold;
  color: #ff4040;
  font-size: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Image Upload Placeholder */
.image-upload-container {
  position: relative;
  width: 100%;
  height: 300px;
  border: 2px dashed #666;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.image-upload-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
}

.upload-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}

/* Order Section */
#order {
  padding: 60px 30px;
  text-align: center;
  background: linear-gradient(to bottom, #222, #111);
  position: relative;
  overflow: hidden;
}

#order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background-color: rgba(255, 64, 64, 0.1);
  transform: skewX(-20deg);
  transform-origin: top left;
  z-index: 0;
}

#order > * {
  position: relative;
  z-index: 1;
}

#order h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#order-form {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  background-color: #222;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#order-form label {
  text-align: left;
  margin-bottom: 10px;
  font-size: 20px;
  color: #ddd;
}

#order-form input, #order-form select, #order-form textarea {
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid #444;
  background-color: #111;
  color: #fff;
  border-radius: 7px;
  font-size: 18px;
  transition: border-color 0.3s ease;
}

#order-form input:focus, #order-form select:focus, #order-form textarea:focus {
  border-color: #ff4040;
  outline: none;
  box-shadow: 0 2px 4px rgba(255, 64, 64, 0.3);
}

/* Loyalty Section */
#loyalty {
  padding: 60px 30px;
  text-align: center;
  background: url('https://i.imgur.com/dummy-pizza-pattern.png');
  background-color: #111;
  background-blend-mode: multiply;
}

#loyalty h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#loyalty-tracker {
  background-color: #222;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

#loyalty-tracker:hover {
  transform: scale(1.05);
}

#loyalty-tracker p {
  font-size: 20px;
  margin-bottom: 15px;
}

.loyalty-bar-container {
  width: 100%;
  height: 25px;
  background-color: #444;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 15px;
}

.loyalty-bar {
  height: 100%;
  width: 0%;
  background-color: #ff4040;
  border-radius: 12px;
  transition: width 0.5s ease;
}

#redeem-points {
  margin-top: 25px;
}

/* Contact Section */
#contact {
  padding: 60px 30px;
  text-align: center;
  background-color: #222;
  color: #ddd;
  position: relative;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://i.imgur.com/dummy-pizza-pattern.png');
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.2;
  z-index: 0;
}

#contact > * {
  position: relative;
  z-index: 1;
}

#contact h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* FAQ Section */
#faq {
  padding: 60px 30px;
  text-align: left;
  background: linear-gradient(to bottom, #222, #111);
}

#faq h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.faq-item {
  background-color: #222;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #333;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
  transform: translateY(-3px);
}

.faq-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq-item p {
  font-size: 18px;
}

/* Gallery Section */
#gallery {
  padding: 60px 30px;
  text-align: center;
  background-color: #111;
}

#gallery h2 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
}

#load-more {
  margin-top: 30px;
}

/* Pizza Builder Section */
#pizza-builder {
  padding: 60px 30px;
  text-align: center;
  background: linear-gradient(to bottom, #222, #111);
}

#pizza-builder h3 {
  font-size: 42px;
  margin-bottom: 40px;
  color: #ff4040;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#pizza-canvas {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

#topping-choices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

#topping-choices button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#topping-choices button:hover {
  background-color: #555;
}

#topping-message {
  font-size: 18px;
  color: #ddd;
}

/* Footer */
footer {
  background-color: #222;
  padding: 30px;
  text-align: center;
  color: #ddd;
}

footer p {
  margin-bottom: 15px;
  font-size: 16px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #ff4040;
}

/* Ripple effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s forwards;
  background-color: rgba(255, 255, 255, 0.4);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}