* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Kulikov Soft';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kulikov Soft';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* ===========================
   HEADER
=========================== */
.draw-header {
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* ===========================
   ZIYARAT LOGO
=========================== */
.draw-header__ziyarat {
    position: absolute;
    top: 50px;
    left: 15%;
    transform: translateX(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px;
}

.draw-header__ziyarat img {
    width: 160px;
    display: block;
}

.draw-header__nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 20px;
    position: relative;
    z-index: 10;
}

.draw-header__logo {
    max-width: 211px;
    z-index: 100;
    cursor: pointer;
}

.draw-header__logo img {
    width: 100%;
}

/* ===========================
   AIRPLANE
=========================== */
.draw-header__airplane {
    position: absolute;
    left: -200px;
    top: 500px;
    z-index: 10;
    width: 700px;
    pointer-events: none;
}

.draw-header__airplane img {
    width: 100%;
    filter: drop-shadow(4px 8px 16px rgba(0,0,0,0.25));
}

/* ===========================
   TICKETS BLOCK
=========================== */
.draw-header__content {
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.draw-header__tickets {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin-bottom: 40px;
    position: relative;
    min-height: 700px;
    padding: 60px 0 20px;
}

/* Base ticket styles */
.draw-header__ticket {
    width: 680px;
    max-width: 680px;
    flex-shrink: 0;
    display: block;
    position: relative;
}

/* Left ticket */
.draw-header__ticket:nth-child(1) {
    transform: rotate(-10deg) translateY(40px);
    margin-right: -350px;
    z-index: 1;
}

/* Center ticket — largest, on top */
.draw-header__ticket:nth-child(2) {
    transform: rotate(0deg) translateY(0px);
    width: 760px;
    max-width: 760px;
    z-index: 3;
    margin: 0;
}

/* Right ticket */
.draw-header__ticket:nth-child(3) {
    transform: rotate(10deg) translateY(40px);
    margin-left: -350px;
    z-index: 2;
}



/* ===========================
   TITLE
=========================== */
.draw-header__title {
    text-align: center;
    margin: 0 auto;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.draw-header__title h1 {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.draw-header__date {
    font-size: 56px;
    line-height: 100%;
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 50px;
    background: linear-gradient(90deg, #A2D23F 0%, #bef452 100%);
    text-align: center;
    padding: 40px 60px;
    display: inline-block;
}

/* ===========================
   TERMS
=========================== */
.terms-block {
    position: relative;
    border-radius: 24px;
    background: #F0F0F0;
    padding: 64px;
    margin-bottom: 60px;
    margin-top: 60px;
    z-index: 10;
}

.terms-block__title {
    color: #A60FAD;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.terms-block__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.terms-block__card {
    padding: 40px;
    background: white;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terms-block__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-block__card-lang {
    display: inline-block;
    background: #A2D23F;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.terms-block__card-title {
    font-size: 28px;
    font-weight: 700;
    color: #A60FAD;
    margin-bottom: 20px;
    line-height: 1.3;
}

.terms-block__card-date {
    font-size: 18px;
    font-weight: 600;
    color: #9C01AA;
    margin-bottom: 16px;
    padding: 12px 20px;
    background: #F9E6FC;
    border-radius: 12px;
    display: inline-block;
}

.terms-block__card-text {
    color: #4A4A4A;
    font-size: 16px;
    line-height: 1.6;
}

/* ===========================
   DRAW DATE
=========================== */
.draw-date-block {
    background: linear-gradient(90deg, #7100A8 -4.72%, #FD35B4 100%);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 60px;
}

.draw-date-block__title {
    font-size: 28px;
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.4;
}

.draw-date-block__title span {
    color: #A2D23F;
}

/* ===========================
   OFFER BUTTON
=========================== */
.button-offer {
    background-color: #A2D23F;
    width: 552px;
    font-size: 20px;
    padding: 24px;
    border-radius: 24px;
    color: #FFFFFF;
    display: inline-block;
    transition: 0.3s;
    text-align: center;
    margin: 40px auto;
}

.button-offer:hover {
    background-color: #8ccf3c;
}

.draw-products__title {
    text-align: center;
    margin-bottom: 40px;
}

/* ===========================
   MISC
=========================== */
.purple-001 { color: #A60FAD; }
.green-001  { color: #A2D23F; }

/* ===========================
   FOOTER
=========================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #9C01AA 0%, #7100A8 100%);
    padding: 80px 0 40px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.footer__content-img {
    max-width: 45%;
    z-index: 1;
}

.footer__content-img img {
    max-width: 100%;
    border-radius: 20px;
}

.footer__content-text {
    color: #FFFFFF;
    z-index: 1;
    max-width: 45%;
}

.footer__content-title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
}

.footer__content-store {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.footer__content-store a { max-width: 217px; }
.footer__content-store img { width: 100%; }

.social-media {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 18px;
}

.social-media a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
}

.image-social-media {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-social-media img { width: 100%; }

.link-to-website {
    color: #FFFFFF;
    text-decoration: underline;
    font-size: 24px;
}

.link-to-website a { color: #FFFFFF; }

/* ===========================
   RESPONSIVE
=========================== */
@media screen and (max-width: 1024px) {
    .terms-block { padding: 40px; }
    .terms-block__title { font-size: 32px; }
    .terms-block__cards { grid-template-columns: 1fr; }
    .terms-block__card { padding: 32px; }

    .footer__content { flex-direction: column; gap: 40px; }
    .footer__content-img,
    .footer__content-text { max-width: 100%; text-align: center; }
    .social-media { justify-content: center; }
    .footer__content-store { align-items: center; }
}

@media screen and (max-width: 1100px) {
    .draw-header__tickets { min-height: 580px; }
    .draw-header__airplane { width: 580px; left: -160px; top: 410px; }
    .draw-header__ziyarat   { top: 50px; left: 15%; }
    .draw-header__ziyarat img { width: 150px; }

    .draw-header__ticket                { width: 560px; max-width: 560px; }
    .draw-header__ticket:nth-child(1)   { margin-right: -370px; }
    .draw-header__ticket:nth-child(2)   { width: 630px; max-width: 630px; }
    .draw-header__ticket:nth-child(3)   { margin-left: -370px; }
}

@media screen and (max-width: 900px) {
    .draw-header__tickets { min-height: 460px; padding: 20px 0 10px; }
    .draw-header__airplane { width: 460px; left: -130px; top: 320px; }
    .draw-header__ziyarat   { top: 45px; left: 14%; }
    .draw-header__ziyarat img { width: 130px; }

    .draw-header__ticket                { width: 440px; max-width: 440px; }
    .draw-header__ticket:nth-child(1)   { margin-right: -290px; }
    .draw-header__ticket:nth-child(2)   { width: 500px; max-width: 500px; }
    .draw-header__ticket:nth-child(3)   { margin-left: -290px; }
}

@media screen and (max-width: 768px) {
    .draw-header__title h1  { font-size: 32px; }
    .draw-header__date      { font-size: 36px; padding: 12px 24px; }
    .draw-header__airplane  { width: 360px; left: -100px; top: 250px; }
    .draw-header__ziyarat   { top: 40px; left: 12%; }
    .draw-header__ziyarat img { width: 130px; }

    .draw-header__tickets { min-height: 360px; padding: 15px 0 10px; }

    .draw-header__ticket                { width: 340px; max-width: 340px; }
    .draw-header__ticket:nth-child(1)   { transform: rotate(-10deg) translateY(30px); margin-right: -225px; }
    .draw-header__ticket:nth-child(2)   { width: 385px; max-width: 385px; }
    .draw-header__ticket:nth-child(3)   { transform: rotate(10deg) translateY(30px); margin-left: -225px; }

    .terms-block        { padding: 24px; margin-top: 40px; }
    .terms-block__title { font-size: 28px; }
    .terms-block__card-title { font-size: 22px; }

    .draw-date-block        { padding: 24px; }
    .draw-date-block__title { font-size: 20px; }

    .button-offer { width: 100%; font-size: 18px; padding: 20px; }
    .footer       { padding: 60px 0 30px; }
}

@media screen and (max-width: 600px) {
    .draw-header__logo     { max-width: 150px; }
    .draw-header__nav      { padding-top: 20px; }
    .draw-header__title h1 { font-size: 24px; }
    .draw-header__date     { font-size: 24px; }
    .draw-header__airplane { width: 270px; left: -70px; top: 190px; }
    .draw-header__ziyarat  { top: 30px; left: 18%; padding: 10px; }
    .draw-header__ziyarat img { width: 90px; }

    .draw-header__tickets { min-height: 270px; padding: 10px 0 5px; }

    .draw-header__ticket                { width: 255px; max-width: 255px; }
    .draw-header__ticket:nth-child(1)   { transform: rotate(-10deg) translateY(22px); margin-right: -168px; }
    .draw-header__ticket:nth-child(2)   { width: 290px; max-width: 290px; }
    .draw-header__ticket:nth-child(3)   { transform: rotate(10deg) translateY(22px); margin-left: -168px; }

    .terms-block__card-title { font-size: 18px; }
    .terms-block__card-text  { font-size: 14px; }

    .footer__content-title { font-size: 18px; line-height: 24px; }
    .footer__content-store { flex-direction: row; justify-content: center; }
    .footer__content-store a { max-width: 150px; }
}

@media screen and (max-width: 400px) {
    .draw-header__tickets { min-height: 210px; }
    .draw-header__ziyarat   { top: 20px; left: 20%; padding: 8px; }
    .draw-header__ziyarat img { width: 70px; }

    .draw-header__ticket                { width: 190px; max-width: 190px; }
    .draw-header__ticket:nth-child(2)   { width: 215px; max-width: 215px; }
    .draw-header__ticket:nth-child(1)   { margin-right: -125px; }
    .draw-header__ticket:nth-child(3)   { margin-left: -125px; }
}
