:root{
    --pink:#F42D5E;
    --white:#FFFFFF;
    --white2:#F9F3F3;
    --black:#000000;
    --gray:#2B2B2B;
    --yellow:#FDD10C;
    --shadow: 0 11px 22px 0 rgba(0, 0, 0, 0.30);
    --shadow2: 0 8px 7.153px 0 rgba(0, 0, 0, 0.30);
    --shadow3: 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow4:rgba(0, 0, 0, 0.55);
    --shadow5:rgba(43, 43, 43, 0.8);
}
.dark{
    --pink:#F42D5E;
    --white:#000;
    --white2:#F9F3F3;
    --black:#FFFFFF;
    --gray:#E5E5E5;
        --shadow5:rgba(226, 226, 226, 0.8);
          --shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.30);
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: auto;
    position: relative;
    background-image: url(img/bk.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--black);
}
li{
    text-decoration: none;
    list-style-type: none;
}
.nav{
    width: 90%;
    border-radius: 80px;
    background: var(--pink);
    box-shadow:var(--shadow);
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px auto;
    height: 100px;
    
}
.logo{
    color:var(--white2);
    font-family: Lobster;
    font-size: 45px;
    font-weight: 400;
}
.nav-box{
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links{
    color: var(--white2);
    font-family: Jost;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    text-decoration-thickness: 30%;
    text-underline-offset: 8px;
}
.nav-links:hover{
    text-decoration: underline;
}
.nav-img{
    width: 70px;
    height: auto;
}
.nav-img:hover{
    opacity: 80%;
}
.menu-container {
    position: relative;
    display: flex
;
    justify-content: center;
    align-items: center;
    height: 85px;

}

.icon {
  width: 40px;
  height: auto;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s ease;
}

.icon:hover {
  opacity: 0.8;
}

.hover-menu {
display: none;
    position: absolute;
    top: 85px;
    left: -11px;
    transform: translateX(-50%);
    background-color: var(--gray);
padding: 7px 0;
    border-radius: 8px;
    box-shadow:var(--shadow3);
    text-align: center;
    min-width: 150px;
    height: 200px;
    z-index: 5;
    box-shadow: var(--shadow);
 
}


.menu-container:hover .hover-menu {
  display: block;
}
.nav-link{
    color: var(--white);
    font-family: Jost;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-decoration-thickness: 30%;
    text-underline-offset: 8px;
    display: block;
    margin: 15px;

}
.nav-link:hover{
    text-decoration: underline;
}
.section1{
    width: 95%;
    display: flex;
    justify-content: space-between;
    padding: 40px 89px 40px 165px;
    align-items: center;
}
.section1-text{
    color: var(--white);
    font-family: Jost;
    font-size: 54px;
    font-weight: 700;
}
.section1-text1{
    color: var(--white);
    font-family: Jost;
    font-size: 24px;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-thickness: 13%;
    text-underline-offset: 25%;
}
.section1-text1:hover{
    color: var(--pink);
}
.cards {
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.card-box {
    width: 30%;
    height: 1083px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
}
.card-img {
    width: 100%;
    height: 650px;
    border-radius: 24px;
    box-shadow: var(--shadow2);
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
    object-fit: cover;
}
.ticket-shape {
    position: absolute;
    top: 148px;
    left: 0;
    width: 100%;
    height: 600px;
    background: url(img/polygon.png) no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 1;
    padding: 170px 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    overflow: hidden;
    opacity: 1;
    transition: all 0.7s ease-in-out;
    object-fit: cover;
}
.card-text,
.card-text1,
.cta {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.card-text {
    color: var(--yellow);
    font-family: Jost;
    font-size: 36px;
    font-weight: 700;
}
.card-text1 {
    color: var(--white2);
    font-family: Jost;
    font-size: 24px;
    font-weight: 700;
}
.cta {
    color: var(--yellow);
    font-family: Jost;
    display: flex;
    align-self: center;
    font-size: 24px;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 6px;
    transition: color 0.3s;
}
.cta:hover {
    color: var(--white2);
}
.card-box:hover .ticket-shape {
    transform: translateY(350px);
}
.card-box:hover .ticket-shape .card-text,
.card-box:hover .ticket-shape .card-text1,
.card-box:hover .ticket-shape .cta {
    opacity: 1;
}.section2 {
  width: 100%;
  height: 650px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}


.section2-img {
  width: 100%;
  height: 100%;
  background-image: url("img/istockphoto-824033280-peo.jpg");
  background-size: cover;
  background-position: top;
  position: relative;
}


.section2-overlay {
  position: absolute;
  inset: 0;
  background: var(--shadow4);
}


.section2-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background:var(--shadow5) ;
  border-radius: 25px;
  padding: 60px 80px;
  text-align: center;
    max-width: 1117px;
    width: 100%;
    color: var(--white);
    display: flex
;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    box-shadow: var(--shadow);
    height: 500px;
}


.section2-text {
  font-family: "Jost", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--pink);
}

.section2-text1 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 20px;
}


.cta2 {
  width: 212px;
  height: 60px;
  border-radius: 80px;
  background: var(--pink);
  color: var(--white2);
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  margin: 0 auto;
      text-decoration-thickness: 30%;
    text-underline-offset: 8px;
}

.cta2:hover {

  text-decoration: underline;
}
.footer{
    width: 100%;
    height: 208px;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
background-color: var(--pink);
}
.footer-text{
    color: var(--white2);
font-family: Jost;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
@media (max-width:1200px){
  .nav{padding: 0 35px; height: 85px;}
  .logo{font-size: 38px;}
  .nav-links{font-size: 20px;}
  .section1{padding: 30px 100px;}
  .section1-text{font-size: 32px;}
  .section1-text1{font-size: 20px;}
  .cards{padding: 20px 60px; gap: 15px;}
  .card-text{font-size: 28px;}
  .card-text1{font-size: 20px;}
  .cta{font-size: 20px;}
  .footer-text{
    font-size: 18px;
  }
}


@media (max-width:900px){
.nav-links{display: none;}
.nav{padding: 0 20px; width: 90%;height: 70px;}
.nav-img{
    width: 45px;}
    .nav-box{
        gap: 15px;
    }
    .logo{font-size: 25px;}
    .icon{
        display: block;
    }
  .section1{padding: 20px 70px;}
  .section1-text{font-size: 26px;}
  .section1-text1{font-size: 18px;}
  .cards{padding: 20px 40px; gap: 10px;}
  .card-text{font-size: 22px;}
  .card-text1{font-size: 16px;}
  .cta{font-size: 16px;}  .section2 {
    height: 480px;
  }
.nav-img {
    width: 47px;
    height: auto;
}
  .section2-box {
    width: 85%;
    padding: 50px 40px;
    height: auto;
  }

  .section2-text {
    font-size: 44px;
  }

  .section2-text1 {
    font-size: 18px;
  }

  .cta2 {
    width: 190px;
    height: 55px;
    font-size: 18px;
  }
  .footer-text{
    font-size: 16px;
  }
  .footer{
    flex-direction: column;   justify-content: center;
    gap: 20px;
  }}

@media (max-width:500px){
.nav-links{display: none;}
.nav{padding: 0 20px; width: 90%;height: 70px;}
.nav-img{
    width: 45px;}
    .nav-box{
        gap: 15px;
    }
    .logo{font-size: 25px;}
    .icon{
        display: block;
    }
.section1{
    padding: 0 37px;
    margin-bottom: 30px;

}
.section1-text{
font-size: 22px;
}
.section1-text1{
 font-size: 14px;   
}
.cards {
  width: 100%;
  height: auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
 
}

.card-box {
         width: 48%;
        height: 520px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  overflow: hidden;
}

.card-img{
    height: 278px;
}


.ticket-shape {
        position: absolute;
        top: 44px;
        left: 0;
        width: 100%;
        height: 263px;
        background: url(img/polygon.png) no-repeat;
        background-size: cover;
        background-position: bottom;
        z-index: 1;
        padding: 40px 20px 0;
        gap: 5px;

}
.card-box:hover .ticket-shape {
  transform: translateY(200px); 
}


.card-text {

  font-size: 16px;
 
}

.card-text1 {
  
  font-size: 12px;
 
}

.cta{ 
    font-size: 10px;
 }

  .section2 {
    height: 100vh;
  }

  .section2-box {
    width: 90%;
    padding: 30px 20px;
    border-radius: 20px;
    height: auto;
  }

  .section2-text {
    font-size: 32px;
  }

  .section2-text1 {
    font-size: 16px;
  }

  .cta2 {
    width: 180px;
    height: 50px;
    font-size: 16px;
  }
  .footer-text{
    font-size: 14px;
  }
  .footer{
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}