*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body{
    background-color: #F7F7F7;
    position: relative;
}

:root{
  --barka-blue: #1B3350;
  --light-blue: #C7D7DF;
  --text-black: #111;
}








/* get your ticket section */
/* GET YOUR TICKETS (matches Figma/Anima export sizes) */
.get_your_ticket_section{
  width: 1201px;
  margin: 0 auto;
  padding: 64px 0 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px; /* same spacing as export */
  margin-bottom: 80px;
}

.gyts_title{
  width: 100%;
  text-align: center;
  font-size: 54px;     /* section-title in styleguide */
  font-weight: 600;
  color: #1B3350;
  line-height: 1;
  margin-top: 8rem;
  margin-bottom: 3rem;
}

/* row of 3 cards */
.ticket_cards{
  display: inline-flex;
  align-items: center;
  gap: 59px;           /* export gap */
}

/* each ticket card */
.gyts_card{
  width: 350px;        /* export size */
  height: 619px;       /* export size */
  position: relative;
}

/* ticket background image */
.gyts_card_bg{
  position: absolute;
  left: -5px;          /* export offset */
  top: -5px;           /* export offset */
  width: 358px;        /* export bg size */
  height: 580px;       /* export bg size */
  pointer-events: none;
  user-select: none;
}

/* title inside card */
.gyts_card_heading{
  position: absolute;
  top: 65px;           /* export */
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  line-height: 40px;
}

/* middle text group */
.gyts_card_mid{
  position: absolute;
  top: 190px;          /* export */
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;           /* export */
  text-align: center;
}

.gyts_card_1{
  margin: 0;
  width: 276px;        /* varies per card, safe default */
  font-size: 20px;
  font-weight: 700;
  color: #1B3350;
  line-height: 28px;
}

.gyts_card_2{
  margin: 0;
  width: 241px;        /* export */
  font-size: 14px;
  font-weight: 400;
  color: #1B3350;
  line-height: 20px;
}

/* bottom group (price + button) */
.gyts_card_bottom{
  position: absolute;
  top: 400px;          /* export */
  left: 50%;
  transform: translateX(-50%);
  width: 291px;        /* export */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;           /* export */
  text-align: center;
}

.gyts_card_3{
  margin: 0;
  width: 100%;
  font-size: 26px;
  font-weight: 600;
  color: #1B3350;
  line-height: 32px;
}

/* button style like Figma */
.gyts_card_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
    text-decoration: none;

  padding: 10px 30px;
  border: none;
  border-radius: 96px;
  background: #1B3350;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;

}

/* Hover (lift effect) */
.gyts_card_btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* Active (pressed effect) */
.gyts_card_btn:active{
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,0.14);
}



@media (max-width: 768px){

  .get_your_ticket_section{
    width: 100%;
    padding: 35px 16px 0px;
    gap: 10px;
  }

  .gyts_title{
    font-size: 38px;
    line-height: 1.1;
  }

  .ticket_cards{
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  /* 🔹 smaller card height */
  .gyts_card{
    width: 260px;
    height: 460px;
  }

  .gyts_card_bg{
    left: -3px;
    top: -3px;
    width: 266px;
    height: 440px;
  }

  .gyts_card_heading{
    top: 52px;
    width: 220px;
    font-size: 20px;
    line-height: 28px;
  }



  .gyts_card_mid{
    top: 155px;
    width: 220px;
    gap: 18px;
  }

  .gyts_card_1{
    width: 100%;
    font-size: 16px;
    line-height: 22px;
  }

  .gyts_card_2{
    width: 200px;
    font-size: 12px;
    line-height: 17px;
  }

  .gyts_card_bottom{
    top: 300px;
    width: 220px;
    gap: 18px;
  }

  .gyts_card_3{
    font-size: 20px;
    line-height: 24px;
  }

  .gyts_card_btn{
    padding: 9px 20px;
    font-size: 12px;
  }
}


@media (max-width: 420px){
  .gyts_card{
    width: 280px;
    height: 450px;
  }

  .gyts_card_bg{
    width: 288px;
    height: 460px;
  }

  .gyts_card_bottom{
    top: 310px;
  }
}
