/* Angebote Section */
.angebote-section {
  padding: 80px 0;
  background-color: #fcfbf8;
}

.angebote-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.angebote-section .heading {
  font-family: 'EB Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: #273b35;
  text-align: center;
  margin-bottom: 20px;
}

.angebote-section .subline {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.6;
}

/* Grid Layout */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 auto;
}

/* Card Design */
.offer-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Image Container */
.offer-icon {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.offer-card:hover .offer-icon img {
  transform: scale(1.1);
}

/* Content Area */
.offer-content {
  padding: 25px;
  background: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offer-title {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #273b35;
  margin: 0;
  line-height: 1.3;
}

.offer-description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .offer-icon {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .angebote-section {
    padding: 60px 0;
  }

  .angebote-section .heading {
    font-size: 36px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-icon {
    height: 300px;
  }

  .offer-content {
    padding: 20px;
  }

  .offer-title {
    font-size: 22px;
  }
}
