/*
Theme Name: Diana Theme
Author: Marc Neubauer
Description: Custom Theme für das Diana Projekt
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Lato:wght@400;700&display=swap');

:root {
  --color-light: #fff;
  --color-dark: #121212;
  --accent-color: #c09a63;
  --text-color: #222;
  --font-heading: 'Cinzel', serif;
  --font-body: 'Lato', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--color-light);
  transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--accent-color);
  margin-bottom: 1rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ======= LOGO ======= */
.logo {
  max-height: 80px;
  padding: 1rem;
}

/* ======= HEADER ======= */
header {
  background-color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}
nav li {
  font-weight: 600;
}
nav a {
  color: var(--text-color);
}

/* ======= HERO SECTION ======= */
.hero {
  background: url('./assets/images/Startseite_Fenster_Tasse_Diana.png') no-repeat center center;
  background-size: cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero > * {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 3rem;
  color: white;
}

/* ======= ÜBER MICH ======= */
.uebermich {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}
.uebermich img {
  max-width: 300px;
  border-radius: 1rem;
}
.uebermich div {
  flex: 1;
  min-width: 250px;
}

/* ======= FOOTER ======= */
footer {
  background-color: #111;
  color: #ccc;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ======= DARK MODE (optional) ======= */
body.dark-mode {
  background-color: var(--color-dark);
  color: #eee;
}
body.dark-mode header {
  background-color: #1a1a1a;
}
body.dark-mode nav a {
  color: #eee;
}
body.dark-mode footer {
  background-color: #000;
  color: #888;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  header {
    flex-direction: column;
    align-items: flex-start;
  }
}
