:root {
  --gd-bg: #071523;
  --gd-dark: #0b1b2a;
  --gd-border: #7f4f43;
  --gd-gold: #c28a62;
  --gd-rose: #d87b78;
  --gd-text: #d8c6ba;
  --gd-muted: #9e8d86;
}

.gd-logo img{
	width:70px;
	height:auto;
	float:left
	position:relative;
}
.gd-hero {
	  height: clamp(360px, 48vw, 680px);
  background:
    linear-gradient(to bottom, rgba(7,18,31,0.08), rgba(7,18,31,0.18) 55%, rgba(7,18,31,0.85)),
    url(../../../images/style/goldendaysnight/header.png) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.gd-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;

  background: linear-gradient(
    to bottom,
    rgba(6, 14, 27, 0) 0%,
    rgba(6, 14, 27, 0.25) 35%,
    rgba(6, 14, 27, 0.65) 68%,
    rgb(5 13 26) 100%
  );

  pointer-events: none;
  z-index: 1;
}

.gd-hero-content {
  position: relative;
  z-index: 2;
}
/**/
.gd-topbar {
  height: 62px;
  background: rgb(6 14 26);
  border-bottom: 1px solid rgba(194, 138, 98, 0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 55px;
  box-sizing: border-box;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.gd-topbar a {
  color: var(--gd-gold);
  text-decoration: none;
  margin-left: 22px;
  font-weight: bold;
}

.gd-separator {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: var(--gd-border);
  margin: 0 22px;
  vertical-align: middle;
}

.gd-topbar-left,
.gd-topbar-right {
  display: flex;
  align-items: center;
}

.gd-search {
  width: 300px;
  height: 36px;
  border: 1px solid rgba(194, 138, 98, 0.35);
  border-radius: 999px;
  display: flex;
  align-items: center;
  margin-right: 25px;
  overflow: hidden;
}

.gd-search input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 0 18px;
  color: var(--gd-text);
  outline: none;
}

.gd-search button {
  background: transparent;
  border: 0;
  color: var(--gd-gold);
  font-size: 22px;
  padding: 0 15px;
  cursor: pointer;
}

.gd-nav {
  height: 70px;
  background: rgb(8 21 35 / 19%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  border-bottom: 1px solid rgba(194, 138, 98, 0.12);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.gd-logo {
  color: var(--gd-rose);
  font-size: 36px;
  padding-right: 35px;
  border-right: 1px solid rgba(194, 138, 98, 0.25);
}

.gd-nav a {
  color: var(--gd-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  position: relative;
  padding: 25px 0;
}

.gd-nav a:hover,
.gd-nav a.active {
  color: var(--gd-rose);
}

.gd-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 3px;
  background: var(--gd-rose);
}


.gd-hero-content {
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.gd-hero h1 {
  margin: 0;
  font-family: "Great Vibes", "Edwardian Script ITC", cursive;
  font-size: 92px;
  font-weight: normal;
  color: var(--gd-gold);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
}

.gd-hero h2 {
  margin: 5px 0 18px;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 25px;
  color: var(--gd-text);
}

.gd-heart {
  color: var(--gd-rose);
  font-size: 34px;
  margin: 8px 0;
}

.gd-hero p {
  color: var(--gd-rose);
  text-transform: uppercase;
  letter-spacing: 7px;
  font-weight: bold;
  font-size: 13px;
}

@media (max-width: 900px) {
  .gd-topbar {
    padding: 15px;
    height: auto;
    flex-direction: column;
    gap: 12px;
  }

  .gd-nav {
    height: auto;
    flex-wrap: wrap;
    gap: 25px;
    padding: 18px;
  }

  .gd-logo {
    border-right: 0;
    padding-right: 0;
  }

  .gd-hero {
    height: 360px;
  }

  .gd-hero h1 {
    font-size: 58px;
  }

  .gd-hero h2 {
    font-size: 16px;
    letter-spacing: 4px;
  }
}