/* ===========================
   DuftvollesTeam.de – style.css 
   =========================== */

/* ---------- Base / Reset ---------- */
:root{
  --bg-dark: #121522;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.78);

  --gold: #f2d27a;
  --gold2:#d4a94c;

  --glass: rgba(255,255,255,0.16);
  --glass-strong: rgba(255,255,255,0.20);
  --glass-border: rgba(255,255,255,0.22);

  --shadow: 0 18px 55px rgba(0,0,0,0.30);
  --shadow-strong: 0 26px 85px rgba(0,0,0,0.42);

  --radius: 18px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.58;
  background: var(--bg-dark);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

/* ---------- Background ---------- */
.page-bg{
  min-height: 100svh;                 
  background-image: url("./images/hg1.png"); /
  background-repeat: no-repeat;
  background-position: left left; 
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;                 
}


.page-bg::before{
  content:"";
  position: fixed;                  
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(255, 170, 110, 0.18), transparent 58%),
    radial-gradient(1000px 600px at 80% 30%, rgba(170, 120, 255, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(10,14,22,0.32), rgba(10,14,22,0.46));
}



@media (max-width: 480px){
  .page-bg{
    background-attachment: scroll;
    background-position: left left;  
  }
  .page-bg::before{
    position: absolute;
    background:
      radial-gradient(900px 520px at 20% 10%, rgba(255, 170, 110, 0.16), transparent 60%),
      radial-gradient(820px 520px at 85% 18%, rgba(170, 120, 255, 0.14), transparent 62%),
      linear-gradient(180deg, rgba(10,14,22,0.22), rgba(10,14,22,0.36));
  }
}

/* Extra: echte „Handy“-Kante */
@media (max-width: 360px){
  .page-bg{
  //  background-position: 50% 15%;    
  }
}


/* ---------- Container ---------- */
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Header (fixed) ---------- */
.site-header{
  position: fixed;
  top: 0; left:0;
  width: 100%;
  z-index: 1000;

  background: rgba(18, 22, 34, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 12px 0;
}

/* Brand / Logo */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  color: var(--text);
}

.brand img{
  height: 82px;              /* deutlich größer */
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.38));
}

.brand .brand-title{
  font-size: 1.06rem;
  font-weight: 650;
  letter-spacing: .2px;
  opacity: 0.95;
}

.nav{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav a{
  color: rgba(255,255,255,0.88);
  font-size: 0.96rem;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration: none;
}

.nav a:hover{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.16);
}


/* Mobile: Header kompakter */
@media (max-width: 520px){
  .container{ width: calc(100% - 26px); }
  .brand img{ height: 62px; max-width: 250px; }
  .brand .brand-title{ display:none; }
  .nav a{ padding: 8px 10px; }
}

/* ---------- Typography ---------- */
h1, h2, h3, .section-title{
  font-family: "Satisfy", cursive;
  color: var(--gold);
  text-shadow:
    0 0 10px rgba(242,210,122,0.42),
    0 2px 10px rgba(0,0,0,0.60);
}

p, li, .lead, .tagline, .ig-hint, .pill, .nav a, .brand-title{
  text-shadow: 0 2px 9px rgba(0,0,0,0.55);
}

/* ---------- Hero / spacing under fixed header ---------- */
.hero{
  padding: 108px 0 36px; 
}

.hero-grid{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap: 22px;
  align-items: start;
  margin-top: 50px;
}

/* ---------- Glass Card ---------- */
.card{
  border-radius: var(--radius);
  padding: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.card h1, .card h2, .card h3{
  margin: 0 0 10px 0;
  line-height: 1.15;
  letter-spacing: .2px;
}

.card h1{ font-size: 2.05rem; }
.card p{
  margin: 0 0 10px 0;
  color: rgba(255,255,255,0.88);
}

/* ---------- Profile (rechtsbündiger Text) ---------- */
.profile{
  display:flex;
  gap: 12px;
  align-items:center;
  margin-bottom: 14px;
}

.profile img{
  width: 140px;
  height: 200px;     /* hochkant */
  object-fit: cover;
  border-radius: 99px; 
  box-shadow: 0 14px 38px rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
}

/* Text rechtsbündig */
.profile > div{
  flex: 1;
  text-align: right;
}

.profile .name{
  font-weight: 800;
  font-size: 1.08rem;
  margin: 0;
}

.profile .tagline{
  margin: 4px 0 0 0;
  font-size: 0.96rem;
  color: rgba(255,255,255,0.78);
}

/* ---------- Pills ---------- */
.pills{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill{
  font-size: 0.92rem;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
}

/* ---------- Instagram block ---------- */
.ig{
  margin-top: 14px;
  display:grid;
  gap: 10px;
}

.ig .ig-hint{
  font-size: 0.94rem;
  color: rgba(255,255,255,0.80);
  margin: 0;
}

.ig .ig-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(255,255,255,0.94);
  text-decoration: none;
}

.ig .ig-link:hover{
  opacity: 0.95;
}

.ig svg{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
}

/* ---------- Text styles ---------- */
.lead{
  font-size: 1.06rem;
  color: rgba(255,255,255,0.88);
}
.lead strong{ color: rgba(255,255,255,0.98); }

.section-title{
  margin-top: 10px;
  font-size: 1.18rem;
}

/* ---------- Buttons ---------- */
.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn, .btn-ghost{
  display:inline-block;
  padding: 11px 16px;
  border-radius: 14px;
  text-decoration: none !important;
  line-height: 1;
  margin-top: 10px;        /* Abstand! */
  cursor: pointer;
}

.btn{
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
  border: 1px solid rgba(255,255,255,0.10);
  font-weight: 800;
}

.btn:hover{
  filter: brightness(1.04);
  transform: translateY(-1px);
  transition: transform .14s ease, filter .18s ease;
}

.btn-ghost{
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.26);
}

.btn-ghost:hover{
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
  transition: transform .14s ease, background .18s ease;
}

/* Gift box */
.gift-box{
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}

/* ---------- Blocks grid ---------- */
.blocks{
  margin: 18px 0 28px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blocks .card{ padding: 16px; }
.blocks h3{ font-size: 1.22rem; margin-bottom: 8px; }
.blocks p{ font-size: 0.98rem; color: rgba(255,255,255,0.84); }

/* ---------- Footer ---------- */
.site-footer{
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.10);
  background: rgba(12, 14, 20, 0.32);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.74);
}

.footer-inner a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}
.footer-inner a:hover{ text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero{ padding: 96px 0 28px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .blocks{ grid-template-columns: 1fr; }
  .profile img{ width: 120px; height: 175px; }
  .profile > div{ text-align: left; } /* auf klein lieber lesbar */
}

/* =========================
   Modal / Kontaktformular (NEU)
   ========================= */

/* Overlay */
.modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 18px;
  background: rgba(10, 12, 18, 0.46);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

/* Dialog */
.modal-content{
  position: relative;
  width: min(920px, 96vw);
  margin: 6vh auto;
  border-radius: 18px;
  padding: 22px 22px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

/* Duft-Farbverlauf im Modal */
.modal-content::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(800px 280px at 10% 10%, rgba(255, 190, 120, 0.22), transparent 60%),
    radial-gradient(700px 280px at 90% 20%, rgba(180, 140, 255, 0.18), transparent 60%),
    radial-gradient(700px 260px at 30% 95%, rgba(120, 220, 255, 0.14), transparent 60%);
  pointer-events:none;
  z-index:0;
}
.modal-content > *{ position: relative; z-index: 1; }

.modal-content h2{
  margin: 0 0 14px 0;
  font-family: "Satisfy", cursive;
  font-size: 2.1rem;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

/* Close Button – klickbar garantiert */
.modal .close{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.24);
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .15s ease, background .2s ease;
  font-size: 28px;
  line-height: 1;
  z-index: 5;            /* wichtig */
  pointer-events: auto;  /* wichtig */
}
.modal .close:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,0.34);
}

/* Form grid */
.modal form{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  align-items: start;
}

/* Inputs */
.modal input[type="text"],
.modal input[type="email"],
.modal textarea{
  grid-column: span 6;
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(10, 12, 18, 0.30);
  color: rgba(255,255,255,0.95);
  outline: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
}

.modal input::placeholder,
.modal textarea::placeholder{
  color: rgba(255,255,255,0.72);
}

.modal input:focus,
.modal textarea:focus{
  border-color: rgba(242, 210, 122, 0.60);
  box-shadow: 0 0 0 3px rgba(242, 210, 122, 0.18), 0 10px 30px rgba(0,0,0,0.22);
}

/* Telefon volle Breite */
.modal input[name="telefon"]{ grid-column: span 12; }

/* Textarea volle Breite */
.modal textarea{
  grid-column: span 12;
  min-height: 110px;
  resize: vertical;
}

/* Checkbox Bereich */
.modal .checkboxes{
  grid-column: span 12;
  padding: 14px;
  border-radius: 14px;
  background: rgba(10, 12, 18, 0.18);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Wenn Du im HTML .check-grid nutzt, wird es schön 2-spaltig */
.modal .checkboxes .check-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 8px;
}

.modal .checkboxes label{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.92);
  user-select: none;
}

.modal .checkboxes input[type="checkbox"]{
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

/* reCAPTCHA + Submit */
.modal .captcha-row{
  grid-column: span 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.modal .g-recaptcha{
  transform: scale(0.95);
  transform-origin: left center;
}

/* Button */
.modal button[type="submit"]{
  border: none;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  color: #1a1a1a;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 14px 40px rgba(0,0,0,0.32);
  transition: transform .15s ease, filter .2s ease;
}
.modal button[type="submit"]:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* Große Screens: keine Scrollbalken, solange es paßt */
@media (min-width: 980px){
  .modal-content{
    max-height: calc(100vh - 12vh);
    overflow: hidden;
  }
}

/* Wenn Inhalt doch größer wird (kleinere Screens), darf gescrollt werden */
@media (max-width: 979px){
  .modal-content{
    max-height: 90vh;
    overflow: auto;
  }
}

/* Body lock (optional, wenn Du JS nutzt) */
body.modal-open{ overflow: hidden; }

/* Mobile */
@media (max-width: 720px){
  .modal-content{ margin: 2vh auto; padding: 18px 16px 16px; }
  .modal input[type="text"],
  .modal input[type="email"]{ grid-column: span 12; }
  .modal .checkboxes .check-grid{ grid-template-columns: 1fr; }
  .modal .g-recaptcha{ transform: scale(0.88); }
}

.mystical {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    color: #f4e7d2;
    border-radius: 50%;
    text-align: center;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

/* Sterne */
#star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff; /* Sternenfarbe */
    border-radius: 50%;
    animation: fly 10s linear infinite;
}

@keyframes fly {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(100vw, -200vh); /* Bewegung von links unten nach rechts oben */
    }
}