/*
  Hlavný vizuálny štýl stránky.
  Farby sú veselé, ale stále dôveryhodné pre rodičov. Placeholdery majú jasné
  rozmery, aby sa neskôr dali jednoducho nahradiť skutočnými fotografiami.
*/

:root {
  --ink: #24313f;
  --muted: #657080;
  --cream: #fff8ea;
  --paper: #ffffff;
  --mint: #8ad9c2;
  --mint-dark: #2d947d;
  --coral: #ff7d6e;
  --sun: #ffc857;
  --sky: #7bc7ff;
  --violet: #8b79ff;
  --line: rgba(36, 49, 63, 0.12);
  --shadow: 0 24px 80px rgba(41, 52, 66, 0.14);
  --radius: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 200, 87, 0.24), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(123, 199, 255, 0.26), transparent 24rem),
    linear-gradient(180deg, #fffaf0 0%, #f2fbf8 48%, #fff7ef 100%);
  font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  transform: translateY(-150%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.background-shapes {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  display: block;
  width: 7rem;
  aspect-ratio: 1;
  border-radius: 38% 62% 54% 46%;
  opacity: 0.34;
  animation: float 12s ease-in-out infinite;
}

.shape-one {
  top: 9rem;
  left: 5vw;
  background: var(--sun);
}

.shape-two {
  top: 34rem;
  right: 7vw;
  background: var(--mint);
  animation-delay: -3s;
}

.shape-three {
  bottom: 15rem;
  left: 12vw;
  background: var(--sky);
  animation-delay: -5s;
}

.shape-four {
  bottom: 40rem;
  right: 22vw;
  background: var(--coral);
  animation-delay: -8s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 0.65rem;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 14px 44px rgba(36, 49, 63, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(36, 49, 63, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.12;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: #425061;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(138, 217, 194, 0.24);
  color: var(--mint-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.compact {
  padding-block: 1rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: calc(100svh - 6rem);
  padding-top: clamp(2rem, 5vw, 4rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--mint-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions,
.enrollment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--coral), #ff9b5f);
  box-shadow: 0 16px 36px rgba(255, 125, 110, 0.3);
}

.button.secondary {
  color: var(--ink);
  background: white;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.light {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.trust-row span {
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: #526171;
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 36rem;
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 15rem;
  overflow: hidden;
  border: 2px dashed rgba(36, 49, 63, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34)),
    repeating-linear-gradient(-45deg, rgba(138, 217, 194, 0.18) 0 14px, rgba(255, 200, 87, 0.16) 14px 28px);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.photo-placeholder img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.7s ease;
}

.photo-placeholder.has-image {
  border-color: rgba(255, 255, 255, 0.55);
  background: #edf6f3;
}

.photo-placeholder.has-image::before,
.photo-placeholder.has-image .photo-label,
.photo-placeholder.has-image small {
  display: none;
}

.photo-placeholder.has-image img {
  opacity: 1;
  transform: scale(1);
}

.photo-placeholder img.is-missing {
  display: none;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 0;
  border-radius: calc(var(--radius) - 10px);
  background:
    radial-gradient(circle at 28% 35%, rgba(255, 125, 110, 0.2), transparent 7rem),
    radial-gradient(circle at 70% 68%, rgba(123, 199, 255, 0.22), transparent 8rem);
}

.photo-label {
  position: relative;
  z-index: 1;
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 32px rgba(36, 49, 63, 0.1);
}

.photo-placeholder small {
  position: absolute;
  z-index: 1;
  bottom: 1.25rem;
  width: calc(100% - 2rem);
  color: #607080;
  font-weight: 700;
  text-align: center;
}

.hero-photo {
  min-height: 35rem;
  border-radius: 44% 56% 38% 62% / 50% 38% 62% 50%;
  animation: softMorph 9s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: white;
  box-shadow: 0 18px 48px rgba(36, 49, 63, 0.14);
  font-weight: 900;
  animation: bob 4.8s ease-in-out infinite;
}

.note-one {
  top: 12%;
  right: -1rem;
}

.note-two {
  bottom: 12%;
  left: -1rem;
  animation-delay: -2s;
}

.announcement-card,
.enrollment-card,
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.announcement-card {
  border: 2px solid rgba(255, 200, 87, 0.48);
}

.announcement-card h2,
.enrollment-card h2,
.contact-card h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
}

.announcement-card p,
.enrollment-card p,
.contact-card p {
  max-width: 45rem;
  margin-bottom: 0;
}

.announcement-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(36, 49, 63, 0.06);
  font-size: 1.4rem;
  cursor: pointer;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 2rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 18rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(36, 49, 63, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  aspect-ratio: 1;
  margin-bottom: 1.8rem;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-weight: 900;
}

.feature-card:nth-child(2) .feature-icon {
  background: var(--mint-dark);
}

.feature-card:nth-child(3) .feature-icon {
  background: var(--coral);
}

.feature-card:nth-child(4) .feature-icon {
  background: var(--violet);
}

.story-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 36rem;
}

.tall-photo {
  min-height: 34rem;
}

.small-photo {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: min(48%, 18rem);
  min-height: 13rem;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: #445366;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--sky));
  box-shadow: 0 0 0 5px rgba(138, 217, 194, 0.18);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.timeline-item {
  min-height: 14rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(36, 49, 63, 0.08);
}

.timeline-item time {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  color: var(--mint-dark);
  background: rgba(138, 217, 194, 0.22);
  font-weight: 900;
}

.menu-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 200, 87, 0.18), transparent 20rem),
    radial-gradient(circle at 86% 24%, rgba(123, 199, 255, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.44);
}

.menu-toolbar {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(36, 49, 63, 0.08);
}

.menu-tab {
  min-height: 2.75rem;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  color: #425061;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  transform: translateY(-1px);
}

.menu-tab.is-active {
  color: white;
  background: var(--mint-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.menu-day-card {
  min-height: 21rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(36, 49, 63, 0.08);
}

.menu-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.menu-day-head span,
.menu-day-head strong {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  border-radius: 999px;
  font-weight: 900;
}

.menu-day-head span {
  padding: 0.45rem 0.75rem;
  color: white;
  background: var(--coral);
  text-transform: uppercase;
}

.menu-day-head strong {
  padding: 0.45rem 0.7rem;
  color: var(--mint-dark);
  background: rgba(138, 217, 194, 0.18);
}

.menu-meal {
  padding-block: 0.9rem;
  border-top: 1px solid var(--line);
}

.menu-meal h3 {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.menu-meal ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding-left: 1.1rem;
}

.menu-meal li,
.menu-day-note,
.menu-empty {
  color: #526171;
  line-height: 1.55;
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-day-note {
  margin-bottom: 0.75rem;
}

.menu-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.menu-source {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  color: var(--muted);
  font-weight: 800;
}

.menu-source a {
  color: var(--mint-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  grid-auto-rows: 15rem;
  gap: 1rem;
}

.gallery-grid .photo-placeholder {
  min-height: 100%;
}

.gallery-large {
  grid-row: span 2;
}

.enrollment-card {
  color: white;
  background:
    radial-gradient(circle at 88% 24%, rgba(255, 200, 87, 0.28), transparent 18rem),
    linear-gradient(135deg, #27364a, #286f73 58%, #288a78);
}

.enrollment-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 54px rgba(36, 49, 63, 0.08);
}

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

.enrollment-form label {
  display: grid;
  gap: 0.45rem;
}

.enrollment-form label span {
  color: #425061;
  font-size: 0.9rem;
  font-weight: 900;
}

.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(36, 49, 63, 0.14);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.enrollment-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(138, 217, 194, 0.2);
}

.form-hidden {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.form-footer p {
  margin: 0;
  font-weight: 800;
}

.form-footer p.is-success {
  color: var(--mint-dark);
}

.form-footer p.is-error {
  color: #bd3b30;
}

.enrollment-form button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.enrollment-card .eyebrow,
.enrollment-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  grid-template-columns: 1fr 0.9fr;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-list a,
.contact-list span {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(138, 217, 194, 0.18);
  color: #314255;
  font-weight: 900;
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

.delay-3 {
  transition-delay: 0.26s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -24px, 0) rotate(10deg);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes softMorph {
  0%,
  100% {
    border-radius: 44% 56% 38% 62% / 50% 38% 62% 50%;
  }

  50% {
    border-radius: 58% 42% 54% 46% / 42% 56% 44% 58%;
  }
}

@media (max-width: 980px) {
  .hero,
  .story-band,
  .contact-card {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: auto;
  }

  .feature-grid,
  .timeline,
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-large {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0.75rem;
  }

  .nav-shell {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 5.5rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.55rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 0.95rem 1rem;
    background: rgba(36, 49, 63, 0.04);
  }

  .section {
    width: min(100% - 1.25rem, var(--max));
    padding-block: 4rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-photo {
    min-height: 24rem;
  }

  .floating-note {
    position: relative;
    inset: auto;
    display: inline-flex;
    margin: 0.65rem 0.4rem 0 0;
  }

  .announcement-card,
  .enrollment-card {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .timeline,
  .gallery-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 14rem;
  }

  .menu-toolbar {
    display: grid;
    border-radius: 24px;
  }

  .menu-tab {
    border-radius: 18px;
  }

  .small-photo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin: -3rem 0 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
