:root {
  --bg-midnight: #1F2E2A;
  --text-pale: #EAE6DF;
  --accent-sage: #82998A;
  --glass-bg: rgba(42, 63, 57, 0.6);
  --glass-border: rgba(234, 230, 223, 0.1);
  --radius: 30px;
}

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

body {
  font-family: 'Georgia', serif;
  background-color: var(--bg-midnight);
  color: var(--text-pale);
  line-height: 1.8;
  font-size: 18px;
  overflow-x: hidden;
}

a {
  color: var(--accent-sage);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--text-pale);
}

/* Header & Menu Button */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.brand {
  font-family: 'Arial', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-pale);
  font-weight: 300;
}

.menu-btn {
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-pale);
  padding: 10px 25px;
  border-radius: 20px;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.menu-btn:hover {
  background-color: var(--text-pale);
  color: var(--bg-midnight);
}

/* Fullscreen Overlay Navigation */
.overlay-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 46, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.overlay-nav.active {
  opacity: 1;
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 50px;
  background: none;
  border: none;
  color: var(--text-pale);
  font-size: 2rem;
  cursor: pointer;
  font-family: 'Arial', sans-serif;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.nav-links a {
  font-size: 3rem;
  font-family: 'Arial', sans-serif;
  font-weight: 300;
  color: var(--text-pale);
  letter-spacing: 2px;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-sage);
}

/* Hero Section (Fullscreen) */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(31,46,42,0.3) 0%, rgba(31,46,42,1) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent-sage);
}

/* Centered Minimalist Main Content */
.main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  font-weight: 400;
  color: var(--accent-sage);
}

.intro-text {
  font-size: 1.2rem;
  text-align: justify;
  margin-bottom: 40px;
}

/* Article Cards */
.article-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 50px;
  margin-bottom: 50px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.article-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
}

.article-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.article-card p {
  text-align: justify;
  color: #D3D0C9;
}

/* Contact Form */
.contact-container {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 60px;
  margin-top: 80px;
}

.form-group {
  margin-bottom: 30px;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
  color: var(--text-pale);
  font-family: 'Arial', sans-serif;
  font-size: 1.1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--accent-sage);
}

.form-control::placeholder {
  color: rgba(234, 230, 223, 0.4);
}

.btn-submit {
  background: var(--accent-sage);
  color: var(--bg-midnight);
  border: none;
  padding: 20px 40px;
  font-size: 1.1rem;
  font-family: 'Arial', sans-serif;
  border-radius: 40px;
  cursor: pointer;
  width: 100%;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid var(--glass-border);
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: rgba(234, 230, 223, 0.6);
}

.footer-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Legal Pages */
.legal-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 60px;
  margin-top: 150px;
}

.legal-content h1 {
  font-size: 2.5rem;
  color: var(--accent-sage);
  margin-bottom: 30px;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content ul {
  padding-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .header { padding: 20px; }
  .nav-links a { font-size: 2rem; }
  .article-card { padding: 30px; }
  .article-img { height: 250px; }
  .contact-container { padding: 30px; }
}
