/* Global */
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1em;
  background-color: #010a14;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  color: #ffb473;
}

h1,
h2,
h3 {
  color: #010a14;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

/* Navigation */

nav {
  margin: 30px;
  overflow: hidden;
}

.navbar-links {
  display: flex;
  text-align: right;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  padding: 12px;
  color: #ffffff;
}

nav a:hover {
  color: #ffb473;
  border-radius: 20px;
}

.menu-icon {
  width: 30px;
}

.nav .icon {
  display: none;
}

@media screen and (max-width: 1000px) {
  .nav a {
    display: none;
  }
  .nav a.icon {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
  }
  .nav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* Hero */
.hero-intro {
  background-image: linear-gradient(#03052c4d, #040119c6),
    url(/image/20230101_201231-crop.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 200px;
}

.hero-intro img {
  max-width: 400px;
  height: auto;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 8px;
}

@media screen and (max-width: 700px) {
  .hero-intro {
    height: auto;
    max-width: 100%;
    overflow: hidden;
    padding: 20px;
  }
}

.title {
  font-size: 3.5em;
  color: #ffb473;
  text-shadow: 2px 3px 3px rgba(39, 36, 3, 0.768);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 1px;
}

.subtitle {
  margin-top: -20px;
  text-shadow: 2px 2px 3px rgb(3, 9, 39);
}

.button,
.button-light {
  display: block;
  text-align: center;
  align-content: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2em;
  padding: 0 12px;
  text-decoration: none;
  width: 200px;
  height: 50px;
  color: #ffffff;
  background-color: #040115;
  border-radius: 20px;
}

.button:hover {
  background-color: #ffb473;
  color: #0d091e;
}

.button-light {
  background-color: #010a14;
  color: #ffb473;
  border: 1px solid #ffb473;
}
.button-light:hover {
  background-color: #ffb473;
  color: #0d091e;
}

/* Sections */
.content {
  padding: 20px;
  background-color: #f5f1ea;
}
.content p {
  color: #010a14;
}

/* Footer */
footer {
  color: #ffffff;
  text-align: center;
  font-size: small;
}
