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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background-color: #050608;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5, 6, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-area {
  flex: 1;
  min-width: 140px;
}

.logo-img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5f5f5;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 0.5rem;
}

.btn {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 87, 34, 0.5);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 0.96rem;
}

.btn-full {
  width: 100%;
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
}

.btn-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497 0, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}

/* HERO */

.hero {
  position: relative;
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/pizza1.jpg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(244, 67, 54, 0.65), transparent 55%), radial-gradient(circle at bottom left, rgba(255, 152, 0, 0.75), transparent 50%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 32rem;
  font-size: 1.02rem;
}

.hero-cta {
  margin: 1.5rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-info {
  font-size: 0.9rem;
  opacity: 0.9;
}

.hero-highlight {
  justify-self: center;
}

.hero-highlight img {
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.12);
}

/* SECTIONS */

.section {
  padding: 3.5rem 1.25rem;
}

.section.light {
  background: #faf7f4;
  color: #222;
}

.section.dark {
  background: radial-gradient(circle at top, #1b1b24 0, #050608 55%);
  color: #f5f5f5;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.bullet-panel {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.section.dark .bullet-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.05);
}

.bullet-panel h3 {
  margin-bottom: 0.5rem;
}

.bullet-panel ul {
  list-style: none;
  margin-top: 0.5rem;
}

.bullet-panel li {
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.98rem;
}

.bullet-panel li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff9800;
}

/* CARDS */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1.1rem 1.2rem 1.3rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.95;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 152, 0, 0.7);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.7);
}

/* VIDEO */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* GALLERY */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-item {
  border-radius: 0.9rem;
  cursor: pointer;
  height: 180px;
  object-fit: cover;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
  filter: brightness(1.05);
}

/* LIGHTBOX */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* SOCIAL */

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-embed {
  max-width: 420px;
  justify-self: center;
}

.fb-embed iframe {
  border-radius: 1.25rem;
}

/* CONTACT */

.contact-list {
  list-style: none;
  margin-top: 1rem;
}

.contact-list li {
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
}

.contact-form {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section.light .contact-form {
  background: #fff;
  border-color: #eee;
}

.form-row {
  margin-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

label {
  font-size: 0.9rem;
}

input,
textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.55rem 0.75rem;
  font: inherit;
}

.section.dark input,
.section.dark textarea {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

/* MAP */

.map-wrapper {
  margin-top: 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

/* FOOTER */

.site-footer {
  background: #050608;
  color: #aaa;
  text-align: center;
  padding: 1.75rem 1.25rem 2.25rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer a {
  color: #fff;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  z-index: 90;
}

.whatsapp-float span {
  font-size: 1.5rem;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .nav-actions {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-highlight {
    display: none;
  }

  .two-cols {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav {
    order: 2;
  }

  .section {
    padding-inline: 1rem;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-wrapper,
  .map-wrapper {
    box-shadow: none;
  }

  .contact-form {
    padding: 1.1rem;
  }
}
