/* ===== Vishav Kalyan Custom Theme ===== */

/* General Body */
body {
  font-family: 'Segoe UI', 'Poppins', sans-serif;
  background-color: #FFF8E7; /* Soft beige */
  color: #333;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar {
  background-color: #E67E22 !important; /* Saffron */
}
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: 0.3s;
}
.navbar .nav-link:hover {
  color: #5A3E1B !important; /* Brown on hover */
  background: rgba(255,255,255,0.2);
  border-radius: 5px;
}
.navbar-brand {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff !important;
}

/* Hero Section */
.hero {
  background: url('../assets/images/temple-bg.jpeg') center/cover no-repeat;
  height: 80vh;
  color: #fff;
  position: relative;
}
.hero-text {
  background: rgba(90, 62, 27, 0.6); /* Calm brown transparent overlay */
  padding: 40px;
  border-radius: 12px;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
}
.hero-text p {
  font-size: 1.3rem;
  color: #fdfdfd;
}

/* Buttons */
.btn-warning {
  background-color: #E67E22;
  border: none;
  color: #fff;
  transition: 0.3s;
}
.btn-warning:hover {
  background-color: #d46f1e;
  color: #fff;
}
.btn-light {
  background-color: #fff;
  color: #5A3E1B;
  border: 1px solid #E67E22;
}
.btn-light:hover {
  background-color: #f9e5d0;
}

/* Section Headings */
section h2 {
  color: #5A3E1B;
  font-weight: bold;
}
section {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Category Boxes */
.category-box {
  background-color: #fff;
  border: 2px solid #E67E22;
  border-radius: 12px;
  padding: 20px;
  font-weight: 500;
  font-size: 1rem;
  color: #5A3E1B;
  transition: 0.3s;
}
.category-box:hover {
  background-color: #FFF0E0;
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

/* Festival Section */
.festival-section {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border-top: 2px solid #E67E22;
  border-bottom: 2px solid #E67E22;
}
.festival-section h2 {
  color: #E67E22;
}

/* Product Cards */
.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
}
.card-body h5 {
  color: #5A3E1B;
  font-weight: bold;
}

/* Services */
.service-box {
  background-color: #fff;
  border: 2px solid #E67E22;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
}
.service-box h4 {
  color: #5A3E1B;
  font-weight: bold;
}
.service-box:hover {
  background-color: #FFF0E0;
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
}

/* Trust Boxes */
.trust-box {
  background-color: #fff;
  border: 2px solid #E67E22;
  border-radius: 12px;
  padding: 20px;
  font-weight: 500;
  color: #5A3E1B;
  transition: 0.3s;
}
.trust-box:hover {
  background-color: #FFF0E0;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #E67E22;
  color: #fff;
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
