/* ===========================
   Vienna Salsa Studio – Kontakt (Light)
   Standalone CSS (separate file)
   =========================== */

:root{
  /* Light / Salsa brand mood */
  --bg: #fbfbfd;
  --bg2:#f6f7fb;

  --text:#0b1020;
  --muted: rgba(11,16,32,.68);
  --line: rgba(11,16,32,.12);

  --salsa:#ff3b30;   /* rot */
  --mango:#ffb000;   /* gold */
  --berry:#7c5cff;   /* optionaler Kontrast */

  --shadow: 0 18px 55px rgba(13,18,40,.12);
  --shadow2: 0 8px 22px rgba(13,18,40,.08);

  --r1: 18px;
  --r2: 26px;
  --max: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.55;

  /* weiche große Farbflächen */
  background:
    radial-gradient(1200px 900px at 10% 0%, rgba(255,59,48,.14), transparent 55%),
    radial-gradient(1200px 900px at 90% 10%, rgba(255,176,0,.14), transparent 58%),
    radial-gradient(900px 700px at 55% 105%, rgba(124,92,255,.08), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Optional: dezentes Noise gegen Banding */
body::before{
  content:"";
  position: fixed;
  inset:0;
  pointer-events:none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity: .035;
  mix-blend-mode: multiply;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 20px 64px;
}

/* ---------------------------
   Hero (Header)
--------------------------- */
.hero{
  display:flex;
  flex-direction:column;
  gap: 14px;
  margin-bottom: 22px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  letter-spacing:.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(11,16,32,.65);
}

.kicker .pulse{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--salsa), var(--mango));
  box-shadow:
    0 0 0 4px rgba(255,59,48,.12),
    0 0 26px rgba(255,176,0,.18);
}

h1{
  margin:0;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.sub{
  margin:0;
  color: var(--muted);
  max-width: 78ch;
  font-size: 16px;
}

/* ---------------------------
   Layout grid
--------------------------- */
.grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* ---------------------------
   Card base
--------------------------- */
.card{
  grid-column: span 12;
  border-radius: var(--r2);
  border: 1px solid rgba(11,16,32,.10);
  background:
    radial-gradient(900px 420px at 85% -20%, rgba(255,59,48,.08), transparent 68%),
    radial-gradient(700px 380px at -10% 110%, rgba(255,176,0,.06), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.78));
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, filter .18s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover{
  transform: translateY(-3px);
  border-color: rgba(11,16,32,.16);
  box-shadow: 0 22px 70px rgba(13,18,40,.14);
}

/* ---------------------------
   Contact info cards
--------------------------- */
.contact-info{
  margin-top: 28px;
}

.info-card p{
  margin: 6px 0;
  font-size: 15px;
  color: rgba(11,16,32,.86);
}

.info-card a{
  color: rgba(11,16,32,.92);
  text-decoration: none;
  font-weight: 800;
}

.info-card a:hover{
  text-decoration: underline;
}

/* Optional small label (e.g., “Heute”) */
.small-muted{
  margin-top: 10px;
  font-size: 13px;
  color: rgba(11,16,32,.62);
}

/* ---------------------------
   Titles inside cards/sections
--------------------------- */
.title{
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.desc{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

/* ---------------------------
   Form section
--------------------------- */
.form-section{
  margin-top: 40px;
  max-width: 720px;
  display: none; /* versteckt, da das Formular aktuell nicht aktiv ist. Einfach auf block setzen, wenn du es nutzen möchtest. */
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap: 14px;
  margin-top: 10px;
}

.contact-form label{
  font-size: 14px;
  color: rgba(11,16,32,.68);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea{
  padding: 12px 12px;
  border: 1px solid rgba(11,16,32,.16);
  border-radius: 12px;
  font-size: 15px;
  color: rgba(11,16,32,.92);
  background: rgba(255,255,255,.88);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(255,59,48,.55);
  box-shadow: 0 0 0 4px rgba(255,59,48,.12);
  background: rgba(255,255,255,.96);
}

.note-small{
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(11,16,32,.62);
}

/* ---------------------------
   Buttons
--------------------------- */
.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn{
  appearance:none;
  border: 1px solid rgba(11,16,32,.14);
  background: rgba(255,255,255,.72);
  color: rgba(11,16,32,.90);
  padding: 11px 14px;
  border-radius: 14px;
  font-weight: 950;
  font-size: 14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, filter .12s ease, box-shadow .12s ease;
}

/* Hover NUR für nicht-primary, damit primary nicht weiß wird */
.btn:not(.btn-primary):hover{
  transform: translateY(-1px);
  border-color: rgba(11,16,32,.20);
  background: rgba(255,255,255,.90);
}

.btn-primary{
  border: 0;
  background: linear-gradient(135deg, var(--salsa), var(--mango));
  color: #1b0b0d;
  box-shadow: 0 12px 28px rgba(255,59,48,.16);
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 44px rgba(255,59,48,.22);
}

/* ---------------------------
   Footer CTA (optional)
--------------------------- */
.footer-cta{
  margin-top: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(11,16,32,.12);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow2);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-cta p{
  margin:0;
  color: rgba(11,16,32,.68);
}

.footer-cta p b{
  color: rgba(11,16,32,.92);
}

/* ---------------------------
   Map section
--------------------------- */
.map-section{
  margin-top: 28px;
}

.map-card{
  grid-column: span 12; /* falls du es innerhalb .grid nutzt */
}

.map-head{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin-bottom: 14px;
}

.map-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.map-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,16,32,.10);
  box-shadow: var(--shadow2);
  background: rgba(255,255,255,.75);
}

.map-embed iframe{
  display:block;
  width:100%;
  height: 360px;
  border: 0;
}

/* kleiner Hinweistext unterhalb der Karte */
.map-hint{
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(11,16,32,.62);
}

@media (min-width: 720px){
  .map-embed iframe{ height: 420px; }
}

/* ---------------------------
   Responsive
--------------------------- */
@media (min-width: 720px){
  .card{ grid-column: span 6; padding: 24px; }
  .form-section{ margin-top: 44px; }
  .footer-cta{ padding: 18px 20px; }
}

@media (prefers-reduced-motion: reduce){
  .card, .btn{ transition: none; }
}