body {
  background-color: #000;
  color: #fff;
  font-family: 'Times New Roman', sans-serif;
  padding-top: 80px;
  /* For fixed navbar */
}

.navbar-nav {
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.btn-outline-gold {
  color: #d9b752;
  border: 1px solid #d9b752;
  background-color: transparent;
  padding: 10px;
  border-radius: none !important;
}

.btn-outline-gold:hover {
  background-color: #d9b752;
  color: #000;
  /* optional: change text color on hover */
}


.text-gold {
  color: #d9b752 !important;
}

.text-light-gold {
  color: #d9b752;
}

.bg-black {
  background-color: #000 !important;
}

.btn-gold {
  background-color: black;
  color: #d7b853;
  padding: 10px 40px;
  font-weight: bold;
  border: 1px solid #d7b853 !important;
}

.hero-section {
  background: url('../img/hero.jpg') no-repeat center center;
  background-size: cover;
  height: 60vh;
  position: relative;
}

#hero-event {
  background: url('../img/flower-bg.jpg') no-repeat center center;
  background-size: cover;
  height: 70vh;
  position: relative;

}

.hero-overlays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Adjust opacity here */
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Adjust opacity here */
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  position: relative;
}

.border-gold {
  border: 1px solid #FFD700;
}

.services-section {
  margin-top: 6%;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.service-box {
  background-color: #111;
  border: 1px solid #8f8422;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: scale(1.03);
  border-color: #FFD700;
}


.btn {
  margin-right: 10px;
}

.btn-small,
.btn-small:active,
.btn-small.active {
  font-size: 14px;
  color: #fff;
  background: #6b4f0f;
  border: solid #333333 0.5px;
  min-width: 100px;
  padding: 10px 28px 7px 24px;
  margin: 3px 4px 5px 7px;
}

.btn-small:hover {
  color: #ffffff;
  background: #797979;
  border: none;
}


.btn-main,
.btn-main:active,
.btn-main.active {
  font-size: 18px;
  color: #ffffff;
  background: #245BB8;
  min-width: 150px;
  min-height: 50px;
  padding: 12px;
}

.btn-main:hover {
  color: #ffffff;
  background: #F89012;
}




/*  medium-sized devices */
@media all and (min-width: 501px) and (max-width: 800px) {
  .container {
    text-align: center;
  }

  .btn {
    margin-right: 4px;
    display: inline-block;
  }

  .btn-small,
  .btn-small:active,
  .btn-small.active {
    font-size: 14px;
    min-width: 50px;
    padding: 6px;
  }

  .btn-main,
  .btn-main:active,
  .btn-main.active {
    font-size: 18px;
    min-width: 100px;
    padding: 9px;
  }
}


/*  small devices */
@media all and (min-width: 401px) and (max-width: 500px) {
  .container {
    text-align: center;
  }

  .btn {
    margin-right: 2px;
    display: inline-block;
  }

  .btn-small,
  .btn-small:active,
  .btn-small.active {
    font-size: 12px;
    min-width: 50px;
    padding: 6px;
  }
}



/*  extra small devices */
@media all and (min-width: 297px) and (max-width: 400px) {
  .container {
    text-align: center;
  }

  .btn {
    margin-right: 1px;
    display: inline-block;
  }

  .btn-small,
  .btn-small:active,
  .btn-small.active {
    font-size: 10px;
    min-width: 45px;
    padding: 6px;
  }

  .btn-main,
  .btn-main:active,
  .btn-main.active {
    font-size: 14px;
    min-width: 90px;
    padding: 9px;
  }
}

.equal-height-card {
  width: 18rem;
  height: 100%;
  /* full height of parent */
  display: flex;
  flex-direction: column;
}

.equal-height-img {
  height: 200px;
  object-fit: cover;
  /* crop to fill */
}

.equal-height-body {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}