/**
 * Rosentau — Startseite Styles
 * Datei: assets/css/front-page.css
 */

/* ════════════════════════════════════════════
   LAYOUT UTILITIES
════════════════════════════════════════════ */
.rt-container {
  max-width: var(--rt-max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.rt-section {
  padding: var(--rt-space-xl) 0;
}
.rt-section--light {
  background: var(--rt-bg-light);
}
.rt-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.rt-section-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rt-heading);
  margin: 0 0 4px;
}
.rt-section-sub {
  font-size: 14px;
  color: var(--rt-body);
  line-height: 1.75;
  max-width: 620px;
}

/* ── Buttons ── */
.rt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border-radius: var(--rt-radius);
  font-family: var(--rt-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.rt-btn--primary {
  background: var(--rt-primary);
  color: #fff;
}
.rt-btn--primary:hover {
  background: var(--rt-primary-dark);
  color: #fff;
}
.rt-btn--outline {
  border-color: var(--rt-primary);
  color: var(--rt-link);
}
.rt-btn--outline:hover {
  background: var(--rt-primary);
  color: #fff;
}
.rt-btn--white {
  background: #fff;
  color: var(--rt-primary);
}
.rt-btn--white:hover {
  background: var(--rt-primary-pale);
}
.rt-btn--ghost {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.rt-btn--ghost:hover {
  background: rgba(255,255,255,0.15);
}


/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.rt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rt-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--rt-primary);
  background-image: linear-gradient(135deg, #fdf3e3 0%, #f5c97a 50%, #D88719 100%);
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.rt-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(0,0,0,0.06) 0%,
    rgba(0,0,0,0.20) 50%,
    rgba(0,0,0,0.40) 100%);
  z-index: 1;
}
.rt-hero__body {
  position: relative;
  z-index: 2;
  max-width: var(--rt-max-width);
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.rt-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.rt-hero__title span { color: var(--rt-primary); }
.rt-hero__lead {
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}
.rt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.rt-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rt-hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-left: 4px solid var(--rt-primary);
  border-radius: var(--rt-radius);
  padding: 18px 22px;
  color: #fff;
}
.rt-hero-card--atelier { border-left-color: var(--rt-atelier); }
.rt-hero-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}
.rt-hero-card__value {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.rt-hero-card__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 3px;
}
.rt-hero-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  padding: 3px 10px;
}
.rt-hero-card__badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6fdf9a;
  animation: rt-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes rt-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ════════════════════════════════════════════
   4 BEREICHE
════════════════════════════════════════════ */
.rt-bereiche__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.rt-bereich {
  padding: 40px 32px;
  text-decoration: none;
  display: block;
  transition: filter 0.2s;
}
.rt-bereich:hover { filter: brightness(1.06); }
.rt-bereich--villa    { background: var(--rt-villa); }
.rt-bereich--atelier  { background: var(--rt-atelier); }
.rt-bereich--magnolia { background: var(--rt-magnolia); }
.rt-bereich--viva     { background: var(--rt-viva); }
.rt-bereich__icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}
.rt-bereich__label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.rt-bereich__name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.rt-bereich__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 14px;
}
.rt-bereich__link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  display: inline-block;
}
.rt-bereich:hover .rt-bereich__link { color: #fff; }


/* ════════════════════════════════════════════
   MISSION
════════════════════════════════════════════ */
.rt-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rt-mission__image {
  border-radius: var(--rt-radius);
  overflow: hidden;
  box-shadow: var(--rt-shadow-md);
}
.rt-mission__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.rt-leitsaetze {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.rt-leitsatz {
  background: var(--rt-bg-light);
  border-top: 3px solid var(--rt-primary);
  padding: 20px 22px;
  border-radius: 0 0 var(--rt-radius) var(--rt-radius);
}
.rt-leitsatz--atelier  { border-top-color: var(--rt-atelier); }
.rt-leitsatz--magnolia { border-top-color: var(--rt-magnolia); }
.rt-leitsatz__word {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rt-primary);
  margin-bottom: 8px;
}
.rt-leitsatz--atelier  .rt-leitsatz__word { color: var(--rt-atelier); }
.rt-leitsatz--magnolia .rt-leitsatz__word { color: var(--rt-magnolia); }
.rt-leitsatz p {
  font-size: 13px;
  color: var(--rt-body);
  line-height: 1.65;
  margin: 0;
}


/* ════════════════════════════════════════════
   EVENT BANNER
════════════════════════════════════════════ */
.rt-event-banner {
  background: var(--rt-primary-pale);
  border: 1px solid #f0d8a0;
  border-radius: var(--rt-radius);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.rt-event__tag {
  display: inline-flex;
  background: var(--rt-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.rt-event__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rt-heading);
  margin: 0 0 12px;
  line-height: 1.2;
}
.rt-event__desc {
  font-size: 14px;
  color: var(--rt-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.rt-event__dates {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rt-event-date {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius);
  padding: 12px 16px;
  box-shadow: var(--rt-shadow-sm);
}
.rt-event-date__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rt-primary);
  flex-shrink: 0;
}
.rt-event-date strong {
  display: block;
  font-size: 14px;
  color: var(--rt-heading);
}
.rt-event-date span {
  font-size: 12px;
  color: var(--rt-body);
}


/* ════════════════════════════════════════════
   SPENDEN
════════════════════════════════════════════ */
.rt-spenden {
  background: var(--rt-primary);
  padding: var(--rt-space-xl) 0;
}
.rt-spenden__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.rt-spenden__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.2;
}
.rt-spenden__lead {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 20px;
}
.rt-spenden__quote {
  border-left: 3px solid rgba(255,255,255,0.4);
  padding-left: 16px;
  background: transparent;
}
.rt-spenden__quote p {
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.rt-spenden__quote cite {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-style: normal;
  display: block;
}
.rt-spenden__box {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--rt-radius);
  padding: 32px;
}
.rt-spenden__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.rt-iban {
  font-family: var(--rt-font-mono);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.1);
  padding: 12px 16px;
  border-radius: var(--rt-radius);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.rt-spenden__meta {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.rt-spenden__divider {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  margin: 16px 0;
  position: relative;
}
.rt-spenden__divider::before,
.rt-spenden__divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 44%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.rt-spenden__divider::before { left: 0; }
.rt-spenden__divider::after  { right: 0; }


/* ════════════════════════════════════════════
   JOBS SECTION
════════════════════════════════════════════ */
.rt-section--jobs {
  background: var(--rt-bg-light);
  border-top: 3px solid var(--rt-primary);
}
.rt-job-card__top {
  padding: 20px 22px 0;
}
.rt-job-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  color: #fff;
  white-space: nowrap;
}
.rt-job-card__pensum {
  font-size: 11px;
  font-weight: 700;
  color: var(--rt-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.rt-job-card--empty {
  border: 2px dashed var(--rt-border);
  border-radius: var(--rt-radius);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  height: 100%;
}
.rt-job-empty__icon { font-size: 32px; margin-bottom: 14px; }
.rt-job-empty__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--rt-heading);
  margin-bottom: 8px;
}
.rt-job-empty__text {
  font-size: 13px;
  color: var(--rt-body);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rt-bereiche__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .rt-hero__body     { grid-template-columns: 1fr; padding-top: 110px; }
  .rt-hero__cards    { display: grid; grid-template-columns: 1fr 1fr; }
  .rt-mission__grid  { grid-template-columns: 1fr; }
  .rt-leitsaetze     { grid-template-columns: 1fr; }
  .rt-event-banner   { grid-template-columns: 1fr; padding: 32px 24px; }
  .rt-spenden__grid  { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .rt-bereiche__grid { grid-template-columns: repeat(2, 1fr); }
  .rt-hero__cards    { grid-template-columns: 1fr; }
  .rt-section-header { flex-direction: column; align-items: flex-start; }
}
