:root {
  --color-primary: #ffc0cb;
  --color-secondary: #aee2ff;
  --color-background: #fdfaf3;
  --color-text: #555;
  --color-heading: #2c2c2c;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Nunito", sans-serif;
  --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --border-radius: 16px;
  --header-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.mobile-break {
  display: none;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.7;
  overflow-x: hidden;
}
body.nav-active {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  font-weight: 800;
}
h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 0px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 15px auto 0;
  transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
h2.is-visible::after {
  width: 60px;
}
p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
section {
  padding: 80px 0;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease-out,
    visibility 0.5s ease-out;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-icon {
  animation: pulse 1.5s linear infinite;
  width: 80px;
  height: 80px;
  object-fit: contain;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    height 0.3s ease;
}
.main-header.header-scrolled {
  background-color: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  height: 70px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-heading);
  text-decoration: none;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05) rotate(-3deg);
}
.logo:hover .logo-img {
  transform: scale(1.1) rotate(-5deg);
}

@media (min-width: 993px) {
  .main-nav {
    position: static;
    transform: translateX(0);
    flex-direction: row;
    height: auto;
    width: auto;
    background: none;
    box-shadow: none;
    padding-top: 0;
  }
  .main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    list-style: none;
  }
  .main-nav li {
    width: auto;
    margin-left: 30px;
  }
  .main-nav a {
    padding: 5px 0;
    font-size: 1rem;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
  }
  .main-nav a:hover {
    background: none;
    color: var(--color-primary);
  }
  .main-nav .btn-nav-wrapper {
    padding: 0;
  }
  .mobile-nav-toggle {
    display: none;
  }
  .nav-overlay {
    display: none;
  }
}
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--color-background);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding-top: 120px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1001;
  }
  .main-nav ul {
    list-style: none;
    flex-direction: column;
    width: 100%;
  }
  .main-nav li {
    margin: 0;
    width: 100%;
  }
  .main-nav a {
    display: block;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
  }
  .main-nav a:hover {
    background: var(--color-secondary);
    color: var(--color-heading);
  }
  .main-nav .btn-nav-wrapper {
    padding: 30px;
  }
  .mobile-nav-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 10px;
    width: 40px;
    height: 40px;
    position: relative;
  }
  .mobile-nav-toggle .hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-heading);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .mobile-nav-toggle .line-1 {
    top: 10px;
  }
  .mobile-nav-toggle .line-2 {
    top: 18px;
  }
  .mobile-nav-toggle .line-3 {
    top: 26px;
  }
  body.nav-active .mobile-nav-toggle .line-1 {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
  }
  body.nav-active .mobile-nav-toggle .line-2 {
    opacity: 0;
  }
  body.nav-active .mobile-nav-toggle .line-3 {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }
  body.nav-active .main-nav {
    transform: translateX(0);
  }
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
  }
  body.nav-active .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
}

#hero {
  display: flex;
  align-items: center;
  justify-content: center; /* Dodano: wymusza wyśrodkowanie w poziomie */
  min-height: 100vh;
  padding-top: var(--header-height);
  color: white;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("TłoNowe.jpg");
  background-size: cover;
  background-position: center center; /* Zmieniono: idealny środek tła */
}

.hero-wrapper {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex; /* Dodano */
  justify-content: center; /* Dodano: idealnie centruje szklany panel */
}

.hero-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);

  padding: 40px;
  border-radius: var(--border-radius);
  animation: fadeInHero 1s ease-out 0.5s forwards;
  opacity: 0;
  transform: translateY(20px);

  text-align: center;
  max-width: 1000px;
}

@keyframes fadeInHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero h1 {
  font-size: 3.5rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}
#hero p {
  font-size: 1.35rem;
  color: white;
  max-width: 900px;
  margin: 20px 0 30px 0;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-heading);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 192, 203, 0.5);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn .btn-icon {
  display: inline-block;
  margin-left: 5px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn:hover,
.btn:focus {
  background-color: var(--color-secondary);
  color: var(--color-heading);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(174, 226, 255, 0.4);
}
.btn:hover .btn-icon,
.btn:focus .btn-icon {
  opacity: 1;
  transform: translateX(0);
}
.btn.btn-nav {
  padding: 10px 20px !important;
  font-size: 0.9rem;
}
.btn.btn-nav:hover {
  padding-right: 20px !important;
}
.btn.btn-nav .btn-icon {
  display: none;
}

.fade-in-section,
.stagger-child {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}
.fade-in-section.is-visible,
.stagger-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#about {
  background-color: #ffffff;
  margin-top: 50px;
  padding-bottom: 50px;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.about-image {
  transform: translateY(90px);
}
.about-image img {
  box-shadow: var(--shadow-medium);
}
.advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.advantages-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
.advantages-list i {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-right: 15px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}
.advantages-list li:hover i {
  transform: scale(1.2) rotate(-10deg);
}

#flavors {
  background-color: var(--color-background);
}
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  text-align: center;
}
.flavor-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.flavor-card h4 {
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 800;
  margin: 10px 0;
}
.flavor-card .flavor-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}
@keyframes jiggle {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  25% {
    transform: scale(1.2) rotate(-5deg);
  }
  75% {
    transform: scale(1.2) rotate(5deg);
  }
}
.flavor-card:hover .flavor-icon {
  animation: jiggle 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.flavor-type {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  color: #fff;
}
.flavor-type.lody {
  background-color: var(--color-primary);
}
.flavor-type.sorbet {
  background-color: #6dcfab;
}
.flavors-grid.is-visible .stagger-child:nth-child(1) {
  transition-delay: 0s;
}
.flavors-grid.is-visible .stagger-child:nth-child(2) {
  transition-delay: 0.1s;
}
.flavors-grid.is-visible .stagger-child:nth-child(3) {
  transition-delay: 0.2s;
}
.flavors-grid.is-visible .stagger-child:nth-child(4) {
  transition-delay: 0.3s;
}
.flavors-grid.is-visible .stagger-child:nth-child(5) {
  transition-delay: 0s;
}
.flavors-grid.is-visible .stagger-child:nth-child(6) {
  transition-delay: 0.1s;
}
.flavors-grid.is-visible .stagger-child:nth-child(7) {
  transition-delay: 0.2s;
}
.flavors-grid.is-visible .stagger-child:nth-child(8) {
  transition-delay: 0.3s;
}
.flavors-cta {
  text-align: center;
  margin-top: 40px;
}
.flavors-note {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 40px;
  font-style: italic;
}

#offer {
  background: #fff;
  padding-bottom: 20px;
}
.offer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.offer-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}
.events-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.events-list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.events-list li i {
  color: var(--color-secondary);
  margin-right: 10px;
  width: 20px;
}
.offer-image img {
  box-shadow: var(--shadow-medium);
}
.offer-cta {
  margin-top: 30px;
}

#gallery {
  background-color: var(--color-background);
  padding-bottom: 40px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 15px;
}
.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: all 0.4s ease;
  cursor: pointer;
}
.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.gallery-item:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.gallery-item:nth-child(3) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}
.gallery-item:nth-child(4) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.gallery-item:nth-child(5) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.lightbox.visible {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: white;
  color: var(--color-heading);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--color-primary);
}

#team {
  background-color: #fff;
}
.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.team-card {
  background: var(--color-background);
  padding: 30px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.team-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--color-primary);
}
.team-card h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.team-card .role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}
.team-card p {
  font-size: 1rem;
  margin-bottom: 0;
}
.team-grid.is-visible .stagger-child:nth-child(1) {
  transition-delay: 0.1s;
}
.team-grid.is-visible .stagger-child:nth-child(2) {
  transition-delay: 0.2s;
}

#location {
  background-color: var(--color-background);
  text-align: center;
}
.location-instruction {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--color-text);
}
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}
.location-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  background: #fff;
  padding: 25px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}
.location-card.active {
  border-color: var(--color-primary);
  background-color: #fffafb;
  box-shadow: var(--shadow-medium);
}
.location-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.location-card h3 i {
  color: var(--color-primary);
  margin-right: 8px;
}
.location-card .address {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
}
.location-card .address-note {
  font-size: 0.85em;
  font-style: italic;
  font-weight: 400;
  color: #777;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 30px;
  transition: opacity 0.3s ease;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.address {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-bottom: 30px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.btn.btn-map {
  background-color: var(--color-secondary);
}
.btn.btn-map:hover {
  background-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(255, 192, 203, 0.4);
}

#contact {
  background-color: #fff;
  text-align: center;
}
.contact-intro {
  max-width: 600px;
  margin: 0 auto 50px auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.contact-card {
  background: var(--color-background);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}
.contact-card i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.contact-card a {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-card a:hover {
  color: var(--color-primary);
}
.contact-social {
  margin-top: 50px;
}
.contact-social h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.social-links li {
  margin: 0 15px;
}
.social-links a {
  color: var(--color-heading);
  font-size: 2.5rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}
.social-links a:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

footer {
  background-color: var(--color-heading);
  color: #f0f0f0;
  padding: 40px 0;
  text-align: center;
}
.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  padding: 0;
}
.footer-links li {
  margin: 0 10px;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: white;
}
.copyright {
  font-size: 0.9rem;
  color: #aaa;
  margin: 0;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: var(--color-heading);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.modal-overlay.modal-visible {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: zoomIn 0.3s ease;
}
.modal-content h2 {
  text-align: center;
  margin-bottom: 30px;
}
.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #eee;
  color: var(--color-heading);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.modal-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--color-primary);
}
.modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.modal-column h3 {
  font-size: 1.5rem;
  color: var(--color-heading);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-column h3 .fa-ice-cream {
  color: var(--color-primary);
}
.modal-column h3 .fa-leaf {
  color: #6dcfab;
}
.modal-flavor-list {
  list-style: none;
  padding-left: 0;
}
.modal-flavor-list li {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid var(--color-background);
}

@media (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
  section {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 250px;
  }
  .offer-content,
  .about-content {
    grid-template-columns: 1fr;
  }
  .about-text h3 {
    text-align: center;
  }
  .offer-image {
    margin-top: 30px;
    order: 1;
  }
  .offer-text {
    order: 2;
  }
  .about-image {
    order: -1;
    transform: translateY(0);
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .mobile-break {
    display: block;
  }

  #hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
      url("LogoBezTła.png");
    background-color: var(--color-primary);
    background-size: auto, contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  #hero h1 {
    font-size: 2rem;
  }
  #hero p {
    font-size: 1.2rem;
  }
  .hero-content {
    max-width: 100%;
    padding: 30px 20px;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery-item:nth-child(n) {
    height: 300px;
  }

  .tilt-card {
    transform-style: flat;
  }
  .offer-cta {
    text-align: center;
  }

  .modal-columns {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 30px 20px;
  }
}
