/* style.css */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fffbe7;
  color: #2d2d2d;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff7a00;
  font-family: 'Montserrat', Arial, sans-serif;
}

.brand {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}

.nav-buttons .btn.small {
  padding: 0.5rem 1rem;
  background-color: #001f3f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 5vw 32px 5vw;
  background: linear-gradient(90deg, #fffbe7 60%, #ffe0b2 100%);
  min-height: 350px;
  gap: 32px;
}

.hero-left {
  flex: 1;
  min-width: 220px;
}

.hero-left h4 {
  color: #ff9800;
  margin-bottom: 8px;
  font-size: 1.1em;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.hero-left h1 {
  font-size: 2.5em;
  margin: 0 0 12px 0;
  line-height: 1.1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

.hero-left .highlight {
  color: #e65100;
  background: #fff3e0;
  padding: 0 6px;
  border-radius: 6px;
}

.hero-sub {
  font-size: 1.1em;
  margin-bottom: 18px;
  color: #555;
}

.hero-btn {
  background: #ff9800;
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-weight: bold;
  border: none;
  font-size: 1.1em;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}
.hero-btn:hover {
  background: #e65100;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-width: 220px;
}

.hero-image-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  position: relative;
}

.hero-image-wrapper img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(255,152,0,0.13);
  background: #fff;
  transition: transform 0.2s;
}

.hero-image-wrapper .small-pic {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  position: absolute;
  right: -40px;
  bottom: 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}

.hero-shape {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  background: #ffe0b2;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.5;
}

.about {
  background: #fffbe7;
  padding: 48px 5vw;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}

.left-tilt img {
  transform: rotate(-6deg);
}
.right-tilt img {
  transform: rotate(6deg);
}

.about-content {
  max-width: 400px;
  text-align: center;
}

.about-content h2 {
  color: #e65100;
  margin-bottom: 10px;
}

.about-content p {
  color: #444;
  margin-bottom: 18px;
}

.about-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.btn {
  background: #ff9800;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.btn:hover {
  background: #e65100;
}
.btn.outline {
  background: #fff;
  color: #ff9800;
  border: 2px solid #ff9800;
}
.btn.outline:hover {
  background: #ffe0b2;
  color: #e65100;
}

.special {
  background: white;
  padding: 42px 5vw 32px 5vw;
  text-align: center;
}
.special-title {
  color: #e65100;
  margin-bottom: 8px;
}
.special-desc {
  color: #444;
  margin-bottom: 22px;
}
.pizza-specials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pizza-piece img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255,152,0,0.10);
  background: #fff;
}
.pizza-menu-box {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,152,0,0.10);
  padding: 18px 24px;
  max-width: 420px;
  margin: 0 auto;
  justify-content: center;
}
.pizza-menu-box img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}
.pizza-menu-info {
  text-align: left;
}
.pizza-menu-price {
  color: #ff9800;
  font-weight: bold;
  font-size: 1.1em;
  margin: 4px 0 8px 0;
}
.social-icons a {
  color: #ff9800;
  text-decoration: underline;
  font-weight: bold;
  font-size: 1em;
}
.social-icons a:hover {
  color: #e65100;
}

footer {
  padding: 2rem;
  background-color: #fff1e6;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-content ul li a {
  text-decoration: none;
  color: #333;
}
@media (max-width: 900px) {
    .hero, .about-wrapper, .pizza-specials, .pizza-menu-box {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .hero {
        padding: 32px 2vw 24px 2vw;
    }
    .about {
        padding: 32px 2vw;
    }
    .special {
        padding: 28px 2vw 18px 2vw;
    }
    .pizza-menu-box {
        padding: 14px 8vw;
    }
    .hero-image-wrapper .small-pic {
        position: static;
        width: 70px;
        height: 70px;
        margin-left: 12px;
    }
    .hero-shape {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-left h1 {
        font-size: 1.3em;
    }
    .about-content h2 {
        font-size: 1.1em;
    }
    .pizza-menu-box {
        flex-direction: column;
        gap: 10px;
        padding: 10px 2vw;
    }
}