:root {
    --font-color: #C8B568;
    --bg-color: #000000;
    --hover-color: #D19929;
    --accent-color: #5C3A79;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    color: #C8B568;
}

body {
    min-height: 100vh;
    background-image: url('../images//assets/hintergrund.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 0;
}

/* Schwarzes Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0; /* füllt den gesamten Viewport */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); 
  pointer-events: none; 
  z-index: -1; 
}

header, main, footer {
    z-index: 1;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;;
}

/* MAIN */
main {
    padding: 32px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;

    position: relative;
    z-index: 2;
}

/* Allgemein für alle Sections */
main section {
    padding: 16px;
    border-radius: 16px;
    background-color: #1c1c1c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    color: #C8B568;
}

/* Headings */
main h1 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #C8B568;
    text-align: center;
}

main h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #C8B568;
    text-align: center;
}

main h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #C8B568;
    text-align: center;
}

section p, section li {
    margin-bottom: 16px;
}

/* AdSense */
.ad-slot {
  display: flex;              /* zentriert den Inhalt */
  justify-content: center;
  align-items: center;
  padding: 16px;              /* gleiches Padding wie andere Sections */
  border-radius: 16px;        /* gleiche Rundung */
  background-color: #1c1c1c;  /* gleiche Hintergrundfarbe */
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  overflow: hidden;           /* verhindert, dass Ads überlaufen */
}

/* Ad-Container darf nicht „hochschießen“ */
.ad-container {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

/* AdSense selbst erzwingen */
.adsbygoogle {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

/* Corporate */
.corporate {
    background: linear-gradient(to right, #2a2a2a, #1a1a1a);
} .corporate p {text-align: center;}

/* Profil Cards */
.main .reader .feed-container {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  text-align: center;
}

.profil-links {
    display: flex;
    flex-wrap: wrap; /* wichtig für Responsive Verhalten */
    justify-content: center; /* zentriert alle Cards */
    gap: 2rem; /* Abstand zwischen den Cards */
    padding: 2rem 1rem;
}

.profile-card {
  background: linear-gradient(145deg, #000000, #000000);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 2rem;
  width: 260px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.profile-card h2 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #C8B568;
}
.profile-card a {
  margin-top: 1rem;
  color: #D19929;
  text-decoration: none;
  font-weight: bold;
}
.profile-card a:hover {
  text-decoration: underline;
}

/* Channel Ads */
.channel-ads .ads-pricing {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.channel-ads .ads-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.channel-ads .ad-slot {
    border: 2px dashed #C8B568;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
    background-color: #2b2b2b;
}

/* Content */
.content .content-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Video-Logs */
.video-logs {
    text-align: center;
}

.video-logs .highlight-video {
    max-width: 900px;
    margin: 0 auto;
}

.video-logs .video-description {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #C8B568;
}

.btn-primary {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.6rem;
    background-color: #C8B568;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #C8B568;
    color: rgb(255, 255, 255);
}