/* ========== Grundlegendes Design ========== */
:root {
  --main-green: #6b8b6e;
  --accent-beige: #f5f0ea;
  --font-sans: "Open Sans", sans-serif;
  --font-serif: "Playfair Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: #333;
  background-color: white;
  line-height: 1.6;
}

/* ========== Header ========== */
.header {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  border-bottom: 1px solid #ddd;
}

.logo img {
  max-height: 60px;
  height: auto;
}

/* ===== Hero Section ===== */
.hero {
  background-color: #fdf6f9;
  padding: 5rem 1rem;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 3rem;
}

/* Textbereich */
.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #0b0b0b;
  margin-bottom: 1.2rem;
}

.hero-text h1 span {
  color: #578930; /* Grün Akzentfarbe */
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #578930;
  color: white;
  border: 2px solid #578930;
}

.btn.primary:hover {
  background-color: #477526;
}

.btn.secondary {
  background-color: transparent;
  color: #578930;
  border: 2px solid #578930;
}

.btn.secondary:hover {
  background-color: #e8f5e4;
}

/* Bildbereich */
.hero-image {
  flex: 1 1 450px;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Preis-Tag */
.price-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  padding: 1rem 1.4rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-tag p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
  text-align: center;
}

.price-tag span {
  display: block;
  color: #578930;
  font-weight: 700;
}

/* ========== Container ========== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 0;
}

/* ========== Überschriften ========== */
h2 {
  font-family: var(--font-serif);
  color: var(--main-green);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ===== Featured Arrangements ===== */
.featured {
  background-color: #f9fafb;
  padding: 5rem 1rem;
  text-align: center;
}

.featured h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.featured .subtitle {
  color: #555;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* Kartenraster */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Einzelne Karte */
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Bildbereich */
.card-img {
  position: relative;
}

.card-img img {
  width: 100%;
  display: block;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #578930;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}

.fav-btn:hover {
  background: #e8f5e4;
}

/* Karteninhalt */
.card-body {
  text-align: left;
  padding: 1.5rem;
}

.card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}

.rating {
  font-size: 0.9rem;
  color: #f4b400;
  margin-bottom: 0.5rem;
}

.card-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.price {
  font-weight: 700;
  color: #578930;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.price span {
  font-weight: 400;
  color: #444;
  font-size: 0.9rem;
  margin-right: 4px;
}

/* Button */
.btn-cart {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #578930;
  color: white;
  font-weight: 600;
  padding: 0.8rem 0;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-cart:hover {
  background: #477526;
}

/* ========== About Section ========== */
.about-section {
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
}

.about-content .text {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature .icon {
  background: #e8f5e4;
  color: #578930;
  border-radius: 10px;
  padding: 10px;
  font-size: 20px;
}

.feature h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.feature p {
  margin: 5px 0 0;
  font-size: 0.9rem;
  color: #666;
}

.image {
  position: relative;
  flex: 1 1 400px;
}

.image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.since-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
  text-align: center;
}

.since-badge p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.since-badge strong {
  font-size: 1.3rem;
  color: #578930;
}

/* ========== Geschichte ========== */
.history {
  background-color: #fafafa;
  text-align: center;
}

.history p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ========== Footer ========== */
.footer {
  background-color: var(--main-green);
  color: white;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.9rem;
}
