#main-header {
  background-color: rgb(13, 27, 42);
  color: white;
  font-family: "Cinzel", serif;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 3;
}
#main-header .logo {
  height: 40px;
  margin-right: 0.2rem;
}
#main-header .navbar-brand {
  font-size: 1.1em;
}
@media (max-width: 768px) {
  #main-header .navbar-brand {
    font-size: 0.85em;
  }
  #main-header .navbar-brand .name {
    display: none;
  }
}
#main-header a {
  font-weight: 500;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.9em;
}
#main-header a:hover {
  color: rgb(201, 150, 43);
}
#main-header .navbar-toggler {
  border-color: rgb(201, 150, 43);
}

body {
  font-family: "Lora", serif;
  font-size: 16px;
  color: #0D1B2A;
  background-color: rgb(250, 246, 236);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
}

.gold-gradient {
  background: linear-gradient(144deg, rgb(201, 150, 43) -11.48%, rgb(201, 150, 43) 89.12%, rgb(201, 150, 43) 89.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
}

.gold {
  color: rgb(201, 150, 43);
}

.fs-6 {
  font-size: 0.85rem;
}

.small-title {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn {
  border-radius: 0;
}

.btn.btn-gold {
  background: linear-gradient(122deg, rgb(201, 150, 43) 0.47%, rgb(173, 127, 27) 36.4%, rgb(233, 183, 75) 78.57%);
  font-family: "Cinzel", serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgb(13, 27, 42);
  background-color: rgb(201, 150, 43);
  padding: 0.75rem 2.5rem;
  font-weight: 600;
  transition: all 0.5s;
}
.btn.btn-gold:hover {
  transform: scale(1.1);
}

.bg-dark-blue {
  background-color: rgb(13, 27, 42);
  color: white;
}

.text-muted {
  font-family: Lora, serif;
  font-style: italic;
  color: rgba(245, 239, 224, 0.65) !important;
}

.feature-box {
  border: 1px solid rgba(201, 150, 43, 0.3);
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: rgba(201, 150, 43, 0.04);
  position: relative;
}
.feature-box .number {
  font-family: Cinzel, serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 150, 43, 0.15);
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  line-height: 1;
}

.golden-card {
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.3s;
  cursor: default;
  box-shadow: none;
  background-color: white;
  border-left: 2px solid rgb(201, 150, 43);
  height: 100%;
}
.golden-card:hover {
  box-shadow: 0 4px 8px rgba(201, 150, 43, 0.4);
}
.golden-card .title {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.golden-card .title .number {
  font-family: Cinzel, serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgb(201, 150, 43);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.golden-card .title .title {
  font-family: Cinzel, serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}
.golden-card .title .sub-title {
  font-family: Lora, serif;
  font-style: italic;
  font-size: 0.76rem;
  color: rgb(201, 150, 43);
  margin-top: 0.2rem;
}
.golden-card .content {
  font-family: Lora, serif;
  font-size: 0.875rem;
  line-height: 1.75;
}
.golden-card .tags {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(26, 16, 8, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.golden-card .tags .box {
  font-family: Cinzel, serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #49381e;
  background-color: #E8DFC8;
  padding: 2px 8px;
  border-radius: 2px;
}

.bg-red {
  background-color: rgb(92, 29, 29);
  color: white;
}

header.hero {
  min-height: 100dvh;
  background-image: url("./assets/images/hero.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
header.hero:before {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background-color: rgba(13, 27, 42, 0.92);
}
header.hero .hero-content {
  z-index: 1;
}
header.hero .hero-title {
  font-size: 5em;
  color: white;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  header.hero .hero-title {
    font-size: 3em;
  }
}
header.hero .eyebrow {
  color: rgb(201, 150, 43);
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-family: "Cinzel", serif;
}
header.hero .hero-sub {
  font-style: italic;
  font-size: 1.5em;
  color: rgba(245, 239, 224, 0.75);
  line-height: 1.8;
  max-width: 560px;
  margin: 0px auto 2.5rem;
}
@media (max-width: 768px) {
  header.hero .hero-sub {
    font-size: 1.2em;
  }
}/*# sourceMappingURL=style.css.map */