@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Luckiest+Guy&family=Paytone+One&family=Satisfy&display=swap');

@font-face {
    font-family: 'AmericanCaptain';
    src: url('/americancaptaincyrillic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* From Uiverse.io by Himanshu12866 */
.pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #110337, #a60810);
    background-size: 200% 100%;
}

@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

body {
    color: #F7EFE3;
}

body.lock-scroll {
    overflow: hidden;
}

.nav {
    width: 90%;
    height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1s ease;
}

.nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.logo img {
    width: 140px;
}

.nav .phone {
    font-family: 'Albert Sans';
    font-size: 1.2em;
}

.phone a {
    text-decoration: none;
    color: #F7EFE3;
}

.typewriter-wrapper {
    margin-top: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

    height: 40%;
    max-height: 400px;
}

.side-text {
    font-size: 1.2em;
    color: #F7EFE3;
    font-family: 'Albert Sans', sans-serif;
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.2s ease, transform 0.2s ease;
    filter: brightness(1.5);
}

.side-text.visible {
    opacity: 1;
    transform: scale(1);
    animation: glowFlash 0.7s ease forwards;
    text-shadow: 0 0 10px #F7EFE3, 0 0 20px #F7EFE3, 0 0 30px #F7EFE3;
}

@keyframes glowFlash {
    0% {
        filter: brightness(4);
    }

    100% {
        filter: brightness(1.5);
    }
}

.typewriter-container {
    text-align: center;
    font-size: 4em;
    font-weight: bold;
    font-family: 'AmericanCaptain';
    color: #F7EFE3;
    letter-spacing: 20px;
    overflow: hidden;
    margin-left: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.typewriter-container span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-70px);
    animation: slideIn 0.7s forwards ease-out;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bottom-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    text-align: center;
    font-family: 'Albert Sans', sans-serif;
    font-size: 1.2em;
    color: #F7EFE3;
    opacity: 0;
    transition: all 1s ease;
    cursor: pointer;
}

.bottom-text.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.down-arrow {
    font-size: 2em;
    animation: bounce 1.5s infinite;
    margin-top: 5px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.drinks {
    margin-top: 110vh;
    width: 100%;
    height: 80vh;
    background-color: #f6f3ec;

    display: flex;
    justify-content: space-between;

    color: #0d0d0d;
}

.left {
    margin-left: 70px;
    margin-top: 70px;

    width: 40%;
}

.drinks .left > * {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.drinks .left > *.visible {
    transform: translateX(0);
    opacity: 1;
}



.left .title {
    line-height: 60px;
    font-size: 4em;
    font-weight: 700;
    font-family: 'Paytone One';
}

.left .subtitle {
    width: 80%;
    margin-top: 20px;
    font-size: 1.125rem;
    line-height: 1.33;
    color: #464646;;
    font-family: 'Albert Sans';
}

.right {
    width: 50%;
    height: 100%;
    margin-bottom: 50px;
}

.right img {
    width: 100%;
    height: 100%;
}

.jd {
    position: absolute;
    width: 150px;

    rotate: 8deg;

    left: 50%;
    transform: translate(-14%, 80%);
}

.jd img {
    width: 100%;
    filter: drop-shadow(22px 13px 3px rgba(0, 0, 0, 0.4));
}




.input-group {
  margin-top: 30px;
  display: flex;
  align-items: center;


}

.input {
  min-height: 50px;
  max-width: 150px;
  padding: 0 1rem;
  color: #0d0d0d;
  font-size: 15px;
  border: 1px solid #f31622;
  border-radius: 6px 0 0 6px;
  background-color: transparent;
    font-family: 'Albert Sans' sans-serif;
}

.button--submit {
  min-height: 50px;
  padding: .5em 1em;
  border: none;
  border-radius: 0 6px 6px 0;
  background-color: #f31622;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background-color .3s ease-in-out;
      font-family: 'Albert Sans' sans-serif;
}


.button--submit:hover {
  background-color: #f31622;
}

.input:focus, .input:focus-visible {
  border-color: #e23a43;
  outline: none;
}






.video-showcase {
margin-top: 200px;
  padding: 80px 20px;
  text-align: center;
}

.video-title {
  font-family: 'Paytone One';
  font-size: 2.8em;
  color: #0d0d0d;
  margin-bottom: 40px;
}

.video-stack {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  flex-wrap: wrap;
}

.video-item {
  width: 280px;
  height: 480px;
  max-width: 90vw;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.video-footer {
  margin-top: 80px;
  font-family: 'Albert Sans';
  font-size: 1.1em;
  color: #0d0d0d;
}

.video-footer a {
  color: #a60810;
  font-weight: bold;
  text-decoration: underline;
}





/* 📱 Мобильная версия: наложение сдвигами */
@media (max-width: 768px) {
  .video-stack {
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: auto;
    position: relative;
  }

  .video-item {
    width: 240px !important;
    height: 380px !important;
    position: absolute;
    width: 90%;
    height: 60vh;
    max-width: 100%;
  }

  .video-item:nth-child(1) {
    top: 0;
    left: -10px;
    z-index: 3;
  }

  .video-item:nth-child(2) {
    top: 350px;
    right: -10px;
    z-index: 2;
  }

  .video-item:nth-child(3) {
    top: 700px;
    left: -10px;
    z-index: 1;
  }
  .video-footer {
      margin-top: 1150px;
  }

.faq-wrapper {
  flex-direction: column;
  align-items: center;
    gap: 0 !important;
    margin-top: 50px !important;
}

.faq-spinner {
    margin: 0 auto;
}
.spinner {
  width: 80px;
  height: 80px;

}

.faq-title {
  font-size: 1.5em;
}

}









    .faq {
        height: 400px;
        margin-top: 40px;
    }




@media screen and (max-width: 420px) {
    .phone a{
        font-size: 0.95em;
    }
    .typewriter-container {
        font-size: 2em;
    }
    .typewriter-wrapper {
                height: 100px;
                margin-top: 40%;
    }
    .content-title {
        font-size: 1.3em;
    }
    .content-subtitle {
        font-size: 0.8em;
    }

    .drinks {
        flex-direction: column;
        background-color: white;
    }
    .left {
        margin-top: 80px;
        margin-left: 30px;
        width: 90%;
        order: 2;
    }
    .left .title {
        font-size: 2em;
        line-height: 40px;
        width: 100%;
    }
    .left .subtitle {
        width: 90%;
        font-size: 1.125rem;
    }
    .right { 
        text-align: right;
        width: 100%;
        order: 1;
    }

    .right img {
        width: 90%;
    }

    .jd {
        left: 45%;
        width: 90px;
        transform: translate(-14%, 55%);
    }
}









.spinner {
  margin: 0 auto;
  width: 170px;
  height: 170px;
  animation: spinner-y0fdc1 2s infinite ease;
  transform-style: preserve-3d;
}

.spinner > div {
  height: 100%;
  position: absolute;
  width: 100%;
}

.spinner > div img {
  width: 100%;
  filter: drop-shadow(0 0 15px #130437);
}

.spinner div:nth-of-type(1) { transform: translateZ(-85px) rotateY(180deg); }
.spinner div:nth-of-type(2) { transform: rotateY(-270deg) translateX(50%); transform-origin: top right; }
.spinner div:nth-of-type(3) { transform: rotateY(270deg) translateX(-50%); transform-origin: center left; }
.spinner div:nth-of-type(4) { transform: rotateX(90deg) translateY(-50%); transform-origin: top center; }
.spinner div:nth-of-type(5) { transform: rotateX(-90deg) translateY(50%); transform-origin: bottom center; }
.spinner div:nth-of-type(6) { transform: translateZ(85px); }

@keyframes spinner-y0fdc1 {
  0%   { transform: rotate(45deg) rotateX(-25deg) rotateY(25deg); }
  50%  { transform: rotate(45deg) rotateX(-385deg) rotateY(25deg); }
  100% { transform: rotate(45deg) rotateX(-385deg) rotateY(385deg); }
}















/* From Uiverse.io by AqFox */ 
.faq-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
  max-width: 1200px;
  margin: 120px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}


.faq-spinner {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 170px;
  height: 170px;
}

.faq {
  flex: 2 1 400px;
  font-family: 'Albert Sans', sans-serif;
}

.faq-title {
  font-size: 2.5em;
  text-align: left;
  color: #0d0d0d;
  font-family: 'Paytone One';
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.3em;
  color: #0d0d0d;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 1s ease;
}

.faq-question:hover {
  color: #f31622;
}

.faq-icon {
  font-size: 1.5em;
  color: #f31622;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.6s ease,
    opacity 0.4s ease;
  font-size: 1.1em;
  color: #464646;
  margin-top: 0;
  will-change: max-height, opacity;
}

.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 10px;
}
er {
  color: #f31622;
}

.faq-icon {
  font-size: 1.5em;
  color: #f31622;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.6s ease,
    opacity 0.4s ease;
  font-size: 1.1em;
  color: #464646;
  margin-top: 0;
  will-change: max-height, opacity;
}

.faq-item.active .faq-answer {
  opacity: 1;
  margin-top: 10px;
}
