/* ================================================================
   FALKENBERG – FEIERN IM FELSENKELLER
   Shared Stylesheet v1.0
   ================================================================ */

/* ===== VARIABLES ===== */
:root {
  --weinrot: #6B2D2E;
  --weinrot-dark: #4A1E1F;
  --weinrot-soft: #8B4A4B;
  --gold: #9E7A38;
  --gold-light: #C4A255;
  --gold-muted: #B8972E;
  --white: #ffffff;
  --offwhite: #FDFCFA;
  --warm-cream: #F7F4EF;
  --sand: #EDE8DF;
  --sand-dark: #D9D1C4;
  --text-dark: #2C2C2C;
  --text-body: #4A4A4A;
  --text-light: #8A8275;
  --text-muted: #B0A898;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --max-width: 1180px;
  --section-padding: 100px 0;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ===== RESET ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--text-body); background:var(--white); line-height:1.7; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
.container { max-width:var(--max-width); margin:0 auto; padding:0 28px; }
h1,h2,h3,h4 { font-family:var(--font-heading); font-weight:400; line-height:1.25; }

/* ===== COMMON ELEMENTS ===== */
.section-label {
  font-family:var(--font-body); font-size:.75rem; font-weight:600;
  letter-spacing:3.5px; text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.section-title {
  font-size:clamp(2rem,3.8vw,2.8rem); color:var(--text-dark); margin-bottom:18px; font-weight:400;
}
.section-subtitle {
  font-size:1.05rem; color:var(--text-light); max-width:600px; line-height:1.85; font-weight:300;
}
.section-subtitle.centered { margin:0 auto; }
.section-header { margin-bottom:56px; }
.section-header.centered { text-align:center; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-block; padding:14px 36px;
  font-family:var(--font-body); font-size:.8rem; font-weight:600;
  letter-spacing:2px; text-transform:uppercase; border:none; cursor:pointer;
  transition:all var(--transition);
}
.btn-primary { background:var(--gold); color:var(--white); }
.btn-primary:hover { background:var(--weinrot); transform:translateY(-2px); box-shadow:0 8px 24px rgba(107,45,46,.2); }
.btn-outline-white { background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.7); }
.btn-outline-white:hover { background:var(--white); color:var(--weinrot); border-color:var(--white); }
.btn-outline-dark { background:transparent; color:var(--weinrot); border:1.5px solid var(--weinrot); }
.btn-outline-dark:hover { background:var(--weinrot); color:var(--white); }

/* ===== HEADER ===== */
.header { position:fixed; top:0; left:0; width:100%; z-index:1000; transition:all .5s ease; padding:24px 0; }
.header.scrolled { background:rgba(255,255,255,.97); padding:14px 0; box-shadow:0 1px 20px rgba(0,0,0,.06); }
.header.scrolled .logo-text { color:var(--text-dark); }
.header.scrolled .logo-sub { color:var(--text-light); }
.header.scrolled .nav a { color:var(--text-body); }
.header.scrolled .nav .btn-nav { color:var(--white); background:var(--gold); border-color:var(--gold); }
.header.scrolled .hamburger span { background:var(--text-dark); }
.header.scrolled .logo-icon { background:var(--sand); border-color:var(--sand); color:var(--weinrot); }

/* Header on light pages */
.header-light { background:rgba(255,255,255,.97); padding:14px 0; box-shadow:0 1px 20px rgba(0,0,0,.06); }
.header-light .logo-text { color:var(--text-dark); }
.header-light .logo-sub { color:var(--text-light); }
.header-light .nav a { color:var(--text-body); }
.header-light .nav .btn-nav { color:var(--white); background:var(--gold); border-color:var(--gold); }
.header-light .hamburger span { background:var(--text-dark); }
.header-light .logo-icon { background:var(--sand); border-color:var(--sand); color:var(--weinrot); }

.header-inner { display:flex; justify-content:space-between; align-items:center; }
.logo { display:flex; align-items:center; gap:14px; }
.logo-icon { width:44px; height:44px; background:rgba(255,255,255,.15); border:1.5px solid rgba(255,255,255,.3); border-radius:4px; display:flex; align-items:center; justify-content:center; font-family:var(--font-heading); font-size:1.4rem; font-weight:600; color:var(--white); transition:all var(--transition); }
.logo-text { font-family:var(--font-heading); font-size:1.35rem; font-weight:500; color:var(--white); letter-spacing:.5px; transition:color var(--transition); }
.logo-sub { display:block; font-family:var(--font-body); font-size:.65rem; font-weight:400; letter-spacing:2.5px; text-transform:uppercase; color:rgba(255,255,255,.7); margin-top:1px; transition:color var(--transition); }

.nav { display:flex; align-items:center; gap:36px; }
.nav a { color:rgba(255,255,255,.9); font-size:.82rem; font-weight:500; letter-spacing:.3px; position:relative; padding:4px 0; transition:color var(--transition); }
.nav a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1.5px; background:var(--gold); transition:width .3s ease; }
.nav a:hover::after { width:100%; }
.nav .btn-nav { padding:9px 22px; font-size:.75rem; letter-spacing:1.5px; border:1.5px solid rgba(255,255,255,.5); color:var(--white); background:transparent; transition:all var(--transition); border-radius:0; }
.nav .btn-nav:hover { background:var(--white); color:var(--weinrot); border-color:var(--white); }
.nav .btn-nav::after { display:none; }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { width:22px; height:1.5px; background:var(--white); transition:all .3s ease; }

.mobile-nav { display:none; position:fixed; top:0; left:0; width:100%; height:100vh; background:rgba(255,255,255,.98); z-index:999; flex-direction:column; align-items:center; justify-content:center; gap:28px; }
.mobile-nav.open { display:flex; }
.mobile-nav a { font-family:var(--font-heading); font-size:1.8rem; color:var(--text-dark); }
.mobile-nav-close { position:absolute; top:24px; right:28px; font-size:1.5rem; cursor:pointer; color:var(--text-dark); background:none; border:none; }

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
  padding:180px 0 80px;
  background:var(--sand);
  text-align:center;
}
.page-hero h1 {
  font-size:clamp(2.2rem,4.5vw,3.2rem);
  color:var(--text-dark);
  margin-bottom:14px;
}
.page-hero .hero-sub {
  font-family:var(--font-heading);
  font-size:1.15rem;
  font-style:italic;
  color:var(--text-light);
  max-width:560px;
  margin:0 auto;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background:var(--sand); border-left:3px solid var(--gold);
  padding:20px 24px; margin:24px 0; font-size:.95rem; color:var(--text-body); line-height:1.75;
}

/* ===== CONTACT SECTION (shared) ===== */
.contact { padding:80px 0 100px; background:var(--white); border-top:1px solid var(--sand); }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.contact-info h2 { font-size:clamp(1.8rem,3vw,2.5rem); color:var(--text-dark); margin-bottom:18px; }
.contact-info>p { font-size:1rem; color:var(--text-light); margin-bottom:32px; line-height:1.85; }
.contact-detail { display:flex; align-items:center; gap:14px; margin-bottom:18px; font-size:.95rem; }
.contact-icon { width:40px; height:40px; background:var(--sand); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0; }
.contact-detail a { color:var(--weinrot); font-weight:500; transition:color .3s ease; }
.contact-detail a:hover { color:var(--gold); }

.contact-form { background:var(--sand); padding:44px; border:1px solid var(--sand); }
.contact-form h3 { font-size:1.4rem; color:var(--text-dark); margin-bottom:24px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:.75rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:var(--text-body); margin-bottom:6px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:13px 16px; font-family:var(--font-body); font-size:.95rem; border:1px solid var(--sand); background:var(--white); color:var(--text-dark); transition:border-color .3s ease; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--gold); }
.form-group textarea { height:110px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }

/* ===== CTA BANNER ===== */
.cta-banner { padding:60px 0; background:var(--sand); text-align:center; }
.cta-banner p { font-family:var(--font-heading); font-size:1.4rem; font-style:italic; color:var(--text-dark); margin-bottom:24px; font-weight:400; }

/* ===== FOOTER ===== */
.footer { background:var(--text-dark); color:var(--white); padding:56px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand .footer-logo { font-family:var(--font-heading); font-size:1.3rem; font-weight:500; margin-bottom:4px; }
.footer-brand .footer-logo-sub { font-size:.6rem; letter-spacing:2px; text-transform:uppercase; opacity:.5; margin-bottom:16px; }
.footer-brand p { font-size:.85rem; opacity:.5; line-height:1.7; }
.footer h4 { font-size:.72rem; font-family:var(--font-body); font-weight:600; letter-spacing:2px; text-transform:uppercase; color:var(--gold-light); margin-bottom:18px; }
.footer-links a { display:block; font-size:.85rem; color:rgba(255,255,255,.5); padding:3px 0; transition:color .3s ease; }
.footer-links a:hover { color:var(--white); }
.footer-bottom { display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:.75rem; color:rgba(255,255,255,.3); }
.footer-legal a { color:rgba(255,255,255,.3); margin-left:18px; transition:color .3s ease; }
.footer-legal a:hover { color:var(--white); }

/* ===== ANIMATIONS ===== */
.fade-in { opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  :root { --section-padding:64px 0; }
  .nav { display:none; }
  .hamburger { display:flex; }
  .contact-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .page-hero { padding:140px 0 60px; }
}
