body {
  font-family: 'Inter', sans-serif;
  background-color: #fffdf6;
  color: #333;
  margin: 0;
  padding: 0;
}

/* HEADER */
.main-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  position: relative; /* Wichtig für absolute Positionierung */
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
  text-transform: lowercase;
  margin-bottom: 0.5rem;
}


img {
  max-width: 100%;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.main-nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  text-transform: lowercase;
  font-weight: 400;
}

.main-nav a.active {
  color: #000;
  font-weight: 600;
}

.social-icon {
  position: absolute; /* Positioniert das Icon unabhängig vom Rest */
  top: 50%; 
  right: 5rem; /* Abstand vom rechten Rand */
  transform: translateY(-50%); /* Zentriert das Icon vertikal */
}

.social-icon img {
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}

.social-icon:hover img {
  opacity: 0.7;
}

.daily-tip-section {
  background-color: #f0eee5;
  padding: 3rem 1.5rem;
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.daily-tip-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.daily-tip-section #motivationTip {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.daily-tip-section button {
  background-color: #000;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.daily-tip-section button:hover {
  background-color: #333;
  transform: translateY(-3px);
}

.button, .btn, .read-more {
  display: inline-block;
  margin: 0.5rem 0;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.hero .read-more {
  font-size: 0.9rem;
  text-transform: lowercase;
  color: #444;
  text-decoration: underline;
}

.about-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.about-section .intro {
  margin-bottom: 3rem;
}

.about-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-section h2, .about-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.about-section p, .about-section li {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

.blog-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.blog-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-post {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-10px);
}

.blog-post img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-post h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  padding: 1rem;
}

.blog-article {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.blog-date {
  padding: 0 1rem;
  color: #888;
  font-size: 0.9rem;
}

.blog-excerpt {
  padding: 0 1rem 1rem;
  color: #555;
}

.read-more {
  display: inline-block;
  padding: 0 1rem 1.5rem;
  color: #333;
  text-decoration: underline;
  font-weight: bold;
}

.contact-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.contact-heading p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}

.contact-form button {
  padding: 0.8rem 1.5rem;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #333;
}

.newsletter-main {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

.newsletter-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-transform: lowercase;
}

.newsletter-heading p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.newsletter-form form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.newsletter-form input[type="email"] {
  padding: 0.8rem;
  width: 60%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.newsletter-form button {
  padding: 0.8rem 1.2rem;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #333;
}

.values ul {
  list-style-type: none;
  padding: 0;
}

.values li::before {
  content: '✓';
  color: #888;
  margin-right: 8px;
}

/* BLOG GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.picture {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.picture:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.picture img {
  width: 100%;
  height: 350px;  /* Größere Höhe für größere Bilder */
  object-fit: cover;  /* Bild füllt Container, Zuschnitt erfolgt automatisch */
  object-position: center;  /* Zentriert das Bild vertikal und horizontal */
}

.picture p {
  padding: 1.2rem;
  font-size: 1rem;
  color: #333;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  line-height: 1.4;
}

/* CATEGORIES */
.category-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 900px;
}

.category-grid div {
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  text-transform: lowercase;
  color: #333;
}

.category-grid img {
  border-radius: 50%;
  margin-bottom: 0.5rem;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* NEWSLETTER */
.newsletter {
  background: #f0eee5;
  padding: 4rem 2rem;
  text-align: center;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: lowercase;
}

.newsletter p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.newsletter input[type="email"] {
  padding: 0.6rem;
  width: 250px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.newsletter button {
  padding: 0.6rem 1.2rem;
  margin-left: 0.5rem;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: #555;
  background-color: #fffdf6;
}

@media (max-width: 768px) {

  /* 1. Haupt-Layout fixieren */
  .main-content, .blog-main, .newsletter-section {
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 2. Bilder flexibel machen */
  .blog-post img,
  .picture img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }

  /* 3. Blog-Post Karten anpassen */
  .blog-post {
    width: 100%;
    margin: 1rem 0;
    padding: 1rem;
    box-shadow: none;
    border-radius: 0;
  }

  /* 4. Newsletter-Formular untereinander */
  .newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
  }

  /* 5. Button Styling */
  .newsletter-form button {
    margin: 0 auto;
  }

  /* 6. Schriftgrößen und Abstände für Headlines */
  h1, h2, h3 {
    text-align: center;
    padding: 0 1rem;
    font-size: 1.8rem;
  }

  /* 7. Navigation (falls noch nicht angepasst) */
  .main-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .social-icon {
    position: static;
    margin-top: 1rem;
  }

}