section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.navbar-brand {
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
}

/* General Styling */
body {
  scroll-behavior: smooth;
  background-color: #fff8f0; /* light festive background */
  font-family: 'Montserrat', sans-serif;
}

#about {
  scroll-behavior: smooth;
  background-color: #fff8f0; /* light festive background */
  font-family: 'Montserrat', sans-serif;
  padding-top: 80px;
}

h1, h2, h3 {
 font-family: "Poppins", sans-serif;
 letter-spacing: -1.8px;
 font-weight: 800;
 line-height: 0.8em;
}

/* Navbar */

/* Default: transparent */
#mainNav {
  background-color: rgba(0, 100, 0, 0.0); /* translucent dark green */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.1rem;
}

#secondaryNav {
  background-color: #006400; /* solid dark green */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.1rem;
}

/* When scrolled */
#mainNav.scrolled {
  background-color: #006400; /* solid dark green */
  box-shadow: 0 4px 6px rgba(0,0,0,0.5); /* add shadow for depth */
}

#mainNav .navbar-brand {
  font-size: 1.5rem;
}

#secondaryNav .navbar-brand {
  font-size: 1.5rem;
}

.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: gold !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: gold;
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}

/* Home Hero Section */
#home h1 {
  font-family: "Poppins", sans-serif;
 letter-spacing: -1.8px;
 font-weight: 800;
 line-height: 0.8em;
 font-size: 5.5rem;
 text-shadow: 3px 3px 3px rgba(6.000000000000015, 6.000000000000015, 6.000000000000015, 0.44);
 justify-content: left;
}
#home p {
  font-size: 1.2rem;
  line-height: 1.6;
  
}
#home .btn {
  border-radius: 30px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#home .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* Services */
#services .card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#services .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#services .card-title {
  font-weight: bold;
  font-size: 1.3rem;
  text-align: center;
}

/* Gallery */
#gallery img {
  border: 5px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}
#gallery img:hover {
  transform: scale(1.05);
}

/* Contact */
#contact input, 
#contact textarea {
  border-radius: 10px;
  border: 2px solid #006400;
}
#contact input:focus, 
#contact textarea:focus {
  outline: none;
  border-color: gold;
  box-shadow: 0 0 8px gold;
}
#contact button {
  border-radius: 25px;
  padding: 10px 30px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
#contact button:hover {
  background-color: darkred;
}
@keyframes twinkleGlow {
  0% { filter: brightness(0.8); }
  50% { filter: brightness(1.3); }
  100% { filter: brightness(0.8); }
}
.lights-divider {
  background: url('../images/lights-divider.png') repeat-x center; /* repeat across */
  background-size: 200px auto; /* adjust based on how wide each "light segment" is */
  width: 100%;
  height: 80px; /* match or slightly bigger than image height */
  margin: 40px 0;
  animation: twinkleGlow 2s infinite alternate;
}
.btn-danger:hover {
  background-color: #c1121f;
  box-shadow: 0 0 15px gold;
}
/* Testimonials Section */
#testimonials h2 {

  font-size: 2.5rem;
}

.festive-card {
  background: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.festive-card .card-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}
.hero {
  background: url("your-photo.jpg") center/cover no-repeat;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark overlay for text readability */
}

.hero h1 {
  position:fixed;
  z-index: 1;
  
  font-size: 3rem;
  text-shadow: 0 0 12px rgba(255,255,255,0.8);
}
#about img {
  border: 4px solid #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2), 0 0 15px gold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#about img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3), 0 0 25px red;
}

#about h2 {
  
  font-size: 2.5rem;
}

#about p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.bg-christmas-green {
  background: linear-gradient(135deg, #006400, #228B22);
}

/* Footer */
footer {
  background: linear-gradient(90deg, #006400, #228B22);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero-section {
  position: relative;
  background: url('../images/moss.jpg') no-repeat center center/cover;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* adjust darkness */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2; /* keeps text above overlay */
}

.required {
  color: red;
}
