/* ==========================================================
   DOJ - Basisdesign für alle Seiten
   ========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #f1d28a;
  --gold-dark: #d5a647;
  --gold-line: #c79845;
  --bg-dark: #05090f;
  --text-light: #dddddd;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background:
    linear-gradient(rgba(5, 9, 15, 0.75), rgba(5, 9, 15, 0.95)),
    url("../img/los-santos-bg.jpg") center/cover fixed no-repeat;
  color: var(--gold);
}

a {
  color: inherit;
}

/* ==========================================================
   HEADER / NAVIGATION
   ========================================================== */

.header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
  align-items: center;
  height: 170px;
  max-width: 1700px;
  margin: auto;
  padding: 0 80px;
}

.nav-left,
.nav-right {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  align-items: center;
  gap: 18px;
  z-index: 3;
}

.nav-left {
  justify-content: end;
  padding-right: 45px;
}

.nav-right {
  justify-content: start;
  padding-left: 45px;
}

nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: 0.8px;
  font-weight: bold;
  line-height: 1.15;
  text-align: center;
  transition: 0.25s;
  white-space: normal;
}

nav a:hover,
nav a.active {
  color: #fff3c4;
  text-shadow: 0 0 12px rgba(241, 210, 138, 0.8);
}

.logo {
  width: 170px;
  height: 170px;
  object-fit: contain;
  z-index: 5;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
}

.gold-line {
  position: absolute;
  top: 145px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #b88935,
    #f0d28a,
    #b88935,
    transparent
  );
  box-shadow: 0 0 15px rgba(240, 210, 138, 0.6);
  z-index: 1;
}

/* ==========================================================
   WIEDERVERWENDBARE ELEMENTE
   ========================================================== */

.btn {
  display: inline-block;
  padding: 16px 42px;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  transition: 0.25s;
}

.btn:hover {
  background: rgba(213, 166, 71, 0.15);
  box-shadow: 0 0 20px rgba(213, 166, 71, 0.35);
}

.page {
  max-width: 1250px;
  margin: 0 auto;
  padding: 55px 30px 90px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.page-title {
  text-align: center;
  margin-bottom: 55px;
}

.page-title .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 16px;
}

.page-title h1 {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: 6px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(213, 166, 71, 0.28);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
}

.card h2,
.card h3 {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.card p,
.card li {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
}

.card ul {
  padding-left: 22px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1400px) {
  .header {
    padding: 0 35px;
    grid-template-columns: minmax(0, 1fr) 145px minmax(0, 1fr);
  }

  .nav-left,
  .nav-right {
    grid-template-columns: repeat(3, minmax(120px, 220px));
    gap: 12px;
  }

  .nav-left { padding-right: 30px; }
  .nav-right { padding-left: 30px; }

  nav a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .logo {
    width: 145px;
    height: 145px;
  }

  .gold-line { top: 130px; }
}

@media (max-width: 800px) {
  .header {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 18px;
    padding: 25px 15px;
  }

  .nav-left,
  .nav-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    gap: 12px;
  }

  nav a {
    min-width: 150px;
    font-size: 14px;
  }

  .gold-line { display: none; }

  .logo { order: -1; }

  .page-title h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }
}

/* ==========================================
   AUTHORS
========================================== */

.authors{
    margin-top:70px;
    text-align:center;
}

.authors-line{
    width:220px;
    height:2px;
    margin:0 auto 30px;
    background:#c79845;
}

.authors-title{
    color:#d0d0d0;
    font-family:"Segoe UI",sans-serif;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:35px;
}

.author-list{
    display:flex;
    justify-content:center;
    gap:90px;
    flex-wrap:wrap;
}

.author h3{
    color:#d5a647;
    font-size:24px;
    font-weight:normal;
    margin-bottom:8px;
    font-family:Georgia,"Times New Roman",serif;
}

.author span{
    color:#bdbdbd;
    font-family:"Segoe UI",sans-serif;
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
}

@media(max-width:800px){

    .author-list{
        flex-direction:column;
        gap:35px;
    }

}