html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Goldman', sans-serif;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 16px;
}

header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.primary-button {
  background-color: var(--color-accent);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.primary-button .ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(200, 100, 30, 0.6); /* Ciemniejszy od accent color */
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.outlined-button {
  background-color: transparent;
  color: #fff;
  border: 2px solid var(--color-accent);
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.outlined-button:hover {
  background-color: var(--color-accent);
  color: white;
  transition: background-color 0.3s ease;
}

.outlined-button .ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(200, 100, 30, 0.4); /* Ciemniejszy od accent color */
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

.hero-image {
  background-image: url('../assets/hero-lg.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: RGBA(0, 0, 0, 0.1);
  background: radial-gradient(
    circle,
    rgba(17, 17, 17, 0.7) 0%,
    rgba(17, 17, 17, 0.9) 40%,
    rgba(17, 17, 17, 1) 100%
  );
}

.hero {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* Animacja dla ikonki strzałki w dół */
.fa-chevron-down {
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(2px);
  }
}

.offers__card {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  flex-direction: column;
  flex: 1;
  min-width: 220px;
  max-width: 270px;
}

.offers__card h4,
.offers__card p {
  text-align: center;
}

.offers__card i {
  margin-bottom: 16px;
}

.offers__row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Toast notification styles */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--color-accent);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.toast.show {
  transform: translateX(10px);
}

.toast.success {
  background-color: #10b981;
}

.toast.error {
  background-color: #ef4444;
}

footer {
  background-color: #000;
}

sup {
  color: rgb(255, 46, 46);
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero-image {
    background-image: url('../assets/hero-sm.jpg');
  }
}
