/*
Theme Name: HUGE Acoustic – Editorial
Theme URI: https://example.com/huge-band
Author: OpenAI
Description: Klassisches WordPress-Theme für HUGE – bereinigte Version mit responsivem Layout.
Version: 5.0.0-clean
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: huge-band
*/

/* =========================================================
   BASIS / VARIABLEN accent bisher #e95f39
   ========================================================= */
:root{
  --paper:#f4f0e8;
  --warm:#eee6da;
  --accent:#f20c0c;
  --brown:#5c574b;
  --line:rgba(17,17,15,.2);
  --max:1180px;
  --header-bg:linear-gradient(180deg,#111 0%,#452238 100%);
}

*,
*::before,
*::after{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  max-width:100%;
  overflow-x:hidden;
  scrollbar-gutter:stable;
}

body{
  margin:0;
  max-width:100%;
  overflow-x:hidden;
  background:var(--paper);
  color:var(--brown);
  font-family:Arial,Helvetica,sans-serif;
  font-size:18px;
  line-height:1.5;
}

a{
  color:inherit;
  text-decoration-thickness:1px;
  text-underline-offset:.18em;
}

img,
video,
iframe{max-width:100%}

img{
  display:block;
  height:auto;
}

.site-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

main{flex:1}


/* =========================================================
   HEADER
   ========================================================= */
.huge-site-header{
  position:relative;
  z-index:50;
  color:#fff;
  background:var(--header-bg);
  padding:13px clamp(20px,4vw,56px);
  border-bottom:1px solid rgba(255,255,255,.15);
}

.header-inner{
  position:relative;
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:32px;
}

.huge-brand{
  font-family:Verdana,Arial,sans-serif;
  font-size:clamp(1.05rem,1.7vw,1.8rem);
  font-weight:1000;
  margin:0;
  letter-spacing:.05em;
  line-height:.8;
  text-decoration:none;
  color:#fff;
  flex:0 0 auto;
}

.huge-nav{
  display:flex;
  align-items:center;
  gap:clamp(22px,2.5vw,36px);
}

.huge-nav a{
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.11em;
  position:relative;
  padding:8px 0;
}

.huge-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:currentColor;
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .2s ease;
}

.huge-nav a:hover::after,
.huge-nav a[aria-current="page"]::after{
  transform:scaleX(1);
  transform-origin:left;
}

.nav-toggle{
  display:none;
  border:0;
  background:none;
  color:#fff;
  font:inherit;
  font-size:1.65rem;
  cursor:pointer;
  padding:4px;
}


/* =========================================================
   SOCIAL ICONS IM HEADER
   ========================================================= */
.header-social{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  z-index:60;
}

.header-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  text-decoration:none;
  transition:opacity .2s ease,transform .2s ease;
}

.header-social img{
  display:block;
  width:26px;
  height:26px;
  object-fit:contain;
}

.header-social a:hover{
  opacity:.78;
  transform:translateY(-1px) scale(1.06);
}


/* =========================================================
   STARTSEITE
   ========================================================= */
.huge-hero{
  min-height:calc(100svh - 104px);
  position:relative;
  background:url('./assets/images/huge-promo-smile-neu-1a.jpg') center 13%/cover no-repeat;
  display:flex;
  align-items:flex-end;
  color:#fff;
  padding:70px clamp(22px,5vw,64px) clamp(42px,6vw,72px);
}

.huge-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.06),
    rgba(0,0,0,.03) 40%,
    rgba(0,0,0,.58) 100%
  );
  pointer-events:none;
}

.huge-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1040px;
  margin:0 auto;
  transform:translate(-80px,-8px);
}

.eyebrow{
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.16em;
  font-size:.8rem;
  margin:0 0 12px;
}

.huge-hero h1{
  font-size:clamp(3.6rem,8vw,7rem);
  line-height:.78;
  letter-spacing:-.075em;
  margin:0 0 18px;
  font-weight:1000;
}

.huge-tagline{
  font-size:clamp(1.45rem,2.8vw,2.7rem);
  line-height:1;
  letter-spacing:-.035em;
  font-weight:800;
  max-width:720px;
  margin:0;
}

.huge-subline{
  margin:18px 0 0;
  font-size:clamp(.98rem,1.25vw,1.18rem);
  max-width:610px;
}

.huge-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:32px;
}

.huge-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:12px 22px;
  border:1px solid currentColor;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
  font-weight:900;
  transition:.2s ease;
}

.huge-button:hover{
  background:#fff;
  color:#111;
  transform:translateY(-2px);
}

.huge-button.solid{
  background:#63324E;
  border-color:#63324E;
  color:#fff;
}

.huge-button.solid:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
}

.home .huge-site-footer{display:none}


/* =========================================================
   ALLGEMEINE UNTERSEITEN
   ========================================================= */
.page-hero{
  padding:40px clamp(22px,5vw,80px) 30px;
  background:var(--paper);
  color:var(--brown);
}

.page-hero-inner,
.content-wrap{
  max-width:1080px;
  margin:auto;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .intro{color:var(--brown)}

.page-hero h1{
  font-size:clamp(3rem,8vw,6rem);
  line-height:.78;
  letter-spacing:-.075em;
  margin:0;
  font-weight:1000;
  max-width:1100px;
}

.page-hero .intro{
  font-size:clamp(1.35rem,2.8vw,2.6rem);
  line-height:1.05;
  letter-spacing:-.035em;
  max-width:950px;
  margin:36px 0 0;
}

.page-hero + .section{padding-top:25px}

.section{
  padding:clamp(70px,9vw,135px) clamp(22px,5vw,80px);
}

.section:nth-child(even){background:var(--warm)}

.content-wrap.narrow{max-width:860px}

.display{
  font-size:clamp(3.5rem,5vw,4.5rem);
  line-height:.9;
  letter-spacing:-.06em;
  margin:0 0 28px;
  font-weight:1000;
  color:var(--brown);
}

.lead{
  font-size:1rem;
  max-width:760px;
  color:var(--brown);
}

.two-col{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(30px,6vw,90px);
  align-items:start;
}


/* =========================================================
   BAND
   ========================================================= */

.band-page .page-hero{
  padding-bottom:10px;
}

.band-page .page-hero + .section{
  padding-top:15px;
}

.band-page .band-image{
  width:100%;
  max-width:1080px;
  margin:20px auto 0;
  padding-top:0;
  padding-bottom:20px;
}

.band-page .band-image img{
  display:block;
  width:100%;
  height:auto;
  max-height:none;
  object-fit:contain;
  margin:0;
}

.band-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  border-top:1px solid var(--line);
  margin-top:45px;
}

.member{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:30px 20px 32px 0;
  border-bottom:1px solid var(--line);
}

.member:nth-child(odd){
  border-right:1px solid var(--line);
  padding-right:35px;
}

.member:nth-child(even){padding-left:35px}

.member-text{
  flex:1;
  min-width:0;
}

.member-photo{
  width:85px;
  height:105px;
  object-fit:cover;
  object-position:center;
  border-radius:6px;
  flex-shrink:0;
}

.member h3{
  font-size:clamp(1.5rem,2.5vw,2.2rem);
  line-height:.95;
  letter-spacing:-.05em;
  margin:0 0 10px;
  color:var(--brown);
}

.member .role{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  color:var(--accent);
}

.member p{
  max-width:520px;
  margin-bottom:0;
  font-size:.9rem;
  color:var(--brown);
}


/* =========================================================
   LIVE
   ========================================================= */
.live-tour-title{color:var(--brown) !important}

.live-page .page-hero{
  padding-top:40px;
  padding-bottom:26px;
}


.live-subtitle{
  margin:36px 0 0;
  font-size:clamp(1.35rem,2.8vw,2.6rem);
  line-height:1.05;
  letter-spacing:-.035em;
  font-weight:800;
  color:var(--brown);
}

.live-page .live-image{
  margin:0;
}

.live-page .live-image img{margin:0}

.live-page .live-image-section + .section{
  padding-top:15px;
}

.live-image-section{
  padding:10px clamp(22px,5vw,80px) 5px;
}

.live-image-placeholder{
  width:100%;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--warm);
  border:1px solid var(--line);
  color:var(--brown);
  font-size:.75rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.live-image img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  display:block;
}

.gigs{
  border-top:1px solid var(--line);
  margin-top:40px;
}

.gig{
  display:grid;
  grid-template-columns:190px 1fr auto;
  gap:25px;
  align-items:center;
  padding:26px 0;
  border-bottom:1px solid var(--line);
}

.gig-date{
  font-size:1.05rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  opacity:.85;
  color:var(--accent) !important;
}

.gig-title{
  font-size:clamp(0.95rem,3vw,2.6rem);
  font-weight:900;
  letter-spacing:-.035em;
  line-height:1;
  color:var(--brown) !important;
}

.gig-place{
  font-size:clamp(1.35rem,3vw,2.6rem);
  font-weight:900;
  letter-spacing:-.035em;
  line-height:1;
  opacity:.85;
  margin-top:5px;
}

.gig-year{
  font-size:2rem !important;
}


/* =========================================================
   MEDIA
   ========================================================= */
.featured-video{
  width:100%;
  margin:0 0 55px;
}

.featured-video iframe,
.featured-video video{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  border:0;
  background:#000;
}

.featured-video video{object-fit:cover}

.media-heading{
  margin:55px 0 24px;
  font-size:clamp(1.8rem,3vw,2.8rem);
  color:var(--brown);
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.video-placeholder{
  display:block;
  min-width:0;
  min-height:90px;
  text-decoration:none;
  background:var(--warm);
  color:var(--brown);
  border:1px solid var(--line);
  overflow:hidden;
  transition:transform .2s ease,opacity .2s ease;
}

.video-placeholder:hover{
  transform:translateY(-3px);
  opacity:.88;
}

.video-placeholder-inner{
  width:100%;
  min-height:90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  padding:6px 12px;
  text-align:center;
}

.video-play{
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 30px;
  border-radius:50%;
  background:#e62117;
  color:#fff;
  font-size:.75rem;
  padding-left:3px;
}

.video-label{
  max-width:100%;
  font-size:.62rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  overflow-wrap:anywhere;
}

.audio-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.audio-card{
  min-width:0;
  padding:20px;
  background:var(--warm);
  color:var(--brown);
}

.audio-card .eyebrow{
  font-size:.60rem;
  letter-spacing:.08em;
}

.audio-card audio{
  width:100%;
  max-width:100%;
}

.media-links{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-top:55px;
  padding-top:24px;
  border-top:1px solid var(--line);
}

.media-links a{
  color:var(--brown);
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.78rem;
}


/* =========================================================
   KONTAKT / BOOKING HERO
   ========================================================= */
.booking-page .page-hero,
.contact-page .page-hero{
  padding-top:40px;
  padding-bottom:26px;
}


.booking-page .page-hero + .section,
.contact-page .page-hero + .section{
  padding-top:28px;
}


/* =========================================================
   BOOKING
   ========================================================= */
.booking-contact{color:var(--brown)}

.booking-mail{
  font-size:20px;
  line-height:1.15;
  letter-spacing:-.04em;
  font-weight:1000;
  word-break:break-word;
  margin:30px 0;
  color:var(--brown);

}

.booking-mail a{
  text-decoration:none;
  border-bottom:4px solid var(--line);
	
}

.booking-phone{
  margin:0 0 30px;
  color:var(--brown);
  font-size:1rem;
  line-height:1.5;
}

.booking-phone p{
  margin:4px 0;
}

.booking-phone a{
  color:var(--brown);
  text-decoration:none;
}

.booking-phone a:hover{
  text-decoration:underline;
}

.booking-image{
  margin:20px 0 10px;
}

.booking-image img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  display:block;
}

.booking-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  margin-top:50px;
  border:1px solid var(--line);
}

.booking-fact{
  background:var(--paper);
  padding:28px;
  color:var(--brown);
}

.booking-fact strong{
  display:block;
  text-transform:uppercase;
  letter-spacing:.11em;
  font-size:.78rem;
  margin-bottom:8px;
  color:var(--brown);
}

.page-editor-content{
  margin-top:50px;
  border-top:1px solid var(--line);
  padding-top:35px;
  color:var(--brown);
}


 /* =========================================================
   GÄSTEBUCH
   ========================================================= */

.guestbook-page .page-hero{
  padding-bottom:20px;
}

.guestbook-page .page-hero + .guestbook-section{
  padding-top:24px;
}

.guestbook-section{
  width:calc(100% - 32px);
  max-width:1080px;
  margin-left:auto;
  margin-right:auto;
}

.guestbook-box{
  width:100%;
  color:var(--brown);
}

/* Gwolle etwas besser ans HUGE-Layout anpassen */
.guestbook-box input[type="text"],
.guestbook-box input[type="email"],
.guestbook-box input[type="url"],
.guestbook-box textarea{
  width:100%;
  max-width:100%;
  padding:12px 14px;
  border:1px solid var(--line);
  background:var(--paper);
  color:var(--brown);
  font:inherit;
}

.guestbook-box textarea{
  min-height:150px;
}

.guestbook-box input[type="submit"],
.guestbook-box button{
  padding:12px 20px;
  border:1px solid var(--brown);
  background:var(--brown);
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  cursor:pointer;
}

.guestbook-box input[type="submit"]:hover,
.guestbook-box button:hover{
  background:var(--paper);
  color:var(--brown);
}

/* =========================================================
   DOWNLOADS
   ========================================================= */

.downloads-page .page-hero{
  padding-top:40px;
  padding-bottom:26px;
}


.downloads-section{
  padding-top:34px;
}

.downloads-intro{
  max-width:760px;
  margin:0 0 34px;
  color:var(--brown);
}

.download-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.download-card{
  min-width:0;
  padding:28px;
  background:var(--warm);
  border:1px solid var(--line);
  color:var(--brown);
}

.download-card h2{
  margin:0 0 10px;
  font-size:clamp(1.55rem,3vw,2.4rem);
  line-height:1;
  letter-spacing:-.035em;
}

.download-card p{
  margin:0 0 22px;
  font-size:.95rem;
}

.downloads-page .download-card .huge-button{
  color:var(--brown);
  border-color:var(--brown);
}

.downloads-page .download-card .huge-button:hover{
  background:var(--paper);
  color:var(--brown);
  border-color:var(--brown);
}

.download-note{
  margin-top:26px;
  padding-top:22px;
  border-top:1px solid var(--line);
  font-size:.88rem;
  color:var(--brown);
}

@media (max-width:700px){
  .download-grid{
    grid-template-columns:1fr;
  }

  .download-card{
    padding:22px;
  }
}


/* =========================================================
   IMPRESSUM / RECHTLICHE SEITEN
   ========================================================= */
.legal-page .page-hero{
  padding-bottom:24px;
}

.legal-section{
  padding-top:32px;
}

.legal-content{
  color:var(--brown);
  max-width:860px;
}

.legal-content > *:first-child{
  margin-top:0;
}

.legal-content h2{
  margin:38px 0 12px;
  font-size:clamp(1.45rem,2.5vw,2.1rem);
  line-height:1.1;
  color:var(--brown);
}

.legal-content h3{
  margin:28px 0 10px;
  font-size:1.15rem;
  color:var(--brown);
}

.legal-content p,
.legal-content li,
.legal-content address{
  font-size:1rem;
  line-height:1.65;
  color:var(--brown);
}

.legal-content address{
  font-style:normal;
}

.legal-content ul,
.legal-content ol{
  padding-left:1.25rem;
}

.legal-content a{
  color:var(--brown);
  overflow-wrap:anywhere;
}

/* =========================================================
   FOOTER
   ========================================================= */
.huge-site-footer{
  background:linear-gradient(180deg,#111 0%,#452238 100%);
  color:#fff;
  padding:20px clamp(20px,4vw,56px);
}

.footer-inner{
  position:relative;
  max-width:var(--max);
  margin:auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:24px;
}

.footer-brand{
  justify-self:start;
  font-family:Verdana,Arial,sans-serif;
  font-size:clamp(1.05rem,1.7vw,1.8rem);
  font-weight:1000;
  letter-spacing:.05em;
  line-height:1;
  color:#fff;
}

.footer-links-center{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:26px;
  white-space:nowrap;
}

.footer-links-center a{
  color:#fff;
  text-decoration:none;
  font-size:.88rem;
}

.footer-copy{
  justify-self:end;
  font-size:.82rem;
  white-space:nowrap;
}


/* =========================================================
   TABLET / 601 bis 1300 PX
   ========================================================= */
@media (max-width:1300px){

  .huge-site-header{
    position:relative;
    z-index:9999;
    padding:11px 16px;
  }

  .header-inner{
    width:100%;
    max-width:100%;
    min-width:0;
    margin:0;
    gap:12px;
  }

  .huge-brand{
    margin-left:0;
    flex:0 0 auto;
    font-size:1.95rem;
    line-height:1;
  }

  .header-social{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    gap:10px;
  }

  .header-social a{
    width:30px;
    height:30px;
  }

  .header-social img{
    width:26px;
    height:26px;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 42px;
    width:42px;
    height:42px;
    margin-left:auto;
    padding:0;
    color:#fff;
    font-size:1.6rem;
    line-height:1;
    position:relative;
    z-index:10001;
  }

  .huge-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    max-width:none;
    margin:0;
    padding:12px 18px 18px;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    background:linear-gradient(180deg,#63324E 0%,#452238 100%);
    box-shadow:0 12px 24px rgba(0,0,0,.22);
    z-index:10000;
  }

  .huge-nav.is-open{display:flex}

  .huge-nav a{
    display:inline-block;
    width:auto;
    align-self:flex-start;
    color:#fff;
    font-size:.76rem;
    line-height:1.2;
    padding:12px 0;
    white-space:normal;
  }

  .huge-nav a::after{width:100%}

  /* Startbild vollständig zeigen */
  .huge-hero{
    width:100%;
    max-width:100%;
    min-width:0;
    min-height:calc(100svh - 58px);
    height:auto;
    padding:24px 16px 28px;
    overflow:hidden;
    background-image:url('assets/images/huge-promo-smile-neu-1a.jpg');
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center top;
    background-color:#111;
  }

  .huge-hero-inner{
    width:100%;
    max-width:100%;
    min-width:0;
    margin:0;
    padding:0;
    transform:translateY(-28px);
  }

  .huge-hero .eyebrow,
  .huge-hero h1,
  .huge-tagline,
  .huge-subline,
  .huge-actions{
    width:100%;
    min-width:0;
    max-width:100%;
  }

  .huge-hero .eyebrow{
    margin:0 0 8px;
    font-size:.65rem;
    line-height:1.3;
    letter-spacing:.09em;
    overflow-wrap:anywhere;
  }

  .huge-hero h1{
    margin:0 0 12px;
    font-size:clamp(2.6rem,15vw,4rem);
    line-height:.84;
    letter-spacing:-.05em;
  }

  .huge-tagline{
    font-size:clamp(1.15rem,6vw,1.55rem);
    line-height:1.08;
    letter-spacing:-.02em;
    overflow-wrap:anywhere;
  }

  .huge-subline{
    margin:13px 0 0;
    font-size:.9rem;
    line-height:1.4;
    overflow-wrap:anywhere;
  }

  .huge-actions{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:9px;
    margin-top:18px;
  }

  .huge-button{
    width:100%;
    max-width:280px;
    min-width:0;
    min-height:42px;
    padding:10px 12px;
    font-size:.68rem;
    line-height:1.15;
    letter-spacing:.055em;
    white-space:normal;
    text-align:center;
  }

  .page-hero,
  .section{
    width:100%;
    max-width:100%;
    padding-left:16px;
    padding-right:16px;
  }

  .content-wrap,
  .page-hero-inner{
    width:100%;
    max-width:100%;
    min-width:0;
  }

  .two-col,
  .band-grid,
  .booking-facts{
    grid-template-columns:minmax(0,1fr);
  }

  .member{
    width:100%;
    min-width:0;
    padding-left:0;
    padding-right:0;
  }

  .member:nth-child(odd){
    border-right:0;
    padding-right:0;
  }

  .member:nth-child(even){padding-left:0}

  .member-photo{margin-right:0}

  .member p,
  .lead,
  .booking-mail,
  .booking-mail a{
    max-width:100%;
    overflow-wrap:anywhere;
  }

  .gig{grid-template-columns:1fr}

  /* Media: Tablet = 3 Spalten */
  .video-grid,
  .audio-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
  }

  .audio-card{
    padding:14px;
  }

  .video-placeholder-inner{
    padding:8px 10px;
  }

  .huge-site-footer{
    padding:15px 16px;
  }

  .footer-inner{
    grid-template-columns:auto 1fr auto;
    gap:14px;
    width:100%;
    max-width:100%;
  }

  .footer-brand{font-size:1.5rem}

  .footer-links-center{gap:14px}

  .footer-links-center a{font-size:.82rem}
  .footer-copy{font-size:.70rem}
}


/* Tablet: horizontales Panning, explizit hin und zurück */
@media (min-width:601px) and (max-width:1300px){
   .huge-hero{
    background-size:cover;
    animation:hugeHeroPanTablet 28s ease-in-out infinite;
  }


  @keyframes hugeHeroPanTablet{
    0%{background-position:30% 30%}
    50%{background-position:70% 30%}
    100%{background-position:30% 30%}
  }
}


/*
  PERFORMANCE-HINWEIS:
  Das Panning des großen Hero-Hintergrundbilds kann auf schwächeren Mobilgeräten
  zusätzliche Repaints verursachen. Falls nötig, folgende Regel aktivieren:

  @media (max-width:1300px){ .huge-hero{animation:none !important} }
*/

/* =========================================================
   TABLET PORTRAIT: Textblock etwas höher und leicht zur Mitte
   ========================================================= */
@media (min-width:601px) and (max-width:900px) and (orientation:portrait){

  .huge-hero-inner{
    transform:translate(18px,-48px);
  }
}

/* =========================================================
   SMARTPHONE BIS 600 PX
   ========================================================= */

@keyframes hugeHeroPan{
  0%{background-position:25% 30%}
  100%{background-position:75% 30%}
}

@media (max-width:600px){

  .huge-hero{
    background-image:url('./assets/images/huge-promo-smile-neu-1a.jpg');
    background-size:cover;
    background-repeat:no-repeat;
    animation:hugeHeroPan 28s ease-in-out infinite alternate;
  }

  /* Media: Smartphone = 1 Spalte */
  .video-grid,
  .audio-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .video-placeholder{
    min-height:90px;
  }

  .video-placeholder-inner{
    min-height:90px;
    padding:8px 12px;
    gap:5px;
  }

  .video-play{
    width:30px;
    height:30px;
    flex:0 0 30px;
    font-size:.75rem;
  }

  .video-label{
    font-size:.62rem;
    letter-spacing:.08em;
  }

  .audio-card{
    padding:14px;
  }

  .audio-card .eyebrow{
    font-size:.54rem;
    letter-spacing:.08em;
  }

  .audio-card audio{
    width:100%;
    min-width:0;
  }

  .media-links{
    gap:16px;
  }
}


/* Bewegung auf Wunsch des Systems deaktivieren – spart Rendering-Arbeit. */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .huge-hero{animation:none !important}
  .huge-nav a::after,
  .huge-button,
  .header-social a,
  .video-placeholder{transition:none !important}
}


/* =========================================================
   KLEINE SMARTPHONES BIS 480 PX
   ========================================================= */

@media (max-width:480px){

  .huge-site-header{
    padding:10px 14px;
  }

  .huge-brand{
    font-size:1.72rem;
  }

  .huge-hero{
    min-height:calc(100svh - 54px);
    padding:20px 14px 22px;
  }

  .huge-hero h1{
    font-size:clamp(2.4rem,14vw,3.4rem);
  }

  .huge-tagline{
    font-size:clamp(1.05rem,5.8vw,1.35rem);
  }

  .huge-subline{
    font-size:.84rem;
  }

  .huge-button{
    max-width:250px;
    font-size:.64rem;
  }

  .footer-inner{
    gap:9px;
  }

  .footer-brand{
    font-size:1.28rem;
  }

  .footer-links-center{
    gap:8px;
  }

  .footer-links-center a{
    font-size:.70rem;
  }

  .footer-copy{
    font-size:.58rem;
  }
}


/* =========================================================
   SEHR KLEINE SMARTPHONES BIS 380 PX
   ========================================================= */

@media (max-width:380px){

  .header-social{
    gap:7px;
  }

  .header-social a{
    width:23px;
    height:23px;
  }

  .header-social img{
    width:20px;
    height:20px;
  }
}


/* =========================================================
   FEINABSTIMMUNG / SEITENBREITEN
   ========================================================= */

/* Downloads – Intro kompakt */
.downloads-page .page-hero .intro{
  font-size:.95rem;
  line-height:1.5;
  margin-top:18px;
}

/* Media – Hero und Hauptvideo */
.media-page .page-hero{
  padding-bottom:1px;
}

.media-page .page-hero + .section{
  padding-top:15px;
}

/* Farb-/Inhaltsbereiche auf Bildbreite begrenzen */
.band-page > .section,
.live-page > .section,
.booking-page > .section,
.downloads-page > .section,
.media-page > .section{
  width:calc(100% - 32px);
  max-width:1080px;
  margin-left:auto;
  margin-right:auto;
}


/* =========================================================
   GÄSTEBUCH – BUTTONS
   ========================================================= */

.guestbook-box a,
.guestbook-box button,
.guestbook-box input[type="button"],
.guestbook-box input[type="submit"]{
  font-size:1rem !important;
}

.guestbook-box .gwolle-gb a,
.guestbook-box .gwolle-gb button,
.guestbook-box .gwolle-gb input[type="button"],
.guestbook-box .gwolle-gb input[type="submit"]{
  min-height:52px !important;
  padding:14px 24px !important;
  font-size:1rem !important;
  line-height:1.2 !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
}


/* Smartphone – letzte seitenbezogene Feinabstimmungen */
@media (max-width:600px){

  .band-page > .section,
  .live-page > .section,
  .booking-page > .section,
  .downloads-page > .section,
  .media-page > .section{
    width:calc(100% - 32px);
  }

  .media-page .media-heading:first-child{
    margin-top:0;
    margin-bottom:18px;
  }

  .guestbook-box .gwolle-gb a,
  .guestbook-box .gwolle-gb button,
  .guestbook-box .gwolle-gb input[type="button"],
  .guestbook-box .gwolle-gb input[type="submit"]{
    min-height:56px !important;
    padding:16px 26px !important;
    font-size:1.05rem !important;
  }
}


/* =========================================================
   DESKTOP AB 1301 PX
   Logo | Social Icons | Navigation
   ========================================================= */

@media (min-width:1301px){

  .header-inner{
    display:grid;
    grid-template-columns:max-content minmax(90px,1fr) max-content;
    align-items:center;
    column-gap:24px;
    width:100%;
    max-width:var(--max);
    margin:0 auto;
  }

  .huge-brand{
    grid-column:1;
    justify-self:start;
    margin:0;
  }

  .header-social{
    grid-column:2;
    justify-self:center;
    position:static;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    transform:none;
    margin:0;
  }

  .huge-nav{
    grid-column:3;
    justify-self:end;
    position:static;
    margin:0;
    transform:none;
  }

  .nav-toggle{
    display:none;
  }

  .media-page .featured-video{
    max-width:1080px;
    margin-left:auto;
    margin-right:auto;
  }
}
