/* BookLaunchEvent.css */

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

.launch-section{
  position: relative;

  width: 100%;

  background:
    linear-gradient(
      to bottom,
      #050505,
      #0c0c0c,
      #111111
    );

  overflow: hidden;

  padding: 120px 7%;
}

/* =========================
   BACKGROUND GLOW
========================= */

.launch-glow{
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  z-index: 1;
}

.glow-left{
  width: 450px;
  height: 450px;

  background: rgba(249,115,22,0.08);

  top: -120px;
  left: -120px;
}

.glow-right{
  width: 400px;
  height: 400px;

  background: rgba(59,130,246,0.06);

  bottom: -120px;
  right: -120px;
}

/* =========================
   CONTAINER
========================= */

/* .launch-container{
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1400px;

  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;
} */
/* =========================
   LAUNCH IMAGE WRAPPER
========================= */

.launch-image-wrapper{
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

/* =========================
   MAIN IMAGE
========================= */

.launch-image{
  position: relative;

  width: 100%;
  max-width: 620px;

  border-radius: 30px;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.08);

  background: #111;

  box-shadow:
    0 25px 80px rgba(0,0,0,0.55),
    0 0 50px rgba(249,115,22,0.08);

  animation: flyerFloat 6s ease-in-out infinite;

  z-index: 2;
}

/* IMAGE */

.launch-image img{
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: 0.6s ease;
}

/* HOVER */

.launch-image:hover img{
  transform: scale(1.03);
}

/* DARK OVERLAY */

.launch-image-overlay{
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.2),
      rgba(0,0,0,0.02)
    );

  z-index: 2;
}

/* =========================
   ORANGE GLOW
========================= */

.launch-image::before{
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  background: rgba(249,115,22,0.18);

  border-radius: 50%;

  filter: blur(100px);

  top: -80px;
  right: -60px;

  z-index: 1;
}

/* =========================
   FLOAT EFFECT
========================= */

@keyframes flyerFloat{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-14px);
  }

  100%{
    transform: translateY(0px);
  }
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1100px){

  .launch-image{
    max-width: 520px;
  }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

  .launch-image{
    max-width: 420px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

  .launch-image{
    max-width: 100%;

    border-radius: 24px;
  }

  .launch-image::before{
    width: 180px;
    height: 180px;
  }
}
/* =========================
   LEFT SIDE
========================= */

.launch-image-wrapper{
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;
}

.launch-image{
  position: relative;

  width: 100%;
  max-width: 500px;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45);

  animation: floatLaunch 5s ease-in-out infinite;
}

.launch-image img{
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.launch-image-overlay{
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      transparent
    );
}

/* FLOAT */

@keyframes floatLaunch{

  0%{
    transform: translateY(0px);
  }

  50%{
    transform: translateY(-15px);
  }

  100%{
    transform: translateY(0px);
  }
}

/* =========================
   RIGHT SIDE
========================= */

.launch-content{
  flex: 1;
}

.launch-tag{
  display: inline-block;

  padding: 10px 22px;

  border-radius: 50px;

  border: 1px solid rgba(249,115,22,0.25);

  background: rgba(249,115,22,0.08);

  color: #f59e0b;

  font-size: 12px;
  letter-spacing: 2px;

  margin-bottom: 24px;
}

.launch-content h2{
  font-size: clamp(2.8rem, 6vw, 5rem);

  line-height: 1.05;

  color: white;

  margin-bottom: 28px;

  font-weight: 800;

  max-width: 650px;
}

.launch-content h2 span{
  color: #f59e0b;
}

.launch-description{
  color: #d1d5db;

  font-size: 1.08rem;

  line-height: 1.9;

  margin-bottom: 40px;

  max-width: 650px;
}

/* =========================
   EVENT DETAILS
========================= */

/* =========================
   EVENT DETAILS
========================= */

.event-details{
  display: flex;
  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 40px;
}

/* SMALL PREMIUM PILLS */

.event-card{
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 150px;

  padding: 16px 20px;

  border-radius: 18px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.4s ease;

  backdrop-filter: blur(10px);
}

.event-card:hover{
  transform: translateY(-4px);

  border-color: rgba(249,115,22,0.25);
}

/* TITLE */

.event-card h3{
  color: #f59e0b;

  font-size: 0.9rem;

  font-weight: 600;

  margin-bottom: 6px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

/* VALUE */

.event-card p{
  color: white;

  font-size: 1rem;

  font-weight: 500;

  line-height: 1.5;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

  .event-details{
    justify-content: center;
  }

  .event-card{
    min-width: 140px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

  .event-details{
    gap: 12px;
  }

  .event-card{
    width: 100%;

    max-width: 280px;

    text-align: center;

    padding: 14px 18px;
  }

  .event-card h3{
    font-size: 0.85rem;
  }

  .event-card p{
    font-size: 0.95rem;
  }
}

/* =========================
   COUNTDOWN
========================= */

.countdown-wrapper{
  display: flex;
  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 40px;
}

.count-box{
  min-width: 110px;

  padding: 20px;

  border-radius: 22px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  text-align: center;
}

.count-box h3{
  color: #f59e0b;

  font-size: 2rem;

  margin-bottom: 8px;
}

.count-box span{
  color: #d1d5db;
}

/* =========================
   BUTTONS
========================= */

.launch-buttons{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.launch-btn,
.secondary-launch-btn{
  padding: 16px 34px;

  border-radius: 50px;

  text-decoration: none;

  font-weight: 700;

  transition: 0.4s ease;
}

/* PRIMARY */

.launch-btn{
  background:
    linear-gradient(
      135deg,
      #f59e0b,
      #f97316
    );

  color: white;

  box-shadow:
    0 10px 30px rgba(249,115,22,0.25);
}

.launch-btn:hover{
  transform: translateY(-5px);
}

/* SECONDARY */

.secondary-launch-btn{
  border: 1px solid rgba(255,255,255,0.12);

  background: rgba(255,255,255,0.03);

  color: white;
}

.secondary-launch-btn:hover{
  border-color: #f59e0b;

  color: #f59e0b;
}

/* =========================
   LAPTOP
========================= */

@media(max-width:1100px){

  .launch-container{
    flex-direction: column;

    text-align: center;

    gap: 60px;
  }

  .launch-description{
    margin-inline: auto;
  }

  .event-details{
    max-width: 700px;

    margin-inline: auto auto 40px;
  }

  .countdown-wrapper{
    justify-content: center;
  }

  .launch-buttons{
    justify-content: center;
  }
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

  .launch-section{
    padding: 100px 20px;
  }

  .launch-content h2{
    font-size: 3rem;
  }

  .launch-description{
    font-size: 1rem;
  }

  .launch-image{
    max-width: 350px;
  }

  .event-details{
    grid-template-columns: 1fr 1fr;
  }

  .launch-buttons{
    flex-direction: column;
    align-items: center;
  }

  .launch-btn,
  .secondary-launch-btn{
    width: 100%;
    max-width: 320px;

    text-align: center;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){

  .launch-section{
    padding: 80px 16px;
  }

  .launch-tag{
    font-size: 11px;
  }

  .launch-content h2{
    font-size: 2.2rem;
  }

  .launch-description{
    font-size: 0.95rem;
  }

  .launch-image{
    max-width: 250px;
  }

  .event-details{
    grid-template-columns: 1fr;
  }

  .event-card{
    padding: 20px;
  }

  .countdown-wrapper{
    justify-content: center;
  }

  .count-box{
    min-width: 90px;

    padding: 16px;
  }

  .count-box h3{
    font-size: 1.6rem;
  }

  .launch-btn,
  .secondary-launch-btn{
    width: 100%;
  }
}