/* ═══════════════════════════════════════
   Pizza Love Factory – Stylesheet
   ═══════════════════════════════════════ */
:root {
  --orange: #F7941D;
  --red:    #C8102E;
  --yellow: #FFD700;
  --black:  #0D0D0D;
  --dark:   #1A1A1A;
  --white:  #FFFFFF;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Lato', sans-serif; overflow-x: hidden; }

/* ── LANG SWITCHER ── */
.lang-switcher {
  position: fixed; top: 16px; right: 20px; z-index: 1100;
  display: flex; gap: 6px;
}
.lang-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(247,148,29,0.4);
  color: var(--white); padding: 5px 13px; border-radius: 20px;
  font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing:1px;
  cursor: pointer; transition: all .2s;
}
.lang-btn.active, .lang-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(13,13,13,0.96); backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--orange);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 40px;
  gap: 20px;
}
.nav-logo { height: 52px; }

.nav-links {
  display: flex; gap: 32px; list-style: none;
  justify-content: center; align-items: center;
}
.nav-links a {
  color: var(--white); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-size: 14px;
  letter-spacing: 1.5px; text-transform: uppercase; transition: color .3s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: none; }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0a00 50%, #0D0D0D 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; position:relative; overflow:hidden; padding-top:80px;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 60% 50%, rgba(247,148,29,0.12) 0%, transparent 70%);
}
.hero-text { padding: 60px 50px 60px 80px; position:relative; z-index:2; }
.hero-badge {
  display:inline-block; background:var(--red); color:var(--white);
  font-family:'Oswald',sans-serif; font-size:11px; letter-spacing:3px;
  text-transform:uppercase; padding:6px 16px; border-radius:2px; margin-bottom:20px;
}
.hero-title { font-family:'Playfair Display',serif; font-size:clamp(40px,5vw,70px); line-height:1.05; margin-bottom:10px; }
.hero-title em { color:var(--orange); font-style:italic; }
.hero-sub { font-family:'Oswald',sans-serif; font-size:15px; letter-spacing:4px; color:var(--yellow); text-transform:uppercase; margin-bottom:22px; }
.hero-desc { font-size:15px; line-height:1.8; color:#ccc; max-width:430px; margin-bottom:28px; }

.hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
.btn-primary { background:var(--orange); color:var(--black); padding:13px 30px; border-radius:4px; font-family:'Oswald',sans-serif; font-size:14px; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; font-weight:600; transition:transform .2s, background .2s; }
.btn-primary:hover { background:var(--yellow); transform:translateY(-2px); }
.btn-secondary { border:2px solid var(--orange); color:var(--orange); padding:13px 30px; border-radius:4px; font-family:'Oswald',sans-serif; font-size:14px; letter-spacing:1.5px; text-transform:uppercase; text-decoration:none; transition:all .2s; }
.btn-secondary:hover { background:var(--orange); color:var(--black); }

/* Social strip under hero CTA */
.hero-social { border-top:1px solid rgba(247,148,29,0.2); padding-top:22px; }
.hero-social-label { font-family:'Oswald',sans-serif; font-size:10px; letter-spacing:2px; color:#666; text-transform:uppercase; display:block; margin-bottom:12px; }
.hero-social-btns { display:flex; gap:10px; flex-wrap:wrap; }
.hs-btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:11px 18px; border-radius:8px;
  font-family:'Oswald',sans-serif; font-size:13px; letter-spacing:1px;
  text-decoration:none; font-weight:600; transition:transform .2s, opacity .2s;
  min-height:46px;
}
.hs-btn svg { width:18px; height:18px; flex-shrink:0; }
.hs-btn:hover { transform:translateY(-2px); opacity:.88; }
.hs-call   { background:var(--red);    color:#fff; }
.hs-insta  { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.hs-fb     { background:#1877F2; color:#fff; }
.hs-tiktok { background:#010101; color:#fff; border:1px solid #69C9D0; }

/* Hero image */
.hero-image-col { position:relative; height:100vh; display:flex; align-items:center; justify-content:center; }
.hero-laila { height:88vh; max-height:680px; object-fit:cover; object-position:top center; position:relative; z-index:2; filter:drop-shadow(0 0 40px rgba(247,148,29,0.3)); }
.hero-decor { position:absolute; top:20%; right:5%; width:110px; height:110px; border:2px dashed rgba(247,148,29,0.25); border-radius:50%; animation:spin 22s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* ── CAROUSEL ── */
.carousel {
  position: relative; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.carousel-track {
  position: relative; width: 100%; height: 100%;
}
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .6s ease;
  display: flex; align-items: center; justify-content: center;
}
.carousel-slide.active { opacity: 1; z-index: 2; }
.carousel-slide img {
  height: 88vh; max-height: 680px;
  object-fit: cover; object-position: top center;
  filter: drop-shadow(0 0 40px rgba(247,148,29,0.3));
  border-radius: 8px;
}

/* ── GOOGLE REVIEWS ── */
.reviews-section { padding: 100px 80px; background: var(--black); }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 50px; }
.google-rating {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--dark); border: 1px solid rgba(255,255,255,0.08);
  padding: 10px 22px; border-radius: 50px; margin-top: 16px;
}
.google-logo { height: 20px; filter: brightness(0) invert(1); opacity: .7; }
.stars-row { color: #FBBC04; font-size: 18px; letter-spacing: 2px; }
.rating-num { font-family: 'Oswald', sans-serif; font-size: 14px; color: #aaa; }
.reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 40px; }
.review-card {
  background: var(--dark); border-radius: 14px; padding: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  transition: border-color .3s, transform .3s;
}
.review-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.review-top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--black);
  font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-name { font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 1px; display: block; }
.review-stars { color: #FBBC04; font-size: 14px; }
.review-text { color: #aaa; font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.review-date { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 1px; color: #555; text-transform: uppercase; }
.reviews-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.rev-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 50px;
  font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none; font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.rev-btn:hover { transform: translateY(-3px); }
.rev-see { background: #fff; color: #222; box-shadow: 0 6px 20px rgba(255,255,255,0.1); }
.rev-see:hover { box-shadow: 0 10px 28px rgba(255,255,255,0.2); }
.rev-write { background: var(--orange); color: var(--black); box-shadow: 0 6px 20px rgba(247,148,29,0.3); }
.rev-write:hover { box-shadow: 0 10px 28px rgba(247,148,29,0.45); }

/* Arrows */
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(247,148,29,0.85); border: none;
  color: #000; font-size: 32px; font-weight: 900;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; line-height: 1;
  transition: background .2s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--orange); transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

/* Dots */
.carousel-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background .3s, transform .3s;
  border: none;
}
.dot.active { background: var(--orange); transform: scale(1.3); }
.ticker { background:var(--red); padding:11px 0; overflow:hidden; }
.ticker-inner { display:flex; gap:55px; animation:ticker 22s linear infinite; white-space:nowrap; }
.ticker-inner span { font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:3px; text-transform:uppercase; }
.ticker-inner span::before { content:'🍕  '; }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── SECTION LABELS ── */
.section-label { font-family:'Oswald',sans-serif; font-size:11px; letter-spacing:4px; color:var(--orange); text-transform:uppercase; margin-bottom:12px; display:block; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(30px,4vw,50px); line-height:1.1; margin-bottom:20px; }
.section-title em { color:var(--orange); font-style:italic; }

/* ── ABOUT ── */
.about { padding:100px 80px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; background:var(--dark); }
.about-img-wrap { position:relative; }
.about-img { width:100%; border-radius:8px; border:3px solid var(--orange); box-shadow:8px 8px 0 var(--red); }
.about-tag { position:absolute; bottom:-20px; right:-20px; background:var(--orange); color:var(--black); font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:2px; text-transform:uppercase; padding:11px 18px; border-radius:4px; }
.about-text p { color:#bbb; line-height:1.9; margin-bottom:16px; }
.about-stats { display:flex; gap:36px; margin-top:32px; }
.stat-num { font-family:'Playfair Display',serif; font-size:40px; color:var(--orange); display:block; }
.stat-label { font-family:'Oswald',sans-serif; font-size:11px; letter-spacing:2px; color:#777; text-transform:uppercase; }

/* ── MENU GRID ── */
.menu-section { padding:100px 80px; background:var(--black); }
.menu-section .section-header { text-align:center; margin-bottom:56px; }
.menu-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.menu-card { background:var(--dark); border-radius:14px; overflow:hidden; border:1px solid rgba(247,148,29,0.12); transition:transform .3s, border-color .3s, box-shadow .3s; }
.menu-card:hover { transform:translateY(-8px); border-color:var(--orange); box-shadow:0 16px 40px rgba(247,148,29,0.15); }

.menu-card-img { position:relative; overflow:hidden; height:200px; }
.menu-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; display:block; }
.menu-card:hover .menu-card-img img { transform:scale(1.08); }
.menu-card-overlay {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(transparent, rgba(0,0,0,0.85));
  padding:20px 14px 10px;
  font-family:'Oswald',sans-serif; font-size:11px; letter-spacing:1px;
  color:var(--yellow); opacity:0; transition:opacity .3s;
}
.menu-card:hover .menu-card-overlay { opacity:1; }

.menu-card-body { padding:18px 20px 22px; }
.menu-card-icon { font-size:26px; margin-bottom:8px; }
.menu-card-title { font-family:'Playfair Display',serif; font-size:18px; margin-bottom:7px; }
.menu-card-desc { color:#777; font-size:13px; line-height:1.6; }

/* ── HOURS & MAP ── */
.info-section { padding:100px 80px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; background:var(--dark); }
.hours-table { width:100%; border-collapse:collapse; margin-top:28px; }
.hours-table tr { border-bottom:1px solid rgba(255,255,255,0.06); }
.hours-table td { padding:13px 0; font-size:15px; color:#ccc; }
.hours-table td:last-child { text-align:right; color:var(--orange); font-family:'Oswald',sans-serif; }
.hours-table tr.today td { color:var(--yellow); font-weight:700; }
.hours-table tr.today td:last-child { color:var(--yellow); }
.delivery-note { margin-top:20px; font-family:'Oswald',sans-serif; font-size:13px; letter-spacing:1px; color:#888; }
.map-wrap { border-radius:8px; overflow:hidden; border:3px solid var(--orange); box-shadow:8px 8px 0 var(--red); }
.map-wrap iframe { width:100%; height:340px; border:none; display:block; }
.address-line { margin-top:14px; font-family:'Oswald',sans-serif; font-size:13px; letter-spacing:1px; color:#888; }
.address-line span { color:var(--orange); }

/* ── CONTACT / BIG BUTTONS ── */
.contact-section { padding:100px 80px; text-align:center; background:var(--black); position:relative; overflow:hidden; }
.contact-section::before { content:''; position:absolute; top:-40%; left:50%; transform:translateX(-50%); width:600px; height:600px; background:radial-gradient(circle,rgba(247,148,29,0.08) 0%,transparent 70%); }
.contact-section .section-title { margin-bottom:50px; position:relative; }

.contact-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; max-width:860px; margin:0 auto; position:relative; }

.big-btn {
  display:flex; align-items:center; gap:20px;
  padding:22px 30px; border-radius:14px;
  text-decoration:none; font-weight:600;
  transition:transform .25s, box-shadow .25s;
  min-height:90px;
}
.big-btn svg { width:36px; height:36px; flex-shrink:0; }
.big-btn:hover { transform:translateY(-4px); }
.big-btn-label { font-family:'Oswald',sans-serif; font-size:12px; letter-spacing:2px; text-transform:uppercase; opacity:.8; display:block; margin-bottom:4px; }
.big-btn-val { font-family:'Oswald',sans-serif; font-size:20px; letter-spacing:1px; font-weight:700; display:block; }

.big-call   { background:var(--red);    color:#fff; box-shadow:0 8px 28px rgba(200,16,46,.35); }
.big-call:hover { box-shadow:0 14px 36px rgba(200,16,46,.5); }
.big-insta  { background:linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; box-shadow:0 8px 28px rgba(220,39,67,.3); }
.big-insta:hover { box-shadow:0 14px 36px rgba(220,39,67,.45); }
.big-fb     { background:#1877F2; color:#fff; box-shadow:0 8px 28px rgba(24,119,242,.3); }
.big-fb:hover { box-shadow:0 14px 36px rgba(24,119,242,.45); }
.big-tiktok { background:#111; color:#fff; border:1px solid #69C9D0; box-shadow:0 8px 28px rgba(105,201,208,.15); }
.big-tiktok:hover { box-shadow:0 14px 36px rgba(105,201,208,.3); }

/* ── FOOTER ── */
footer {
  background:#080808;
  padding: 28px 80px 90px;
  display:flex; justify-content:space-between; align-items:center;
  border-top:1px solid rgba(247,148,29,0.15);
  flex-wrap:wrap; gap:12px;
}
footer img { height:38px; }
footer p { color:#555; font-size:12px; }
footer a { color:var(--orange); text-decoration:none; }
.footer-love { color:#444 !important; }
.footer-center { text-align:center; }
.footer-credit { font-size:11px !important; color:#444 !important; letter-spacing:.5px; }
.footer-credit a { color:#666 !important; text-decoration:underline; }
.footer-credit a:hover { color:var(--orange) !important; }

/* ── FLOATING CALL BUTTON ── */
.float-call {
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%);
  z-index:1000;
  display:flex; align-items:center; gap:10px;
  background:var(--red); color:#fff;
  padding:15px 32px; border-radius:50px;
  font-family:'Oswald',sans-serif; font-size:16px; letter-spacing:1.5px; font-weight:700;
  text-decoration:none; text-transform:uppercase;
  box-shadow:0 6px 28px rgba(200,16,46,0.55);
  transition:transform .2s, box-shadow .2s;
}
.float-call svg { width:20px; height:20px; }
.float-call:hover { transform:translateX(-50%) translateY(-3px); box-shadow:0 10px 36px rgba(200,16,46,0.7); }

/* ── FADE IN ── */
.fade-in { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE – MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  /* Navbar mobile */
  nav { grid-template-columns: auto 1fr auto; padding: 10px 16px; }
  .nav-logo { height: 42px; }

  /* Nav links hidden by default, shown as dropdown when open */
  .nav-links {
    display: none;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column; gap: 0;
    padding: 8px 0 16px;
    border-bottom: 2px solid var(--orange);
    z-index: 998;
    justify-content: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 16px 30px;
    font-size: 16px; letter-spacing: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links a:hover { background: rgba(247,148,29,0.08); color: var(--orange); }

  /* Show hamburger */
  .hamburger { display: flex; }

  /* Lang switcher stays top right */
  .lang-switcher { top: 18px; right: 16px; z-index: 1200; }

  /* Hero & Carousel mobile */
  .hero { grid-template-columns:1fr; padding:90px 0 0; min-height:auto; }
  .hero-text { padding:30px 20px 20px; order:2; }
  .hero-image-col { height:80vw; order:1; }
  .hero-title { font-size:clamp(34px,9vw,52px); }

  /* Carousel images fill the column fully on mobile */
  .carousel { height: 80vw; }
  .carousel-track { height: 80vw; }
  .carousel-slide img {
    width: 100%; height: 100%;
    max-height: none;
    object-fit: cover; object-position: center top;
    border-radius: 0;
    filter: none;
  }
  .carousel-btn { width: 36px; height: 36px; font-size: 24px; }

  /* Reviews mobile */
  .reviews-section { padding: 60px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rev-btn { width: 100%; justify-content: center; }

  /* Social buttons on mobile: stack vertically */
  .hero-social-btns { flex-direction:column; gap:10px; }
  .hs-btn { width:100%; justify-content:center; font-size:14px; padding:13px 20px; min-height:52px; }

  /* About */
  .about { grid-template-columns:1fr; padding:60px 20px; gap:40px; }
  .about-tag { right:0; }
  .about-stats { gap:20px; }

  /* Menu */
  .menu-section { padding:60px 20px; }
  .menu-grid { grid-template-columns:1fr; gap:18px; }
  .menu-card-img { height:180px; }

  /* Hours */
  .info-section { grid-template-columns:1fr; padding:60px 20px; gap:50px; }

  /* Contact big buttons: stack vertically */
  .contact-section { padding:60px 20px; }
  .contact-grid { grid-template-columns:1fr; gap:14px; max-width:100%; }
  .big-btn { padding:18px 22px; min-height:76px; }
  .big-btn svg { width:30px; height:30px; }
  .big-btn-val { font-size:17px; }

  /* Footer */
  footer { flex-direction:column; text-align:center; padding:24px 20px 90px; }

  /* Float call button: full width bar at bottom */
  .float-call {
    left:0; right:0; bottom:0;
    transform:none; border-radius:0;
    padding:16px 20px;
    justify-content:center;
    font-size:15px;
    box-shadow:0 -4px 20px rgba(200,16,46,0.4);
  }
  .float-call:hover { transform:none; }
  body { padding-bottom:58px; }
}
