:root {
  --font-color: #212529;
  --akzent-color: #082141;
  --space-2: 20px !important;
}

@font-face {
  font-family: Syne;
  src: url(../img/Syne-VariableFont.ttf);
}
html, body, .format, .stage {
  font-family: "Syne" !important;
  color: var(--font-color) !important;
}

.sz .format {
  background-color: #fff !important;
  margin-top: 0 !important;
}
.sz .format header.gradient article .arrow path {
  fill: #fff !important;
}
.sz .format header.gradient article {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%) !important;
  color: #fff !important;
}
.sz .format .background {
  background-color: #fff !important;
}
.sz .format footer {
  background-color: #E8EDEE !important;
  color: var(--akzent-color) !important;
}
.sz .format section:not(.teaser) a:not(.cta) a:not(.social-buttons) {
  color: var(--akzent-color) !important;
  border-bottom: 2px solid var(--akzent-color) !important;
}
.sz .format section:not(.teaser) a:not(.cta) a:not(.social-buttons):hover {
  opacity: 0.7;
}
.sz .format p > a {
  color: var(--akzent-color) !important;
  border-bottom: 2px solid var(--akzent-color) !important;
}
.sz .format p > a:hover {
  border-bottom: 2px solid var(--akzent-color) !important;
  opacity: 0.7 !important;
}

.format header .subheadline {
  font-family: "marydale", sans-serif !important;
  font-size: 2rem !important;
}
.format header.gradient article .arrow path {
  fill: #fff !important;
}
.format header figure video {
  height: calc(100svh - var(--asv)) !important;
}
.format .cta button {
  font-size: 16px;
  cursor: pointer;
}
.format a {
  cursor: pointer;
}
.format h1,
.format h3 {
  font-family: "Syne" !important;
}
.format h2 {
  position: relative;
  font-family: "marydale", sans-serif !important;
  font-weight: 200 !important;
  font-size: 34px !important;
  z-index: 2 !important;
}
.format h3 {
  font-size: 34px !important;
}
.format h4 {
  font-weight: bold;
  font-size: 18px !important;
  line-height: 1.3 !important;
  color: #212529 !important;
  font-family: "Syne" !important;
}
.format header a.logo {
  top: calc(var(--space) * 4) !important;
  right: calc(var(--space) * 4) !important;
}
.format header figure video {
  object-position: bottom;
}
.format .intro {
  font-family: "Syne" !important;
  padding: calc(4 * var(--space-2)) 0;
  background-image: url(../img/background-img.webp);
  background-size: cover;
  background-position: center;
}
.format .intro p {
  max-width: 650px;
  margin: 0 auto;
  font-weight: 500;
}
.format .background {
  padding: calc(4 * var(--space-2)) 0 !important;
  gap: calc(4 * var(--space-2)) !important;
}
.format .slider-container {
  padding: calc(4 * var(--space-2)) 0 !important;
}
.format section.copy {
  position: relative !important;
}
.format section.copy p {
  position: relative !important;
  z-index: 2 !important;
}
.format figure figcaption,
.format figure .image-source {
  font-family: "Syne" !important;
}
.format .slider,
.format section.fixed-image {
  position: relative !important;
}
.format .illu {
  position: absolute;
}
.format .illu.illustration-1, .format .illu.illustration-5 {
  width: 40%;
  top: -50px;
  left: -200px;
  z-index: 3;
}
.format .illu.illustration-2 {
  width: 50%;
  top: 100px;
  left: -50%;
  z-index: 0;
}
.format .illu.illustration-3 {
  width: 60%;
  top: -50px;
  right: -30%;
  z-index: 0;
}
.format .illu.illustration-4 {
  z-index: 3;
  right: 20%;
  width: 7%;
  top: -50px;
}
.format .illu.illustration-6 {
  z-index: 0;
  right: -24%;
  width: 70%;
  bottom: -50px;
}
.format .illu.illustration-8 {
  z-index: 0;
  right: 16%;
  width: 20%;
  top: -20px;
}
.format .cta.delonghi {
  margin: 0 !important;
}
.format .cta.delonghi button {
  color: #fff;
  background-color: var(--akzent-color);
  font-family: "Syne";
}
.format .slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  /* Active card - front */
  /* Next card - slightly behind and down */
  /* Previous card - further behind and down */
  /* Animation states */
  /* SVG Rotation */
  /* Navigation Buttons */
  /* Scrollbar styling */
}
.format .slider-container .cards-wrapper {
  position: relative;
  width: calc(100% - 80px);
  height: 600px;
  perspective: 1000px;
}
.format .slider-container .recipe-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1003px;
  height: 600px;
  display: flex;
  background: white;
  border: 1px solid #e8edee;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}
.format .slider-container .recipe-card.active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.format .slider-container .recipe-card.next {
  z-index: 2;
  opacity: 0.7;
  transform: translateX(-50%) translateY(30px) scale(0.95);
}
.format .slider-container .recipe-card.prev {
  z-index: 1;
  opacity: 0.4;
  transform: translateX(-50%) translateY(60px) scale(0.9);
}
.format .slider-container .recipe-card.slide-out-up {
  animation: slideOutUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.format .slider-container .recipe-card.slide-out-down {
  animation: slideOutDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideOutUp {
  to {
    transform: translateX(-50%) translateY(-100%) scale(0.8);
    opacity: 0;
  }
}
@keyframes slideOutDown {
  to {
    transform: translateX(-50%) translateY(100%) scale(0.8);
    opacity: 0;
  }
}
.format .slider-container .card-image {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.format .slider-container .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.format .slider-container .card-content {
  flex: 1;
  background: #e8edee;
  padding: 48px;
  overflow-y: auto;
  border: 1px solid white;
}
.format .slider-container .recipe-title {
  font-size: 32px;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 24px;
  font-style: italic;
}
.format .slider-container .recipe-description {
  font-size: 14px;
  line-height: 1.6;
  color: #212529;
  margin-bottom: 24px;
}
.format .slider-container .ingredients-section {
  margin-bottom: 24px;
}
.format .slider-container .ingredients-section h4 {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 11px;
}
.format .slider-container .ingredients-intro {
  font-size: 14px;
  line-height: 1.3;
  color: #212529;
  margin-bottom: 11px;
}
.format .slider-container .ingredients-section ul {
  list-style-position: outside;
  padding-left: 21px;
  font-size: 14px;
  color: #212529;
}
.format .slider-container .ingredients-section li {
  margin-bottom: 0;
  line-height: 1.3;
}
.format .slider-container .dropdown-section {
  margin-top: 32px;
}
.format .slider-container .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 11px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  /* Dropdown Content */
}
.format .slider-container .dropdown-toggle span {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.3;
  color: #212529;
}
.format .slider-container .dropdown-toggle svg {
  width: 9px;
  height: 8.5px;
}
.format .slider-container .dropdown-content {
  display: none;
  margin-top: 12px;
  animation: fadeIn 0.3s;
  flex-direction: column;
  gap: 12px;
}
.format .slider-container .dropdown-content strong {
  font-size: 16px;
}
.format .slider-container .dropdown-content p {
  font-size: 14px;
}
.format .slider-container .dropdown-content hr {
  background-color: #fff;
  height: 1px;
  width: 100%;
}
.format .slider-container .dropdown-section.open .dropdown-content {
  display: flex;
}
.format .slider-container .dropdown-toggle svg {
  transition: transform 0.3s;
}
.format .slider-container .dropdown-section.open .dropdown-toggle svg {
  transform: rotate(-180deg);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.format .slider-container .nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
}
.format .slider-container .nav-btn {
  width: 37px;
  height: 37px;
  background: #082141;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.format .slider-container .nav-btn:hover {
  background: #0a2d5a;
  transform: scale(1.05);
}
.format .slider-container .nav-btn:active {
  transform: scale(0.95);
}
.format .slider-container .nav-prev svg {
  transform: scaleY(-1);
}
.format .slider-container .nav-btn svg {
  width: 11px;
  height: 10px;
}
.format .slider-container .card-content::-webkit-scrollbar {
  width: 6px;
}
.format .slider-container .card-content::-webkit-scrollbar-track {
  background: transparent;
}
.format .slider-container .card-content::-webkit-scrollbar-thumb {
  background: rgba(33, 37, 41, 0.3);
  border-radius: 3px;
}
.format .slider-container .card-content::-webkit-scrollbar-thumb:hover {
  background: rgba(33, 37, 41, 0.5);
}
.format footer {
  background-image: url("../img/background-img.webp") !important;
  background-size: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  body {
    overflow-x: hidden !important;
  }
  .format section.fixed-image {
    height: 100svh;
  }
  .format .illu.illustration-1 {
    top: -120px;
    left: -80px;
    z-index: 1;
  }
  .format .illu.illustration-4 {
    width: 12%;
  }
  .format .illu.illustration-5 {
    left: -130px;
  }
  .format .slider swiper-container {
    z-index: 0;
  }
  .format .slider-container {
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .format .slider-container .cards-wrapper {
    width: calc(100% - 140px);
  }
  .format .slider-container .recipe-card {
    max-width: 800px;
  }
  .format .slider-container .card-content {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .format {
    gap: 0 !important;
  }
  .format header h1 {
    font-size: 48px !important;
  }
  .format .intro {
    padding: calc(4 * var(--space-2)) 0 !important;
  }
  .format .intro p {
    padding: 0 var(--space);
  }
  .format .slider-container {
    max-width: 590px;
  }
  .format .slider-container .cards-wrapper {
    max-width: 500px;
  }
  .format .slider-container .recipe-card {
    flex-direction: column;
  }
  .format .slider-container .card-image {
    flex: 0 0 300px;
  }
  .format .slider-container .card-content {
    padding: 24px;
  }
  .format .slider-container .recipe-title {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .format .background {
    padding: calc(2 * var(--space-2)) 0 !important;
    gap: calc(2 * var(--space-2)) !important;
  }
  .format .intro {
    padding: calc(2 * var(--space-2)) 0 !important;
  }
  .format .slider-container {
    flex-direction: column;
    gap: 5rem;
    max-width: 100%;
    margin: 0 20px;
  }
  .format .slider-container .recipe-card {
    width: auto;
    min-width: 400px;
  }
  .format .slider-container .cards-wrapper {
    width: 100%;
  }
  .format .slider-container .nav-buttons {
    flex-direction: row;
  }
  .format .illu.illustration-3 {
    top: -10px;
    right: -6%;
  }
  .format .illu.illustration-4 {
    width: 25%;
  }
  .format .illu.illustration-5 {
    left: -35px;
  }
  .format .illu.illustration-8 {
    right: 11%;
    width: 32%;
    top: 55px;
  }
  .format header a.logo,
  .format footer > main .logo, .format footer > main .footer-copyright {
    width: 150px;
  }
  .format header a.logo img,
  .format footer > main .logo img, .format footer > main .footer-copyright img {
    width: 100%;
  }
  .format header a.logo {
    top: calc(var(--space) * 2) !important;
    right: calc(var(--space) * 2) !important;
  }
}
@media (max-width: 399px) {
  .format header h1 {
    font-size: 40px !important;
  }
  .format .slider-container {
    padding: calc(2 * var(--space-2)) 0 !important;
    gap: 3rem;
  }
  .format .slider-container .recipe-card {
    width: auto;
    min-width: 300px;
  }
}
@media (prefers-color-scheme: dark) {
  .stage, .format, .background {
    color: #212529 !important;
    background: #fff !important;
  }
  .format footer, body .doc-container .footer-asv-disclaimer {
    color: #212529 !important;
    background: #E8EDEE !important;
  }
  .social .social-buttons a svg {
    fill: #212529 !important;
  }
}