/* Reset & Base */
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; overflow-x:hidden; background:#f8f9fa; }

/* Top Bar */
.top-bar { background: linear-gradient(135deg, #667eea, #764ba2); color:#fff; font-size:0.9rem; padding:5px 20px; }
.top-bar i { vertical-align: middle; }

/* Navbar */
.navbar { 
  background: linear-gradient(135deg, #2d3748, #1a202c); 
  padding:0.8rem 0; 
  box-shadow: 0 4px 20px #0000001a;
  /* border-radius: 0 0 15px 15px ; */
}
.navbar-brand img.logo-img { 
  height:70px; width:80px; 
  transition: transform 0.3s ease;
  border-radius: 50px;
}
.navbar-brand img.logo-img:hover { 
  transform: scale(1.05); 
}
.nav-link { 
  color:#fff !important;
  margin:0 1rem; 
  position:relative; 
}
.nav-link::after {
  content:''; 
  position:absolute;
  bottom:-3px;
  left:50%;
  width:0; 
  height:2px;
  background:#667eea;
  transition:0.3s; 
  transform:translateX(-50%);
}
.nav-link:hover::after { width:80%; }

/* Hero Section */
.hero-section { height: 100vh; position: relative; overflow: hidden; }
.carousel-item { height: 100vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2)); z-index:1; }
.hero-content { position: relative; z-index:2; max-width:600px; }
/* Default desktop background */
.carousel-item.desktop-bg {
  background-image: url('./asset/spicebg4.jpg');
  background-size: cover;
  background-position: center;
}

/* Mobile background using media query */
@media (max-width: 768px) {
  .carousel-item.desktop-bg {
    background-image: url('./asset/spicebg2.jpg');
  }
}

/* Hero Continuous Zoom */
.hero-slide {
  animation: zoomInOut 10s ease-in-out infinite alternate;
}
@keyframes zoomInOut {
  0% { transform: scale(1); }
  100% { transform: scale(1.09); }
}

/* Fancy Button */
.btn-fancy {
  position: relative;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  overflow:hidden;
  text-decoration:none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-fancy::before {
  content:"";
  position:absolute;
  top:0; left:-100%;
  width:100%; height:100%;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  transition:left 0.4s ease;
  z-index:-1;
}
.btn-fancy:hover::before { left:0; }
.btn-fancy:hover { transform: translateY(-3px) scale(1.05); box-shadow:0 8px 25px rgba(0,0,0,0.3); }

/* Features Section */
.features-section { background:#f0f4f8; padding:80px 0; }
.section-title {
  font-size:2.8rem; font-weight:800; color:#1e293b;
  position:relative; display:inline-block; padding-bottom:15px;
}
.section-title::after {
  content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width:80px; height:5px; background:linear-gradient(90deg, #667eea, #764ba2); border-radius:3px;
}
.feature-card {
  background:#f0f4f8; border-radius:25px; box-shadow:8px 8px 15px #d1d9e6, -8px -8px 15px #ffffff;
  padding:40px 20px; transition: all 0.5s ease; text-align:center;
}
.feature-card:hover { transform: translateY(-10px) scale(1.05); box-shadow:4px 4px 25px #c1c9d6, -4px -4px 25px #ffffff; }
.feature-icon {
  width:90px; height:90px; margin:0 auto 20px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, #667eea, #764ba2); color:white; font-size:2rem; transition: all 0.5s ease;
}
.feature-card:hover .feature-icon { transform: rotate(360deg) scale(1.1); }

/* Gallery Section */
.gallery-section { background:#f8f9fa; }
.gallery-item { border-radius:20px; overflow:hidden; box-shadow:0 10px 30px rgba(0,0,0,0.1); transition:all 0.4s ease; cursor:pointer; }
.gallery-item:hover { transform:scale(1.05); box-shadow:0 15px 50px rgba(0,0,0,0.2); }
.gallery-image { height:300px; background-size:cover; background-position:center; position:relative; display:flex; align-items:center; justify-content:center; }
.gallery-overlay { position:absolute; top:0; left:0; right:0; bottom:0; background:rgba(0,0,0,0.6); display:flex; flex-direction:column; align-items:center; justify-content:center; color:white; text-align:center; opacity:0; transition:all 0.4s ease; padding:20px; }
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay h5 { font-size:1.5rem; font-weight:700; margin-bottom:10px; transform:translateY(20px); transition: all 0.4s ease; }
.gallery-item:hover .gallery-overlay h5 { transform:translateY(0); }
.gallery-overlay p { transform:translateY(20px); transition: all 0.4s ease 0.1s; }
.gallery-item:hover .gallery-overlay p { transform:translateY(0); }

/* Order Section */
.order-section {
  position: relative;
  padding: 80px 0;
  background: url('./asset/formbg.jpg') center/cover no-repeat;
}
.order-section::before {
  content: "";
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.25);
  z-index: 0; /* send overlay behind map */
}

/* Glass-form */
.glass-form {
  position: relative;
  z-index:1;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-form:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.glass-form input,
.glass-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}
.glass-form input::placeholder,
.glass-form textarea::placeholder { color: rgba(255,255,255,0.7); }
.glass-form input:focus,
.glass-form textarea:focus {
  border-color: #43cea2;
  background: rgba(255,255,255,0.3);
  color:#000;
}
.glass-form textarea { resize: none; min-height: 120px; }
.glass-form button {
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #43cea2, #185a9d);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.glass-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

/* Right Column: Map */
.map-col {
  min-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.map-col iframe { width: 100%; border-radius: 10px; height: 100%; border: 0; pointer-events: auto; }

/* Footer */
.footer { background: linear-gradient(135deg, #2d3748, #1a202c); color:white; }
.social-links { display:flex; gap:15px; }
.social-icon { width:45px; height:45px; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; transition:all 0.3s ease; text-decoration:none; }
.social-icon:hover { background:linear-gradient(135deg, #667eea, #764ba2); transform:translateY(-5px); color:white; }
.footer-link { color:rgba(255,255,255,0.8); display:block; margin-bottom:10px; text-decoration:none; transition:color 0.3s ease, transform 0.3s ease; }
.footer-link:hover { color:#667eea; transform:translateX(5px); }

/* Mobile & Responsive */
@media (max-width:992px) {
  .map-col { min-height: 300px; margin-top:20px; }
}
@media (max-width:768px) {
  .glass-form { padding: 25px 20px; }
  .order-section { padding: 60px 0; }
  .hero-section { height:80vh; }
  .section-title { font-size:2rem; }
  .feature-card { margin-bottom:20px; padding:30px 15px; }
  .nav-link { margin:0.5rem 0; }
}
