/* --- GLOBALE STYLES & RESET --- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a2e4a 0%, #1c3255 100%);
  color: white;
  min-height: 100vh;
  font-family: 'Source Sans 3', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, p {
  margin: 0;
}

a {
  text-decoration: none;
}

/* --- ANIMATIONEN --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fadeInUp { 
  animation: fadeInUp 0.7s ease-out forwards; 
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

/* --- NAVIGATION --- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background-color: rgba(26, 46, 74, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
}

.nav-container {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.125rem;
  font-weight: 900;
  background-image: linear-gradient(to right, #22d3ee, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.025em;
}

.nav-link {
  transition: color 0.15s ease-in-out;
  background: linear-gradient(135deg, #f97316, #edc902);
  color: #0a1120;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.75rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.nav-link:hover {
  color: #22d3ee;
}

/* --- HERO SECTION --- */
.hero-section {
  padding-top: 8rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.meta-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #22d3ee;
  background-color: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.meta-date {
  font-size: 0.75rem;
  color: #9ca3af;
}

.meta-dot {
  color: #4b5563;
}

.meta-time {
  font-size: 0.75rem;
  color: #6b7280;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.25;
  color: white;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 42rem;
  line-height: 1.625;
}

/* --- CONTENT SECTION --- */
.content-section {
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .content-section {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.article-image {
  max-width: 500px; /* Begrenzt die Größe für eine bessere Optik im 1:1 Format */
  margin: 0 auto;   /* Zentriert das Bild */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  aspect-ratio: 1/1; 
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-fallback {
  background: linear-gradient(135deg, rgba(34,211,238,0.15), rgba(249,115,22,0.15));
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

/* --- ARTIKEL TYPOGRAFIE --- */
.article-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin: 2rem 0 0.75rem;
}

.article-text p {
  color: rgba(255,255,255,0.88);
  line-height: 1.95;
  margin-bottom: 1.4rem;
  font-size: 1.05rem;
}

.article-text strong { 
  color: #22d3ee; 
}

.article-text em { 
  color: rgba(255,255,255,0.65); 
  font-style: italic; 
}

/* --- FOOTER --- */
.main-footer {
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .main-footer {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-image: linear-gradient(to bottom right, #22d3ee, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1628;
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.footer-name {
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
}

.footer-role {
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 0.125rem;
}

.footer-copyright {
  color: #4b5563;
  font-size: 0.75rem;
  margin-top: 2rem;
}