body { margin:0; font-family:'Poppins', sans-serif; scroll-behavior:smooth; }
.navbar { background:#2c3e50; }
.navbar .nav-link { color:white !important; margin:0 10px; font-weight:500; }
.navbar .nav-link:hover { color:#ff9800 !important; }
#hero {
  background: url('img/hero.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
#hero h1, #hero p {
  font-family: 'Montserrat', 'Poppins', sans-serif;
}
#hero h1 {
  font-size:3.5rem;
  font-weight:700;
  letter-spacing:2px;
  animation: heroFadeUp 1.2s cubic-bezier(.4,0,.2,1) 0.2s both;
}
#hero p {
  font-size:1.3rem;
  font-weight:400;
  letter-spacing:1px;
  animation: heroFadeUp 1.2s cubic-bezier(.4,0,.2,1) 0.6s both;
}
@keyframes heroFadeUp {
  0% { opacity:0; transform:translateY(40px) scale(0.98); }
  60% { opacity:0.7; transform:translateY(-8px) scale(1.01); }
  100% { opacity:1; transform:translateY(0) scale(1); }
}
header .content { position:relative; z-index:2; }
header h1 { font-size:3.5rem; font-weight:700; }
header p { font-size:1.3rem; }
.btn-main {
  background: linear-gradient(90deg, #ff9800 0%, #ff3c00 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1), box-shadow 0.22s, background 0.4s;
}
.btn-main::after {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.05) 100%);
  transform: skewX(-20deg);
  transition: left 0.5s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.btn-main:hover, .btn-main:focus {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(255, 60, 0, 0.18);
  background: linear-gradient(90deg, #ff3c00 0%, #ff9800 100%);
}
.btn-main:hover::after, .btn-main:focus::after {
  left: 120%;
}
section { padding:80px 0; }
.feature { padding:30px; border-radius:12px; background:white; box-shadow:0 4px 12px rgba(0,0,0,0.1); transition:.3s; }
.feature:hover { transform:translateY(-10px); }
footer {
  background: url('img/footer.jpg') center/cover no-repeat, #222;
  color:white;
  text-align:center;
  padding:30px 0;
  position:relative;
}
footer .overlay {
  position:absolute;
  inset:0;
  background:rgba(34,34,34,0.68);
  z-index:0;
}
footer .content {
  position:relative;
  z-index:1;
}
footer a { color:#ff9800; text-decoration:none; }
footer a:hover { color:white; }
.custom-navbar {
  background: #fff !important;
  box-shadow: 0 4px 18px rgba(44,62,80,0.10);
  padding: 0.7rem 2rem;
  /* Remove rounded corners for a flat navbar */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.custom-navbar .navbar-brand img {
  height: 44px;
  border-radius: 12px;
  margin-right: 10px;
  background: none;
  box-shadow: none;
}
.custom-navbar .nav-link {
  color: rgb(106, 2, 2) !important;
  margin: 0 14px;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  border-radius: 8px;
  padding: 8px 16px;
  transition: color 0.2s;
  position: relative;
  background: none !important;
  overflow: hidden;
}
.custom-navbar .nav-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 3px;
  background: rgb(106, 2, 2);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.custom-navbar .nav-link:hover::after, .custom-navbar .nav-link:focus::after {
  transform: scaleX(1);
}
.custom-navbar .nav-link:hover, .custom-navbar .nav-link:focus {
  color: rgb(106, 2, 2) !important;
  background: none !important;
  transform: none;
  box-shadow: none;
}
.custom-navbar .nav-link.active {
  color: rgb(106, 2, 2) !important;
  background: none !important;
  font-weight: 700;
}
.custom-navbar .navbar-toggler {
  border-radius: 8px;
  border: none;
  background: rgb(106, 2, 2);
  padding: 6px 10px;
}
#about {
  position:relative;
  z-index:1;
  background:#f9f9f9;
  overflow:hidden;
}
#about h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2c3e50;
  margin-bottom: 22px;
  text-shadow: 0 2px 8px rgba(44,62,80,0.06);
}
#about p {
  font-family: 'Roboto', 'Poppins', sans-serif;
  font-size: 1.13rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}
#about .img-fluid {
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow;
}
#about .img-fluid:hover, #about .img-fluid:focus {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 12px 32px rgba(255, 152, 0, 0.18), 0 2px 16px rgba(44,62,80,0.10);
  z-index: 2;
}
#events {
  background:#f9f9f9;
}
#events h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #2c3e50;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(44,62,80,0.06);
}
#events .feature {
  position: relative;
  overflow: visible;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  transition: box-shadow 0.4s cubic-bezier(.4,0,.2,1), transform 0.4s cubic-bezier(.4,0,.2,1);
}
.card-texture {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  z-index: 1;
  pointer-events: none;
}
#events .feature .card-content {
  position: relative;
  z-index: 2;
  background: transparent;
}
#events .feature img {
  width: 100%;
  max-width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
}
#events .feature:hover, #events .feature:focus {
  box-shadow: 0 12px 32px rgba(255, 60, 0, 0.18), 0 2px 16px rgba(44,62,80,0.10);
  transform: translateY(-12px) scale(1.00);
  z-index: 2;
}
.event-flower {
  position: absolute;
  left: 50%;
  top: -40px;
  width: 38px;
  height: 38px;
  transform: translateX(-50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 3;
}
#events .feature:hover .event-flower {
  animation: flowerDrop 0.85s cubic-bezier(.4,0,.2,1) forwards;
  opacity: 1;
}
@keyframes flowerDrop {
  0% { opacity: 0; transform: translateX(-50%) translateY(-30px) scale(0.7) rotate(-20deg); }
  40% { opacity: 1; }
  80% { transform: translateX(-50%) translateY(18px) scale(1.05) rotate(8deg); }
  100% { opacity: 1; transform: translateX(-50%) translateY(30px) scale(1) rotate(0deg); }
}
#gallery {
  position:relative;
  background:#fff9f7;
  overflow:hidden;
}
#gallery h2 {
  font-family: 'Montserrat', 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #b23a48;
  margin-bottom: 36px;
  text-shadow: 0 2px 8px rgba(178,58,72,0.08);
}
#gallery .img-fluid {
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), box-shadow 0.5s cubic-bezier(.4,0,.2,1), border 0.4s;
  will-change: transform, box-shadow, border;
  border: 3px solid transparent;
}
#gallery .img-fluid:hover, #gallery .img-fluid:focus {
  transform: translateY(-18px) scale(1.03) rotate(0.5deg);
  box-shadow: 0 18px 40px rgba(255, 60, 0, 0.16), 0 2px 16px rgba(44,62,80,0.10);
  border: 3px solid #ff9800;
  z-index: 2;
}