:root {
  --gold: #d4af37;
  --dark-bg: #121212;
  --paper: #e8d5b5;
  --accent-red: #8b0000;
  --text-light: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
}

h1,
h2,
h3,
.logo {
  font-family: "Cinzel", serif;
  color: var(--gold);
  text-transform: uppercase;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Navigation */
header {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 30px;
  transition: color 0.3s;
  font-weight: bold;
}

nav ul li a:hover {
  color: var(--gold);
}

/* Hero */
#hero {
  height: 40vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(55, 50, 50, 0.7)),
    url("imgs/main.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.subtitle {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.partner {
  color: var(--gold);
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.cta-button {
  background: var(--accent-red);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border: 2px solid var(--gold);
  transition: 0.3s;
  display: inline-block;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--gold);
}

/* Layout elements */
.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.features {
  list-style: none;
  margin-top: 20px;
}

.features li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.features li::before {
  content: "⚔";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.main-img {
  width: 100%;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-left: 4px solid var(--gold);
}

footer {
  background: #000;
  padding: 60px 0 20px;
  border-top: 1px solid #333;
}
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #222;
  padding-bottom: 40px;
}
.footer-contact{
    padding-bottom: 20px;
}
.bottom-bar {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  opacity: 0.6;
}
footer a {
  color: var(--gold);
  text-decoration: none;
}

.doc-link {
  color: var(--gold);
}

a:visited {
  color: var(--gold);
}


@media (max-width: 768px) {
  #hero {
    height: 70vh;
  }

  .details-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }
}
