/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #fff6ec;
  color: #1f2937;
  overflow-x: hidden;
}

/* ================= BACKGROUND BLOBS ================= */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  animation: blobMove 18s infinite ease-in-out;
}

.blob-1 {
  background: #ffd6a5;
  top: -120px;
  left: -120px;
}

.blob-2 {
  background: #ffb703;
  bottom: -120px;
  right: -120px;
  animation-delay: 6s;
}

.blob-3 {
  background: #ff8fab;
  top: 45%;
  left: 60%;
  animation-delay: 12s;
}

@keyframes blobMove {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.1); }
  100% { transform: translate(0,0) scale(1); }
}

/* ================= NAVBAR ================= */
.glass-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #ff7a00;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ff7a00;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 120px 20px 160px;
  position: relative;
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background: #ffe1c4;
  border-radius: 999px;
  color: #c2410c;
  font-size: 13px;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 28px;
}

.btn {
  background: #ff7a00;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= OFFERS ================= */
.offers {
  padding: 80px 20px;
  text-align: center;
}

.offers h2 {
  font-size: 28px;
  margin-bottom: 40px;
}

.offer-grid {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.offer-card {
  width: 280px;
  height: 280px;
  background: linear-gradient(180deg, #ffffff, #fff3e6);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #3f2d20;
  margin-bottom: 10px;
}

.offer-card p {
  font-size: 14px;
  color: #6b7280;
}

/* ================= WHY CHOOSE ================= */
.why {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.why h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.why p {
  font-size: 15px;
  color: #6b7280;
}

.phone {
  margin-top: 12px;
  font-weight: 600;
}

/* ================= CUSTOMER REVIEWS ================= */
.reviews {
  padding: 90px 20px;
  background: transparent;   /* 👈 SAME AS PAGE */
  text-align: center;
}

.reviews-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #374151;
}

/* ================= CONTACT ================= */
.contact-section {
  padding: 80px 20px;
  background: #fff6ec;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-size: 26px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.contact-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-box {
  flex: 1;
  display: flex;
  gap: 12px;
}

.contact-box p {
  font-size: 14px;
  color: #6b7280;
}

/* ================= FOOTER ================= */
.footer {
  background: #1f2937;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero h2 { font-size: 32px; }
  .offer-card { width: 240px; height: 240px; }
  .nav-container { flex-direction: column; gap: 12px; }
}

/* ================= SOCIAL MEDIA ================= */
.social-section {
  padding: 70px 20px 100px;
  background: #fff6ec;
  text-align: center;
}

.social-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #374151;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.22);
}

.social-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/* Instagram gradient */
.social-card.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

/* LinkedIn gradient */
.social-card.linkedin {
  background: linear-gradient(135deg, #0a66c2, #004182);
}

.designer-credit{
  text-align:center;
  font-size:13px;
  color:#6b7280;
  margin:40px 0 10px;
  letter-spacing:0.4px;
}

.designer-credit span{
  font-weight:600;
  color:#374151;
}

/* ================= FLOATING FOOD EMOJIS ================= */

.hero{
  position: relative;
  overflow: hidden;
}

/* common food emoji style */
.food{
  position: absolute;
  font-size: 42px;
  opacity: 0.18;              /* background feel */
  pointer-events: none;       /* don’t block clicks */
  animation: floatFood 10s ease-in-out infinite;
}

/* individual positions */
.food1{
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.food2{
  top: 55%;
  right: 12%;
  animation-delay: 2s;
}

.food3{
  bottom: 15%;
  left: 45%;
  animation-delay: 4s;
}

/* floating animation */
@keyframes floatFood{
  0%{
    transform: translateY(0) rotate(0deg);
  }
  50%{
    transform: translateY(-25px) rotate(8deg);
  }
  100%{
    transform: translateY(0) rotate(0deg);
  }
}

