/*
Theme Name: FF Event Child
Theme URI: https://ffevent.de
Description: Professionelles Theme für FF Event – Veranstaltungstechnik von Franz Faltermeier.
Author: Franz Faltermeier
Author URI: https://ffevent.de
Template: twentytwentyfour
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: ff-event-child
*/

/* =============================================
   DESIGN SYSTEM
   ============================================= */
:root {
  --ff-red:      #E53935;
  --ff-red-dark: #B71C1C;
  --ff-black:    #111111;
  --ff-dark:     #1a1a1a;
  --ff-white:    #ffffff;
  --ff-gray:     #f5f5f5;
  --ff-muted:    rgba(255,255,255,0.55);
  --ff-border:   rgba(255,255,255,0.1);
  --ff-font:     'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ff-radius:   6px;
  --ff-radius-lg:12px;
  --ff-trans:    0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-font); font-size: 16px; line-height: 1.7; color: var(--ff-black); background: var(--ff-white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ff-red); text-decoration: none; transition: color var(--ff-trans); }

/* =============================================
   LAYOUT
   ============================================= */
.ff-container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.ff-section { padding: 80px 0; }
.ff-section--gray { background: var(--ff-gray); }
.ff-section-label { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ff-red); margin-bottom: 0.5rem; }

/* =============================================
   STICKY BAR
   ============================================= */
.ff-sticky-bar {
  background: var(--ff-red);
  padding: 10px 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 999;
}
.ff-sticky-bar p { color: #fff; font-size: 0.8rem; opacity: 0.9; }
.ff-sticky-bar .ff-btn-sticky {
  background: #fff;
  color: var(--ff-red);
  border: none;
  padding: 7px 18px;
  border-radius: var(--ff-radius);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.ff-nav {
  background: var(--ff-black);
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid var(--ff-border);
}
.ff-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.ff-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ff-nav__logo img { height: 38px; width: auto; }
.ff-nav__links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.ff-nav__links a { color: rgba(255,255,255,0.65); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; transition: color var(--ff-trans); }
.ff-nav__links a:hover { color: #fff; }
.ff-nav__cta { background: var(--ff-red) !important; color: #fff !important; padding: 8px 18px; border-radius: var(--ff-radius); }
.ff-nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.ff-nav__toggle span { display: block; width: 24px; height: 1.5px; background: #fff; transition: all var(--ff-trans); }

/* =============================================
   HERO
   ============================================= */
.ff-hero {
  background: var(--ff-black);
  padding: 100px 0 80px;
}
.ff-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ff-hero__badge {
  display: inline-block;
  background: var(--ff-red);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.ff-hero__title { color: #fff; font-size: clamp(2rem,4.5vw,3rem); font-weight: 500; line-height: 1.15; margin-bottom: 1.25rem; }
.ff-hero__title span { color: var(--ff-red); }
.ff-hero__subtitle { color: var(--ff-muted); font-size: 1rem; line-height: 1.75; margin-bottom: 2.5rem; }
.ff-hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.ff-hero__img { width: 100%; border-radius: var(--ff-radius-lg); object-fit: cover; aspect-ratio: 4/3; }

/* =============================================
   BUTTONS
   ============================================= */
.ff-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--ff-radius);
  cursor: pointer;
  transition: all var(--ff-trans);
  border: none;
  text-decoration: none;
}
.ff-btn--primary { background: var(--ff-red); color: #fff; }
.ff-btn--primary:hover { background: var(--ff-red-dark); color: #fff; transform: translateY(-1px); }
.ff-btn--outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.ff-btn--outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.ff-btn--big { padding: 14px 36px; font-size: 0.82rem; width: 100%; text-align: center; }

/* =============================================
   LEISTUNGEN
   ============================================= */
.ff-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.ff-service-card {
  background: var(--ff-white);
  border: 0.5px solid #e0e0e0;
  border-radius: var(--ff-radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--ff-trans), transform var(--ff-trans);
}
.ff-service-card:hover { border-color: var(--ff-red); transform: translateY(-3px); }
.ff-service-card__icon { width: 44px; height: 44px; background: #fff0f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.3rem; }
.ff-service-card h3 { font-size: 1rem; font-weight: 500; color: var(--ff-black); margin-bottom: 0.5rem; }
.ff-service-card p { font-size: 0.875rem; color: #666; line-height: 1.65; margin: 0; }

/* =============================================
   REFERENZEN
   ============================================= */
.ff-refs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.ff-ref-card { background: var(--ff-white); border: 0.5px solid #e0e0e0; border-radius: var(--ff-radius-lg); overflow: hidden; transition: border-color var(--ff-trans), transform var(--ff-trans); }
.ff-ref-card:hover { border-color: var(--ff-red); transform: translateY(-2px); }
.ff-ref-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.ff-ref-card__body { padding: 1.5rem; }
.ff-ref-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.ff-ref-card__type { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; background: #fff0f0; color: var(--ff-red); padding: 3px 10px; border-radius: 3px; }
.ff-ref-card__year { font-size: 0.78rem; color: #aaa; }
.ff-ref-card__title { font-size: 1.05rem; font-weight: 500; color: var(--ff-black); margin-bottom: 0.25rem; }
.ff-ref-card__client { font-size: 0.8rem; color: var(--ff-red); font-weight: 500; margin-bottom: 0.75rem; }
.ff-ref-card__desc { font-size: 0.875rem; color: #666; line-height: 1.65; margin-bottom: 1rem; }
.ff-ref-card__tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.ff-ref-card__tags span { font-size: 0.7rem; color: #888; background: #f5f5f5; padding: 3px 10px; border-radius: 3px; }

/* =============================================
   ÜBER MICH
   ============================================= */
.ff-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ff-about__badge { display: inline-block; background: var(--ff-red); color: #fff; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 1rem; }
.ff-about h2 { font-size: 1.6rem; font-weight: 500; color: var(--ff-black); margin-bottom: 1rem; }
.ff-about p { font-size: 0.95rem; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.ff-profile__card { background: var(--ff-white); border: 0.5px solid #e0e0e0; border-radius: var(--ff-radius-lg); padding: 1.5rem; display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1rem; }
.ff-profile__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ff-red); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 500; font-size: 1.1rem; flex-shrink: 0; }
.ff-profile__info h3 { font-size: 1rem; font-weight: 500; color: var(--ff-black); margin-bottom: 3px; }
.ff-profile__info p { font-size: 0.8rem; color: #888; margin: 0; }
.ff-quote { background: var(--ff-black); border-radius: var(--ff-radius-lg); border-left: 3px solid var(--ff-red); padding: 1.5rem; margin-bottom: 1rem; }
.ff-quote p { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-style: italic; line-height: 1.7; margin-bottom: 0.75rem; }
.ff-quote cite { color: rgba(255,255,255,0.35); font-size: 0.75rem; font-style: normal; }
.ff-detail-list { border-top: 0.5px solid #e0e0e0; padding-top: 1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.ff-detail-row { display: flex; gap: 1rem; font-size: 0.85rem; align-items: baseline; }
.ff-detail-label { color: #aaa; min-width: 100px; font-size: 0.75rem; flex-shrink: 0; }
.ff-detail-value { color: var(--ff-black); }
.ff-detail-value a { color: var(--ff-red); }

/* =============================================
   KONTAKT
   ============================================= */
.ff-contact { background: var(--ff-black); padding: 80px 0; text-align: center; }
.ff-contact h2 { color: #fff; font-size: 1.75rem; font-weight: 500; margin-bottom: 0.75rem; }
.ff-contact__sub { color: var(--ff-muted); font-size: 1rem; margin-bottom: 3rem; }
.ff-contact__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 440px; margin: 0 auto 2.5rem; }
.ff-contact__card { background: var(--ff-dark); border: 0.5px solid var(--ff-border); border-radius: var(--ff-radius-lg); padding: 1.25rem; transition: border-color var(--ff-trans); }
.ff-contact__card:hover { border-color: rgba(229,57,53,0.4); }
.ff-contact__card-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 6px; display: block; }
.ff-contact__card a, .ff-contact__card span { color: rgba(255,255,255,0.85); font-size: 0.85rem; text-decoration: none; }
.ff-form { max-width: 520px; margin: 0 auto; text-align: left; }
.ff-form__group { margin-bottom: 1.25rem; }
.ff-form label { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
.ff-form input, .ff-form textarea { width: 100%; background: var(--ff-dark); border: 0.5px solid var(--ff-border); border-radius: var(--ff-radius); padding: 12px 16px; color: #fff; font-family: var(--ff-font); font-size: 0.9rem; transition: border-color var(--ff-trans); outline: none; }
.ff-form input:focus, .ff-form textarea:focus { border-color: var(--ff-red); }
.ff-form textarea { min-height: 120px; resize: vertical; }
.ff-form input::placeholder, .ff-form textarea::placeholder { color: rgba(255,255,255,0.2); }

/* =============================================
   FOOTER
   ============================================= */
.ff-footer { background: #0a0a0a; padding: 1.5rem 0; border-top: 0.5px solid rgba(255,255,255,0.06); }
.ff-footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ff-footer__copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }
.ff-footer__links { display: flex; gap: 2rem; list-style: none; }
.ff-footer__links a { color: rgba(255,255,255,0.25); font-size: 0.78rem; text-decoration: none; transition: color var(--ff-trans); }
.ff-footer__links a:hover { color: rgba(255,255,255,0.6); }
.ff-divider { height: 0.5px; background: #eee; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .ff-hero__inner, .ff-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .ff-hero { padding: 80px 0 60px; }
  .ff-services__grid { grid-template-columns: repeat(2, 1fr); }
  .ff-contact__cards { grid-template-columns: 1fr; max-width: 320px; }
}
@media (max-width: 640px) {
  .ff-nav__links { display: none; }
  .ff-nav__toggle { display: flex; }
  .ff-nav__links.is-open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--ff-black); padding: 1.5rem 2rem; border-top: 0.5px solid var(--ff-border); gap: 1.5rem; align-items: flex-start; z-index: 998; }
  .ff-services__grid, .ff-refs__grid { grid-template-columns: 1fr; }
  .ff-section { padding: 60px 0; }
  .ff-sticky-bar p { display: none; }
  .ff-footer__inner { flex-direction: column; text-align: center; }
}
