* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(#ffb347, #ffd59e);
  color: #333;
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  text-align: center;
  padding: 40px 20px 40px; /* 🔴 reduced bottom padding */
  background: linear-gradient(#ffa000, #ffb347);
  color: #fff;
  overflow: hidden;
}

.hero h1 {
  margin: 0;
  font-size: 2.6rem;
}

.hero h2 {
  margin: 10px 0;
  font-size: 1.8rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

/* ICON ROW (RESTORED) */
.icon-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 2rem;
  margin-top: 10px;
}

/* FLOATING ICONS */
.floating-icons span {
  position: absolute;
  bottom: -60px;
  font-size: 2rem;
  opacity: 0.3;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from { transform: translateY(0); }
  to { transform: translateY(-140vh); }
}

/* =====================
   MAIN CARD
===================== */
.container {
  max-width: 880px;
  margin: -30px auto 60px; /* 🔴 reduced overlap */
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 32px;
  box-shadow: 0 22px 45px rgba(0,0,0,.18);
  position: relative;
  z-index: 5;
}

/* =====================
   LANGUAGE BUTTONS
===================== */
.lang-switch {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px; /* 🔴 space so nothing clips */
}

.lang-switch button {
  background: #ffa000;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 22px;
  cursor: pointer;
  font-weight: 600;
}

/* =====================
   EVENT HEADER
===================== */
.event-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.calendar-tile {
  background: linear-gradient(#ffa000, #ff8f00);
  color: #fff;
  border-radius: 20px;
  width: 120px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

.calendar-tile .day {
  font-size: 3.2rem;
  font-weight: 800;
}

.logo-wrap img {
  width: 110px;
}

/* =====================
   MAP
===================== */
.map-wrap {
  margin: 28px 0;
  border-radius: 18px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* =====================
   ACTION BUTTONS
===================== */
.actions {
  text-align: center;
  margin-top: 10px;
}

.btn {
  display: inline-block;
  margin: 8px;
  padding: 12px 22px;
  background: #ffa000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.btn:hover {
  background: #ff8f00;
}

/* =====================
   LANGUAGE VISIBILITY
===================== */
.hidden {
  display: none;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 720px) {
  .event-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo-wrap {
    margin-top: 10px;
  }
}
