
/* =============================
   CHICO'S SAFTBAR — LIGHT THEME
   Focus: Clean, elegant, modern design
   ============================= */

/* CUSTOM FONT */
@font-face {
  font-family: 'Mango Smoothie';
  src: url('/fonts/MangoSmoothie.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* THEME TOKENS - LIGHT MODE */
:root{
  --bg: #fafafa;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --text: #1a1a1a;
  --text-muted: #4a4a4a;
  --brand: #D9185F;
  --brand-2: #FF4081;
  --brand-dark: #A0134A;
  --line: rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,.08);
  --radius: 16px;
}

/* BASIC RESETS + BODY */
*{box-sizing:border-box}
html,body{height:100%}
html{background: var(--bg)}
body{
  margin:0;
  overflow:hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Mango Smoothie', 'Fredoka', 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Three.js canvas stays beneath */
.webgl{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f8f8 100%);
  z-index:1;
}

/* LOADING OVERLAY */
#loading-overlay{
  position:fixed; inset:0;
  background: rgba(255,255,255,.95);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  z-index:2000; color:var(--brand);
  backdrop-filter: blur(10px);
}
.spinner{
  width:56px; height:56px;
  border:5px solid rgba(217,24,95,.2);
  border-top-color:var(--brand);
  border-radius:50%;
  animation:spin 1s linear infinite;
  margin-bottom:18px;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* MENU - Desktop & Mobile */
#menu{
  position:fixed;
  top:0; left:0; right:0;
  z-index:900;
  padding:8px clamp(16px, 4vw, 40px);
  background: none;
  backdrop-filter: blur(6px) saturate(50%);
  border-bottom:1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

/* Header Logo */
.header-logo {
  display:flex;
  align-items:center;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}

.header-logo:hover {
  transform: scale(1.05);
}

.header-logo:active {
  transform: scale(0.95);
}

.header-logo img {
  height:40px;
  width:auto;
  filter: drop-shadow(0 2px 8px rgba(217,24,95,.3));
  transition: filter .3s ease;
}

.header-logo:hover img {
  filter: drop-shadow(0 4px 12px rgba(217,24,95,.5));
}

/* Desktop Header Layout */
@media (min-width: 768px) {
  #menu {
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  .burger-menu { display:none !important; }

  .menu-items {
    display:flex !important;
    flex-direction:row;
    align-items:center;
    gap:clamp(12px, 2.5vw, 32px);
    background:transparent;
    padding:0;
    margin:0;
    border:none;
    box-shadow:none;
  }

  .menu-items a {
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    text-decoration:none;
    color:var(--text);
    font-weight:600;
    font-size:clamp(14px, 1.8vw, 30px);
    border-radius:8px;
    transition: all .25s ease;
    position:relative;
  }

  .menu-items a::before {
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%) scaleX(0);
    width:80%;
    height:2px;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    transition: transform .3s ease;
  }

  .menu-items a:hover {
    color:var(--brand);
  }

  .menu-items a:hover::before {
    transform:translateX(-50%) scaleX(1);
  }

  .menu-items a.selected::before {
    transform:translateX(-50%) scaleX(1);
  }

  .menu-items a:active {
    transform: scale(.98);
  }
}

/* Mobile Burger Menu */
@media (max-width: 767px) {
  #menu {
    padding:18px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .burger-menu{
    cursor:pointer;
    background: none;
    width:40px;
    height:40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    border-radius:12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    backdrop-filter: blur(6px);
    border:1px solid var(--brand);
    transition:all .3s cubic-bezier(.16,1,.3,1);
    position:fixed;
    top:18px;
    right:18px;
    z-index:2000;
  }

  .burger-menu span {
    display:block;
    width:20px;
    height:2px;
    background:var(--brand);
    border-radius:2px;
    transition:all .3s cubic-bezier(.16,1,.3,1);
  }

  .burger-menu.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .burger-menu.open span:nth-child(2) {
    opacity:0;
    transform: scaleX(0);
  }

  .burger-menu.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .burger-menu:active{ transform: scale(.92) }

  .menu-items{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(255,255,255,.98);
    backdrop-filter: blur(20px) saturate(120%);
    z-index:1500;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:20px;
  }

  .menu-items a{
    display:inline-block;
    padding:18px 36px;
    text-decoration:none;
    color:var(--text);
    font-weight:700;
    font-size:clamp(2.2rem, 6vw, 2.8rem);
    letter-spacing:1px;
    border-radius:12px;
    transition: all .3s cubic-bezier(.16,1,.3,1);
    text-align:center;
    width:auto;
    text-transform:uppercase;
    text-shadow: 0 4px 16px rgba(217,24,95,.25);
  }

  .menu-items a::before{
    content:"◆";
    margin-right:10px;
    color: var(--brand);
    font-size:0.8em;
  }

  .menu-items a:active {
    transform: scale(0.95);
  }
}

/* POSITION DOTS */
.position-indicator{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:8px;
  z-index:800;
  background: none;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--brand);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  backdrop-filter: blur(6px);
  touch-action:none;
}
.position-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: rgba(0,0,0,.2);
  cursor:pointer;
  transition:all .3s cubic-bezier(.16,1,.3,1);
}
.position-dot.active{
  background: var(--brand);
  transform: scale(1.4);
  box-shadow:0 0 8px rgba(217,24,95,.4);
}
.position-line{
  height:1px;
  width:16px;
  background:rgba(0,0,0,.15);
}

/* NAVIGATION ARROWS - Hidden */
.nav-button{display:none}

/* ================= OVERLAY ================= */
.overlay{
  position:fixed; inset:0; z-index:1000;
  display:none;
  padding:0;
  background: none;
  color: var(--text);
  backdrop-filter: blur(10px) saturate(20%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  overflow:hidden;
  animation: overlayFadeIn .4s ease-out;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.overlay-content{
  position:relative;
  width:100%;
  height:100%;
  padding:clamp(60px, 8vh, 100px) clamp(20px, 5vw, 80px) clamp(40px, 6vh, 80px);
  overflow-y:auto;
  overflow-x:hidden;
}

/* Custom Scrollbar */
.overlay-content::-webkit-scrollbar { width: 12px; }
.overlay-content::-webkit-scrollbar-track {
  background: rgba(0,0,0,.03);
  border-left: 1px solid var(--line);
}
.overlay-content::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--brand), var(--brand-2));
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,.5);
}
.overlay-content::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
}

.overlay-section{
  display:none;
  width:100%;
  animation: slideInUp .5s cubic-bezier(.16,1,.3,1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay-section.active{ display:block }

/* CLOSE BUTTON */
.overlay-content .button{
  position:fixed;
  top:18px;
  right:18px;
  width:40px;
  height:40px;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  border-radius:12px;
  background: none;
  border:1px solid var(--brand);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  backdrop-filter: blur(6px);
  cursor:pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  z-index:2000;
}

.overlay-content .button span {
  display:block;
  width:20px;
  height:2px;
  background:var(--brand);
  border-radius:2px;
  transition:all .3s cubic-bezier(.16,1,.3,1);
}

.overlay-content .button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.overlay-content .button span:nth-child(2) {
  opacity:0;
  transform: scaleX(0);
}

.overlay-content .button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.overlay-content .button:hover{
  background: rgba(217,24,95,.08);
  border-color: var(--brand);
}

.overlay-content .button:active{
  transform: scale(.92);
}

/* TYPOGRAPHY */
h1,h2,h3,h4{
  margin:0 0 1em;
  color: var(--brand);
  line-height:1.2;
  font-weight:700;
  font-family: 'Mango Smoothie', 'Fredoka', sans-serif;
}
h1{
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom:.6em;
}
h2{
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom:.6em;
}
h3{
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom:.6em;
}

.text-center{
  text-align:center;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight:400;
  color: var(--text-muted);
  line-height:1.8;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.text-center u{
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--brand-2);
}

.text-2{
  padding: 20px 24px;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight:400;
  color: var(--text-muted);
  line-height:1.8;
  overflow:auto;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a{
  color: var(--brand);
  transition: color .2s ease;
}
a:hover{ color: var(--brand-2); }
u{
  text-decoration-color: var(--brand-2);
  text-decoration-thickness: 2px;
}

/* LAYOUT HELPERS */
.center-h{ display:flex; justify-content:center }
.center-v{ display:flex; align-items:center }

/* Layout Containers */
.row2{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:clamp(16px, 3vw, 32px);
  margin:clamp(12px, 2vh, 24px) 0;
  padding:clamp(16px, 3vw, 32px);
  background: linear-gradient(145deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow:
    0 8px 32px rgba(0,0,0,.12),
    0 2px 8px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
}

.row2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}

.row2:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 48px rgba(0,0,0,.15),
    0 4px 16px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.05);
}

.locimg, .scroll-gallery2 img{
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid var(--line);
}

.locimg{
  width:100%;
  height:auto;
  object-fit:cover;
}

/* Location Layout */
.location-row {
  flex-direction: row !important;
  max-height: 40vh;
  min-height: auto;
  margin: 0 0 clamp(12px, 2vh, 24px) 0;
}

.location-row:first-child {
  margin-top: clamp(12px, 2vh, 24px);
}

.location-address {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map {
  flex: 0 0 70%;
  height: 100%;
  display: flex;
  align-items: stretch;
  padding: clamp(12px, 2vw, 20px);
}

.map-link {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid var(--line);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}

.map-link:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  transform: scale(1.01);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(217,24,95,0.95), rgba(217,24,95,0.85));
  color: white;
  padding: 12px 20px;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.map-link:hover .map-overlay {
  opacity: 1;
  transform: translateY(0);
}

.location-hours {
  flex: 0 0 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-image {
  flex: 0 0 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 20px);
}

.location-image img {
  width: 100%;
  height: 100%;
  max-height: 35vh;
  object-fit: cover;
}

/* ============ GALLERIES ============ */

/* AUTO SLIDESHOW */
.auto-slideshow {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.auto-slideshow img {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: left 0.8s ease-in-out;
}

.auto-slideshow img.active {
  left: 0;
}

.auto-slideshow img.prev {
  left: -100%;
}

.scroll-gallery2{
  display:flex;
  gap:clamp(20px, 3vw, 32px);
  height:40vh;
  overflow-x:auto;
  padding:clamp(12px, 3vw, 24px) 0 clamp(12px, 3vw, 24px) clamp(12px, 5vw, 60px);
  scroll-behavior:smooth;
  scroll-snap-type: x proximity;
}

.scroll-gallery2 img{
  height:100%;
  width:clamp(300px, 35vw, 480px);
  min-width:280px;
  object-fit:cover;
  scroll-snap-align: start;
  cursor:pointer;
}

/* Scrollbars */
.scroll-gallery2::-webkit-scrollbar{
  height:10px;
}

.scroll-gallery2::-webkit-scrollbar-thumb{
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  border-radius:999px;
  border: 2px solid rgba(255,255,255,.5);
}

.scroll-gallery2::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
}

.scroll-gallery2::-webkit-scrollbar-track{
  background: rgba(0,0,0,.05);
  border-radius:999px;
  border:1px solid var(--line);
}

figure{ margin:0 }

/* iFrame Styling */
iframe{
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border:2px solid var(--line);
}

/* ============ MEDIA GALLERY ============ */
/* Mobile: Vertical scroll, same width, auto height */
.media-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  overflow-y: auto;
  max-height: 100%;
  scroll-behavior: smooth;
  width: 100%;
}

.media-item {
  display: block;
  width: 100%;
  position: relative;
  border-radius: var(--radius);
  transition: all .3s cubic-bezier(.16,1,.3,1);
  text-decoration: none;
}

.media-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border: 1px solid var(--line);
  transition: all .3s cubic-bezier(.16,1,.3,1);
}

.media-title {
  display: block;
  text-align: right;
  padding: 8px 12px 4px;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--text-muted);
  transition: color .3s ease;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


.media-item:hover .media-title {
  color: var(--brand);
}

@media screen and (min-width: 800px){
  /* Desktop: Auto grid, same height, auto width */
  .media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: auto;
    gap: 20px;
    padding: 0;
    max-height: none;
    overflow: visible;
  }

  .media-item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .media-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .media-title {
    border-radius: 0 0 var(--radius) var(--radius);
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
  }
}

/* DUMMY IMAGE TREATMENT */
img[src*="dummy"]{
  background: repeating-linear-gradient(135deg, rgba(217,24,95,.15) 0 12px, rgba(255,64,129,.15) 12px 24px);
  display:block;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .row2{
    flex-direction:column;
    height:auto;
    gap:clamp(16px, 4vw, 24px);
    padding:clamp(16px, 4vw, 24px);
  }

  .location-row {
    flex-direction: column-reverse !important;
    min-height: auto;
    max-height: none;
  }

  .location-address,
  .location-map,
  .location-hours,
  .location-image {
    flex: 1 1 auto;
    width: 100%;
    padding: 0;
  }

  .location-map {
    min-height: 300px;
    padding: 0;
  }

  .map-link {
    min-height: 350px;
  }

  .map-image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.15);
  }

  .map-overlay {
    opacity: 1;
    transform: translateY(0);
  }

  .location-image {
    padding: 0;
  }

  .location-image img {
    max-height: none;
  }

  .row2 > div{ width:100%; height:auto; }
  .row2 img{ width:100%; height:auto; }

  .text-center{ font-size: clamp(18px, 4.8vw, 22px); }
  .text-2{ font-size: clamp(16px, 4.3vw, 20px); padding:16px; }

  .overlay-content{
    padding:clamp(50px, 8vh, 70px) clamp(16px, 4vw, 24px) clamp(30px, 5vh, 50px);
  }

  h3{ font-size: clamp(24px, 6vw, 36px); }

  .position-indicator{ bottom:3%; }

  .scroll-gallery2{
    height:30vh;
    padding:8px;
  }
}

/* BUTTON GENERIC */
.button{
  background: var(--glass);
  color: var(--brand);
  border:1px solid var(--line);
  padding:10px 16px;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  font-size:16px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.button:hover{ background: var(--brand); color:#fff }
.button:active{ transform: scale(.98) }

/* IMPRESSUM STYLING */
.impressum-content{
  max-width:800px;
  margin:0 auto;
  padding:clamp(20px, 4vw, 40px);
  overflow:auto;
  text-align:center;
}

.impressum-content p{
  line-height:2;
  color: var(--text-muted);
  font-size: clamp(14px, 1.6vw, 17px);
  white-space: pre-line;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align:left;
}

.impressum-content h3{
  margin-bottom:1.5em;
  margin-top:2em;
  font-size: clamp(32px, 5vw, 48px);
  font-family: 'Mango Smoothie', 'Fredoka', sans-serif;
}

.impressum-content h3:first-child{
  margin-top:0;
}

/* ================= OPENING SCREEN ================= */
.opening-screen{
  position:fixed;
  inset:0;
  z-index:999;
  display:flex;
  pointer-events:none;
  transition:opacity .3s ease;
}

.opening-screen.hidden{
  opacity:0;
  pointer-events:none;
}

.opening-half{
  position:relative;
  width:50%;
  height:100%;
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform 1.2s cubic-bezier(.76,0,.24,1);
  pointer-events:auto;
}

.opening-left{
  transform-origin:left;
  justify-content: flex-end;
  padding-right: 5vw;
}

.opening-right{
  transform-origin:right;
  justify-content: flex-start;
  padding-left: 5vw;
}

.opening-screen.opened .opening-left{
  transform: translateX(-100%);
}

.opening-screen.opened .opening-right{
  transform: translateX(100%);
}

.opening-content{
  padding:clamp(20px, 5vw, 60px);
  text-align:center;
  animation: fadeInUp 1s cubic-bezier(.16,1,.3,1) .3s backwards;
}

@keyframes fadeInUp {
  from {
    opacity:0;
    transform:translateY(30px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

.opening-logo{
  max-width:clamp(200px, 40vw, 400px);
  height:auto;
  filter: drop-shadow(0 8px 32px rgba(217,24,95,.6));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform:scale(1);
    filter: drop-shadow(0 8px 32px rgba(217,24,95,.6));
  }
  50% {
    transform:scale(1.02);
    filter: drop-shadow(0 12px 40px rgba(217,24,95,.8));
  }
}

.opening-hours{
  color:var(--text);
}

.opening-hours h2{
  font-size:clamp(28px, 5vw, 48px);
  font-weight:700;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom:1em;
  letter-spacing:-0.5px;
}

.opening-hours p{
font-weight: 600;
font-size: clamp(24px, 2.5vw, 40px);
  line-height:1.6;
  margin-bottom:2em;
  color:var(--text);
}


.opening-hint{
  font-size:clamp(14px, 1.8vw, 18px) !important;
  color:var(--brand);
  opacity:.9;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform:translateY(0);
  }
  50% {
    transform:translateY(-10px);
  }
}

@media (max-width: 767px) {
  .opening-half{
    width:100%;
  }

  .opening-screen{
    flex-direction:column;
  }

  .opening-half{
    height:50%;
    width:100%;
  }

  .opening-left{
    justify-content: center;
    padding-right: 0;
  }

  .opening-right{
    justify-content: center;
    padding-left: 0;
  }

  .opening-screen.opened .opening-left{
    transform: translateY(-100%);
  }

  .opening-screen.opened .opening-right{
    transform: translateY(100%);
  }
}
