body {
  margin: 0;
  min-height: 100svh;
  min-height: 100vh;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  overflow-x: hidden;
}

.page-scroll {
  height: 100svh;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #ffffff;
}

.section {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  min-height: 100dvh;
}

.hero-section {
  height: 100svh;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 12px;
  padding: 20px;
  background: #bebebe;
  z-index: 1;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    gap: 8px;
  }
}

@media (max-width: 500px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px;
    gap: 6px;
  }
}
.grid div {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75) saturate(0.9) contrast(0.95);
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
}

.grid div::before {
  content: "";
  position: absolute;
  inset: -26px;
  background: inherit;
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.26);
  pointer-events: none;
  z-index: 1;
  -webkit-mask: radial-gradient(circle at center, transparent 30%, #000 100%);
  mask: radial-gradient(circle at center, transparent 30%, #000 100%);
}

.grid div::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 34px rgba(190, 190, 190, 0.72);
}

@media (max-width: 768px) {
  .grid div::before {
    filter: blur(12px);
  }

  .grid div::after {
    box-shadow: inset 0 0 22px rgba(190, 190, 190, 0.58);
  }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}

.center-point {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.hero-title {
  position: absolute;
  left: 50%;
  bottom: calc(50% + clamp(12px, 2.4vh, 26px));
  transform: translateX(-50%);
  width: min(94vw, 1000px);
  margin: 0;
  line-height: 1.1;
  font-family: "The Seasons", serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 2px;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
  text-shadow:
    -0.2px -0.2px 0 #2c2c2c,
    0.2px -0.2px 0 #2c2c2c,
    -0.2px 0.2px 0 #2c2c2c,
    0.2px 0.2px 0 #2c2c2c;
}

.hero-date {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(12px, 2.4vh, 26px));
  transform: translateX(-50%);
  width: min(94vw, 1000px);
  margin: 0;
  line-height: 1.1;
  font-family: "LaLuxes", serif;
  font-size: clamp(26px, 4vw, 48px);
  letter-spacing: 3px;
  color: #444;
  text-align: center;
  text-shadow:
    -0.2px -0.2px 0 #2c2c2c,
    0.2px -0.2px 0 #2c2c2c,
    -0.2px 0.2px 0 #2c2c2c,
    0.2px 0.2px 0 #2c2c2c;
}

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  width: 22px;
  height: 22px;
  z-index: 4;
  transform: translateX(-50%) rotate(45deg);
  border-right: 3px solid rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid rgba(255, 255, 255, 0.95);
  opacity: 0.9;
  animation: arrow-bounce 1.7s ease-in-out infinite;
}

.section-scroll-arrow {
  position: static;
  left: auto;
  bottom: auto;
  margin-top: 6px;
  margin-bottom: 18px;
  transform: rotate(45deg);
  animation: arrow-bounce-static 1.7s ease-in-out infinite;
  z-index: 3;
  border-right-color: rgba(44, 44, 44, 0.8);
  border-bottom-color: rgba(44, 44, 44, 0.8);
}

@keyframes arrow-bounce-static {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.9;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 0.55;
  }
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(45deg);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-50%) translateY(6px) rotate(45deg);
    opacity: 0.55;
  }
}

.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: #ffffff;
}

.card {
  width: min(760px, 100%);
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 46px);
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(38, 38, 38, 0.08);
  text-align: center;
}

.card h2 {
  margin: 0;
  font-family: "The Seasons", serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 1px;
  color: #252525;
}

.confirm-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.confirm-title-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #6d6d6d;
  flex-shrink: 0;
}

.confirm-title-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-text {
  margin: 18px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  letter-spacing: 0.6px;
  color: #535353;
  text-shadow: none;
}

.event-date-section,
.program-section {
  margin-top: 24px;
}

.directions-section {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.direction-item {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 16px;
  background: #fcfcfc;
  text-align: center;
}

.direction-location {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: #333;
  text-shadow: none;
}

.direction-location .inline-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  transform: translateY(-1px);
}

.direction-locatii-title {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #8b8b8b;
}

.direction-locatii-title .inline-icon {
  width: 14px;
  height: 14px;
  transform: translateY(-0.5px);
}

.direction-locatii .direction-location {
  margin-top: 4px;
}

.direction-locatii-list {
  margin: 4px 0 0;
  padding-left: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: #333;
}

.direction-locatii-list li + li {
  margin-top: 4px;
}

.route-links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.route-btn-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.event-date-section h3,
.program-section h3,
.directions-section h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6d6d6d;
}

.direction-item h3 {
  display: inline-flex;
  gap: 6px;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
}

.direction-item h3 .inline-icon {
  margin-top: 1px;
}

.direction-title-text {
  display: inline-block;
  max-width: 100%;
  text-align: center;
}

.directions-section > h3 {
  width: 100%;
  justify-content: center;
}

.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  flex-shrink: 0;
}

.inline-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-date-main {
  margin: 10px 0 4px;
  font-family: "The Seasons", serif;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: 1px;
  color: #222;
  text-shadow: none;
}

.event-day {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  letter-spacing: 1.2px;
  color: #9a9a9a;
  text-shadow: none;
}

.program-table {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.program-row {
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 16px;
  background: #fcfcfc;
  text-align: left;
}

.program-event {
  margin-bottom: 10px;
  font-family: "The Seasons", serif;
  font-size: clamp(24px, 3vw, 30px);
  color: #262626;
}

.program-meta {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.program-meta + .program-meta {
  margin-top: 6px;
}

.program-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: #888;
}

.program-value {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  color: #333;
  overflow-wrap: anywhere;
}

.muted-note {
  color: #8f8f8f;
}

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 500px) {
  .content {
    padding: 14px;
  }

  .hero-title {
    letter-spacing: 1.2px;
  }

  .hero-date {
    letter-spacing: 1.2px;
  }

  .card h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .card-text {
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1.6;
  }

  .event-date-main {
    font-size: clamp(34px, 10vw, 44px);
  }

  .event-day {
    font-size: 18px;
  }

  .program-event {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .program-meta {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .program-label {
    font-size: 11px;
  }

  .inline-icon {
    width: 16px;
    height: 16px;
  }

  .program-value {
    font-size: 17px;
  }

  .direction-location {
    font-size: 17px;
  }

  .route-links a {
    width: auto;
    min-width: 120px;
    font-size: 12px;
  }

  .buttons {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  a {
    width: 80%;
    text-align: center;
    font-size: 15px;
  }

  .info-section {
    padding: 16px;
  }

  .card {
    width: 100%;
    padding: clamp(18px, 5.2vw, 24px);
    border-radius: 14px;
  }

  .grid div {
    border-width: 3px;
  }

  .scroll-arrow {
    width: 20px;
    height: 20px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }
}

a {
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid #2c2c2c;
  color: #2c2c2c;
  font-size: 13px;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

a:hover {
  background: #2c2c2c;
  color: white;
}

@font-face {
  font-family: "The Seasons";
  src: url("fonts/TheSeasons-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "LaLuxes";
  src: url("fonts/LaLuxes-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
