
/* ARIA Ready */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible {
  outline: 2px solid #FFD400;
  outline-offset: 2px;
}



a {
    background-color: #0000
}

a:active,a:hover {
    outline: 0;
}

.a-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
    background-color: #3898ec;
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block
}

.a-button {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.a-button:hover {
  transform: scale(1.1);
}

input.a-button {
    -webkit-appearance: button
}



h1 {
  font-family: 'Anton' sans-serif;
  letter-spacing: 0.02em;
}

body {
  line-height: 1.5;
}


/* Container */
[data-section-slider] {
  position: relative;
}

/* Panels stack on top of each other */
[data-section-slider-panel] {
  position: relative;
  height: 100vh;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  /* KEY: stacking behavior */
  z-index: 1;
}


@media (pointer: coarse) {
  [data-section-slider-panel] {
    height: 100svh; /* better mobile viewport handling */
  }
}


.section_main_content {
    flex: 1;
}
.section_main_content.section-container {
    align-items: stretch;
}

.section-container {
    z-index: 1;
    grid-column-gap: var(--wp--preset--spacing--50);
    grid-row-gap: var(--wp--preset--spacing--50);
    flex-flow: column;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
    container-type: inline-size;
}

/*
.section_wrapper_01 {

  background-color: #d56d88 ;

}

.section_wrapper_02 {

  background-color: #f17752 ;

}

.section_wrapper_03 {

  background-color: #f1a650 ;

}

*/

.wp-block-group.is-style-section-container, .section-content1 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--40);

  max-width: var(--wp--style--global--content-size);
  margin-left: auto;
  margin-right: auto;

  padding-left: var(--wp--preset--spacing--40);
  padding-right: var(--wp--preset--spacing--40);
}


.wp-block-group.is-style-section-container p {
  grid-column: span 5;
  font-size: clamp(
    1.25rem,
    calc(1.25rem + (4.8125 - 1.25) * ((100vw - 320px) / (1440 - 320))),
    4.8125rem
  );
}

@media (max-width: 768px) {
  .wp-block-group.is-style-section-container p {
    grid-column: span 12;
  }
}

.section-text {
  grid-column: span 5;
  font-size: clamp(
    1.25rem,
    calc(1.25rem + (4.8125 - 1.25) * ((100vw - 320px) / (1440 - 320))),
    4.8125rem
  );
  font-weight: 500;

}

@media (max-width: 768px) {
  .section-text {
    grid-column: span 12;
  }
}







@media (min-width: 1024px) {
    .grid {
        gap: 24px;
        grid-template-columns: repeat(12, minmax(0px, 1fr));
    }
}


/* === FONT IMPORT (Google Fonts) === */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


/* === HERO CONTAINER === */
.hero {
  position: relative;
  max-height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;


  background-image: url('../images/badi_haslach.png');
  background-size: cover;
  background-position: center;

  color: #ee840c;
  overflow: hidden;
}

/* Mobile: stacked */
@media (max-width: 767px) {
  .hero {
      background-image: url('../images/badi_haslach_768.png');
    background-position: left;
  }

}

/* overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
}

.hero_inner {
  padding: clamp(20px, 5vw, 80px);
  position: relative;
  width: 100%;
  box-sizing: border-box;
}


/* === TOP TEXT (small, above title) === */
.hero_top {
  line-height: 28px;
  color: rgb(248, 236, 219);
  margin-bottom: 10px;
  font-size: 20px;
    font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 1.2;

display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 10px;
  gap: 20px;
margin-left: 0px;
margin-right: 0px;

}

/* Desktop: full-width split */
@media (min-width: 768px) {
  .hero_top {
    margin-left: 0px;
margin-right: 0px;
  }

}



.hero_sub,
.hero_tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .hero_sub,
.hero_tagline {
  font-size: 16px;
}

}

/* === HEADLINE === */
.hero_title {
  display: flex;
  width: 100%;
  margin: 0;

  gap: 2vw;

  font-family: 'Anton', sans-serif;
  text-transform: uppercase;

  font-size: clamp(88px, calc(14.5vw - 46px), 310px);
  line-height: 0.9;
}

/* Desktop: full-width split */
@media (min-width: 768px) {
  .hero_title span {
    flex: 1;
    display: block;
  }

  .hero_title span:last-child {
    text-align: right;
  }
}

/* Mobile: stacked */
@media (max-width: 767px) {
  .hero_title {
    flex-direction: column;
    gap: 0;
  }

  .hero_title span {
    width: 100%;
  }
}


/* === TYPO RESET === */
.hero p {
  font-family: 'Anton', sans-serif;
}



.header-big-typo {
    width: 100%;
    max-width: 100%;
    position: relative;
    color: #ee840c;
} 





.grain {
    z-index: 100;
    pointer-events: none;
    background-image: url('../images/bg_grain.png');
    background-position:50%; 
    background-size:90px 144px; 
    position: fixed;
    inset: 0%
}


.border-wrapper {
    z-index: 4;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    display: flex;
    position: absolute;
    inset: -126px 0% auto;
}

.border-lollipops {
    object-fit: contain;
    width: 100%;;
}

/* =========================================
   FOOTER BASE
========================================= */
.footer {
  position: relative;
  padding: 6rem 0rem 0rem;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
}

/* Subtle ambient gradient */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(255, 255, 255, 0.06),
    transparent 40%
  );
  pointer-events: none;
}

/* =========================================
   LAYOUT (DESKTOP FIRST)
========================================= */
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;

  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================
   LOGO
========================================= */
.footer__logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #fff;
}

/* =========================================
   NAVIGATION (DESKTOP GRID)
========================================= */
.footer__nav ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  transition: all 0.3s ease;
}

/* underline animation */
.footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s ease;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__nav a:hover::after {
  width: 100%;
}

/* =========================================
   BOTTOM BAR
========================================= */
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   SOCIAL ICONS
========================================= */
.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;

  transition: all 0.3s ease;
}

.footer__social a:hover .social-svg-path {
  fill: #FFF;
}

.footer__social a .social-svg-path, .footer-wave-path {
  fill: #dd2c67;
}


/* =========================================
   META TEXT
========================================= */
.footer__meta {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.877);
}

/* =========================================
   RESPONSIVE (TABLET)
========================================= */
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* =========================================
   RESPONSIVE (MOBILE)
========================================= */
@media (max-width: 768px) {
  .footer {
    padding: 4rem 0rem 0rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* ✅ NAV becomes vertical */
  .footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer__nav a {
    display: inline-block;
    padding: 0.4rem 0;
  }

  /* Bottom stack */
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer__logo {
    margin: 0 auto;
  }
}




/* Event Page */
/* Container respecting WP widths */
.probadi-event__container {
  max-width: var(--wp--style--global--wide-size, 1200px);
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.probadi-event__title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}

.probadi-event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.probadi-event__meta-item {
  background: #f5f5f5;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.probadi-event__meta-item .label {
  font-weight: 600;
  margin-right: 0.3rem;
}

/* Image */
.probadi-event__media img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Layout (content + sidebar) */
.probadi-event__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .probadi-event__layout {
    grid-template-columns: 2fr 1fr;
  }
}

/* Content */
.probadi-event__content {
  font-size: 1rem;
  line-height: 1.6;
}

/* Sidebar */
.probadi-event__sidebar {
  position: relative;
}

.probadi-event__card {
  position: sticky;
  top: 2rem;
  background: #fff;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 10px;
}

.probadi-event__card h3 {
  margin-bottom: 1rem;
}

/* List */
.probadi-event__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.probadi-event__card li {
  margin-bottom: 0.5rem;
}







.word {
  position: relative;
  display: inline-block;
}

.line-mask {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.8;
  height: 100%;
  width: 100%;
  z-index: 2;
}


