:root {

  --primary-bg: #000000;
  --secondary-bg: #111111;

  --text-color: #ffffff;

  --gold-color: #d9b752;
  --gold-hover: #FFD700;

  --border-color: #8f8422;

  --button-small-bg: #6b4f0f;
  --button-small-hover: #797979;

  --button-main-bg: #245BB8;
  --button-main-hover: #F89012;

}

*{
  transition:
  background-color .3s ease,
  color .3s ease,
  border-color .3s ease;
}
body {
  background-color: var(--primary-bg);
  color: var(--text-color);
  font-family: 'Times New Roman', sans-serif;
  padding-top: 80px;
}

.navbar-nav {
  height: 100%;
}

.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.btn-outline-gold {
  color: var(--gold-color);
  border: 1px solid var(--gold-color);
  background-color: transparent;
  padding: 10px;
}

.btn-outline-gold:hover {
  background-color: var(--gold-color);
  color: var(--primary-bg);
}


.text-gold {
  color: var(--gold-color) !important;
}

.text-light-gold {
  color: var(--gold-color);
}

.bg-black {
  background-color: var(--primary-bg) !important;
}

.btn-gold {
  background-color: var(--secondary-bg);
  color: var(--gold-color);
  padding: 10px 40px;
  font-weight: bold;
  border: 1px solid var(--gold-color) !important;
}

.hero-section {
  background: url('../img/hero.jpg') no-repeat center center;
  background-size: cover;
  height: 60vh;
  position: relative;
}

.hero-section-home {
  position: relative;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0; /* video stays behind everything */
}
#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: absolute;
}

.border-gold {
  border: 1px solid var(--gold-hover);
}
.services-section {
  margin-top: 6%;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
}

.service-box {
  background-color: var(--secondary-bg);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: scale(1.03);
  border-color: var(--gold-hover);
}

.btn {
  margin-right: 10px;
}

.btn-small,
.btn-small:active,
.btn-small.active {
  font-size: 14px;
  color: var(--text-color);
  background: var(--button-small-bg);
  border: solid #333333 0.5px;
  min-width: 100px;
  padding: 10px 28px 7px 24px;
  margin: 3px 4px 5px 7px;
}

.btn-small:hover {
  color: var(--text-color);
  background: var(--button-small-hover);
  border: none;
}


.btn-main,
.btn-main:active,
.btn-main.active {
  font-size: 18px;
  color: var(--text-color);
  background: var(--button-main-bg);
  min-width: 150px;
  min-height: 50px;
  padding: 12px;
}

.btn-main:hover {
  color: var(--text-color);
  background: var(--button-main-hover);
}




/*  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;
}