/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f8f9fb;
  color: #222;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Marquee */
.news {
  background: #ffcd00;
  color: #111;
  padding: 10px 0;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  position: sticky;
  z-index: 999;
}

/* Slider */
.hero-slider {
  height: 80vh;
  overflow: hidden;
  position: relative;
}
.slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
  animation: fadeEffect 1.5s ease-in-out;
}
@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Gallery */
.gallery {
  padding: 70px 80px;
  background: linear-gradient(to bottom right, #fafbfc, #f0f1f4);
  text-align: center;
}
.gallery h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  position: relative;
}
.gallery h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ffcd00;
  margin: 10px auto 0;
  border-radius: 2px;
}
.collage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  }
  
.collage img {
  width: 100%;
  height: 220px;
  background-color: #faf1f7;
  object-fit: contain;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.collage img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background:  #ffcd00;
  border: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  z-index: 1500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.floating-btn:hover {
  background: #193153;
  color: white;
  transform: translateY(-4px);
}
.floating-btn i {
  margin-right: 6px;
}

/* Order Form */
.fixed-form {
  position: fixed;
  right: 25px;
  bottom: 95px;
  width: 360px;
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  z-index: 1600;
  transition: all 0.4s ease;
}
.fixed-form.hidden {
  transform: translateY(50px);
  opacity: 0;
  pointer-events: none;
}
.form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.form-header h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #193153;
}
.close-btn {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #444;
  cursor: pointer;
}

.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fixed-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}
.fixed-form input,
.fixed-form select {
  padding: 10px 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 0.9rem;
  background: #fafafa;
  transition: border 0.2s, box-shadow 0.2s;
}
.fixed-form input:focus,
.fixed-form select:focus {
  border-color: #ffcd00;
  box-shadow: 0 0 6px rgba(255, 205, 0, 0.4);
  outline: none;
}
.submit-btn {
  margin-top: 18px;
  padding: 12px;
  width: 100%;
  background: #193153;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.submit-btn:hover {
  background: #5a0238;
  color: white;
}

/* Popup */
.popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2000;
  backdrop-filter: blur(4px);
}
.popup-content {
  background: white;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: pop 0.35s ease;
}
@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.popup-content button {
  margin-top: 15px;
  padding: 10px 18px;
  background: #ffcd00;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.popup-content button:hover {
  background: #111;
  color: white;
}

/* =================== NEW FOOTER =================== */
.new-footer {
  background: linear-gradient(135deg, #8c2f70, #d94f9c);
  color: #fff;
  padding: 60px 8% 30px;
  font-family: "Poppins", sans-serif;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 30px;
}

.footer-brand img {
  width: 60px;
  margin-bottom: 10px;
}
.footer-brand h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffd54f;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #fce4ec;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd54f;
  position: relative;
}
.footer-links ul,
.footer-contact ul {
  list-style: none;
}
.footer-links li,
.footer-contact li {
  margin: 8px 0;
}
.footer-links a {
  text-decoration: none;
  color: #fce4ec;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #ffd54f;
  padding-left: 5px;
}

.footer-contact li {
  font-size: 14px;
  color: #fce4ec;
}

.footer-social {
  margin-top: 12px;
}
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px;
  border-radius: 50%;
  font-size: 15px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #ffd54f;
  color: #8c2f70;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  color: #fce4ec;
}

.footer-bottom span {
  color: #ffd54f;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .new-footer {
    padding: 40px 5% 20px;
  }
  .footer-brand img {
    width: 50px;
  }
  .footer-brand h2 {
    font-size: 20px;
  }
  .footer-links h4,
  .footer-contact h4 {
    font-size: 16px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}

/* Responsive */
@media (max-width: 768px) {

  .fixed-form {
    width: 92%;
    right: 4%;
    bottom: 100px;
  }
  .gallery {
    padding: 50px 25px;
  }
  .hero-slider {
    height: 60vh;
  }
}

/* ================= IMAGE MODAL ================= */
.image-modal {
  display: none;
  position: fixed;
  z-index: 1800;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  margin: auto;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 550px;
  text-align: center;
  position: relative;
  animation: pop 0.4s ease;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 20px;
  color: #333;
  font-size: 28px;
  cursor: pointer;
  transition: 0.3s;
}
.close-modal:hover {
  color: #d94f9c;
}

.modal-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.modal-content h3 {
  font-size: 1.3rem;
  color: #193153;
  margin-bottom: 8px;
}

.modal-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

.modal-order-btn {
  background: #ffcd00;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.modal-order-btn:hover {
  background: #193153;
  color: white;
}
