body {
  scroll-behavior: smooth;
}

/* HERO */
#header {
  background:
    linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.3)),
    url("./Images/hero2.png") no-repeat center;
  background-size: cover;
}

.hero-text {
  max-width: 900px;
}

.saffron {
  color: #ff9933;
  text-shadow: 0 4px 12px rgba(0,0,0,.4);
}

/* NAVBAR SCROLL */
#header1.scrolled {
  background-color: #ff9933;
  box-shadow: 0 0 15px #ff9933;
}

/* COMMON */
.section-padding {
  padding: 80px 0;
}

.accent-bar {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff9933, #F37022);
  margin: 16px auto 32px;
  border-radius: 4px;
}

.icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: transform .4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.15);
}
