body {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to bottom, #fffaf0, #fff);
}
/* Hero Section Full Background */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  background: url("img/sweets.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Dark overlay for readability */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.brand-tagline {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffcc66;
}

.brand-slogan {
  font-size: 3.2rem;
  line-height: 1.2;
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
  color: #ff6600;
}

.hero p {
  max-width: 700px;
  margin: auto;
}

/* WhatsApp Button */
.hero .btn-success {
  border-radius: 50px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.hero .btn-success:hover {
  transform: translateY(-3px);
}

/* Animations */
@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .brand-slogan {
    font-size: 2rem;
  }
  .hero {
    height: 90vh;
    padding: 20px;
  }
}

.menu-item img {
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.branch-card {
  border-radius: 15px;
  transition: transform 0.3s;
}
.branch-card:hover {
  transform: translateY(-5px);
}
footer {
  background: #fff7ed;
  padding: 30px;
}
.menu-item {
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.menu-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #b45309;
  margin-bottom: 5px;
}

.menu-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.hover-effect a.btn {
  transition: all 0.3s;
}

.hover-effect a.btn:hover {
  background: #b45309;
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar height */
/* Dropdown hover open */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* dropdown smoothly attach ho nav ke niche */
  animation: fadeIn 0.2s ease-in-out;
}

/* Chhota animation for smoothness */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Navbar base */
.custom-navbar {
  background: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: fixed; /* always fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

/* Logo default */
.navbar-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
}

/* Scroll effect -> shrink logo */
.navbar.scrolled .navbar-logo {
  width: 50px;
  height: 50px;
  top: 0;
}

/* Links */
.navbar .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.navbar .nav-link i {
  margin-right: 5px;
  color: #d97706;
}
.navbar .nav-link:hover {
  color: #d97706 !important;
}

/* Dropdown menu */
.dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.dropdown-item i {
  margin-right: 5px;
  color: #d97706;
}

/* Mobile view */
@media (max-width: 991px) {
  .navbar-logo {
    position: relative;
    transform: none;
    margin: 5px auto;
    width: 50px; /* mobile pe small */
    height: 50px;
  }

  .collapse.navbar-collapse {
    background: #fff; /* menu ka background white */
    padding: 10px;
  }
}
