/*ashish-start*/

@font-face {
    font-family: 'BLMelody';
    src: url('../fonts/bl-melody/BLMelody-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }
  @font-face {
    font-family: 'BLMelody2';
    src: url('../fonts/bl-melody/BLMelody-Medium.otf') format('opentype');
    font-weight: medium;
    font-style: normal;
  }
  @font-face {
    font-family: 'BLMelody3';
    src: url('../fonts/bl-melody/BLMelody-Light.otf') format('opentype');
    font-weight: lighter;
    font-style: normal;
  }
  @font-face {
    font-family: 'BLMelody4';
    src: url('../fonts/bl-melody/BLMelody-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
  }
  @font-face {
    font-family: 'BLMelody5';
    src: url('../fonts/bl-melody/BLMelody-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
  }
  
  
  /* Registration Section Styles */
  .registration-section {
    background-color: #FAF3E0;
    width: calc(100% - 60px); 
    border-radius: 40px;
    padding: 80px 0;
    text-align: center;
    margin: 0 30px; 
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .registration-background {
    background-color: #FAF3E0;
    width: calc(100% - 60px); 
    border-radius: 40px;
    padding: 80px 0;
    text-align: center;
    margin: 0 30px; 
    box-sizing: border-box;
    overflow: hidden;
  }
  
  
  .registration-title {
    font-family: 'Anton SC', sans-serif;
    font-size: 48px;
    line-height: 100%;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0%;
    color: #000;
  }
  
  .registration-subtext {
    font-family: 'Cabinet Grotesk', sans-serif;
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    color: #000;
    max-width: 600px;
    margin: 0 auto 48px auto;
  }
  
  /* Cards container */
  /* Cards container */
  .registration-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: nowrap;
  }
  
  
  .reg-card {
    width: 248px;
    height: 351px;
    background-color: #be6025;
    border-radius: 16px;
    padding: 30px 6px 10px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  .reg-card-inner {
    background-color: #FAF3E0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  
  .price {
    font-family: 'BLMelody', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
    text-align: center;
  }
  .priceop {
    font-family: 'BLMelody', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin: 0;
    margin-left: -60px;
    text-align: center;
  }
  
  .per {
    font-family: 'BLMelody2', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0%;
    text-align: right;
    line-height: 100%;
  }
  
  .accommodation {
    font-family: 'BLMelody', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-bottom: 16px;
    margin-top: -20px;
    margin-left: -10px;
    white-space: normal;
  }
  
  .accommodationop {
    font-family: 'BLMelody', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    margin-bottom: 16px;
    margin-top: 10px;
    margin-left: -30px;
    white-space: normal;
  }
  .light {
    font-family: 'BLMelody3', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #000;
  }
  
  .role {
    font-family: 'BLMelody4', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-left: -90px;
    color: #000;
  }
  .role2 {
    font-family: 'BLMelody4', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    margin-left: -80px;
    color: #000;
  }
  
  .description {
    font-family: 'BLMelody5', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
    margin-left: -5px;
    margin-top: -25px;
    
  }
  .descriptionop{
    font-family: 'BLMelody5', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 0px;
    margin-top: -10px;
  }
  .register-btn {
    background-color: #Be6025;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
    margin-top: 40px;
  }
  
  .register-btn:hover {
    background-color: #923e0f;
  }
  
  /* FAQ Section*/
  .faq-section {
    background-color: #FAF3E0;
    width: 100vw;          /* Make full width */
    max-width: 100vw;
    padding: 120px 80px;
    text-align: center;
    box-sizing: border-box;
  }
  
    
    .faq-heading {
      font-family: 'Anton SC', sans-serif;
      font-weight: 400;
      font-size: 128px;
      line-height: 100%;
      color: #0b0b0b;
      margin-bottom: 60px;
    }
    
    .faq-container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: left;
    }
    
    .faq-item {
      border-bottom: 1px solid rgba(0, 0, 0, 0.3);
      padding: 20px 0;
      transition: all 0.3s ease;
    }
    
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: 'Cabinet Grotesk', sans-serif;
      font-weight: 500;
      font-size: 20px;
      color: #0b0b0b;
      cursor: pointer;
      text-align: left;
      transition: color 0.3s ease;
    }
    
    .faq-question:hover {
      color: #B85A26;
    }
    
    .arrow {
      transition: transform 0.3s ease;
      font-size: 18px;
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    
    .faq-answer p {
      font-family: 'Cabinet Grotesk', sans-serif;
      font-weight: 400;
      font-size: 16px;
      color: #222;
      margin-top: 12px;
      line-height: 1.6;
    }
    
    .faq-item.open .arrow {
      transform: rotate(180deg);
    }
    
  
  .registration-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap; 
  }
  
  
  @media (max-width: 768px) {
    .registration-cards {
      flex-direction: column !important;
      gap: 20px !important;
      align-items: center;
    }
  
    .reg-card {
      width: 90% !important;  
      max-width: 350px;       
      margin: 0 auto !important;
    }
  
    .registration-title {
      font-size: 28px !important;
    }
  
    .registration-subtext {
      font-size: 16px !important;
      max-width: 100% !important;
      padding: 0 10px;
    }
  
    
    .price,
    .accommodation,
    .accommodationop,
    .role,
    .role2,
    .description,
    .descriptionop {
      margin-left: 0 !important;
      margin-top: 0 !important;
    }
  }
  
  
  @media (max-width: 768px) {
    .faq-section {
      padding: 60px 20px;  
    }
  
    .faq-heading {
      font-size: 48px;    
      margin-bottom: 40px;
      text-align: center;  
    }
  
    .faq-container {
      max-width: 100%;     
      margin: 0 10px;
    }
  
    .faq-question {
      font-size: 18px;    
    }
  
    .faq-answer p {
      font-size: 14px;   
    }
  }
  
  
  html, body {
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    margin: 0;
    
    overflow-x: hidden;
    font-family: 'Anton SC', sans-serif;
  }
  .page-wrapper {
    background-color: #121212; 
    transition: background-color 0.5s ease; 
  }
  /* --- Section --- */
  .prizes-section {
    position: relative;
    width: 100vw; /* <-- Force full viewport width */
    height: 100vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  
  /* --- Heading --- */
  .prizes-heading {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 102px;
    font-weight: 400;
    font-size: 128px;
    line-height: 0.8;
    color: #faf3e0;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap; /* keep on one line on desktop */
    z-index: 1; 
  }
  
  /* --- Cards Container --- */
  .cards-containerA {
    position: absolute;
    bottom: -200px;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    z-index: 2; 
    pointer-events: none; 
  }
  
  /* --- Card Styles --- */
  .cardA {
    width: 420px;
    height: auto;
    transform: translateY(100px) rotate(0deg);
    opacity: 0;
    
  }
  
  
  .card-inner {
    width: 100%;
    will-change: transform;
    
    transform-origin: center bottom;
    display: block;
  }
  
  .cardA:nth-child(1) .card-inner {
    transform: rotate(0deg);
  }
  
  .cardA:nth-child(2) .card-inner {
    transform: rotate(0deg);
  }
  
  .cardA img {
    width: 100%;
    height: auto;
    display: block;
    user-select: none;
    pointer-events: auto;
  }
  .cardA:nth-child(1) .card-inner {
    margin-top: -200px; 
  }
  .cardA:nth-child(2) .card-inner {
    margin-top: -200px; 
  }
  .prizes-section,
  .registration-section,
  .faq-section,
  .page-wrapper {
  max-width: 100%;
  overflow-x: hidden;
  }
  
  
  
  @media (max-width: 768px) {
  /* section */
  .prizes-section {
  height: 800px !important;
  padding: 88px 16px;
  overflow: visible !important;
  box-sizing: border-box;
  }
  
  
  .prizes-heading {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 12px;
  box-sizing: border-box;
  text-align: center !important;
  font-size: clamp(28px, 9vw, 56px); 
  margin: 0 0 28px 0 !important;
  line-height: 1 !important;
  white-space: normal !important; /* allow wrapping on mobile */
  word-break: break-word;
  overflow-wrap: anywhere;
  margin-left: auto !important;
  margin-right: auto !important;
  z-index: 1;
  }
  
  
  .cards-containerA {
  position: relative !important;
  bottom: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;    
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  pointer-events: none; 
  }
  
  
  .cardA {
  position: relative !important;
  width: 100% !important;
  max-width: 380px;       
  margin: 0 auto !important;
  opacity: 0;             
  transform: translateY(80px); 
  box-sizing: border-box;
  pointer-events: auto; 
  }
  
  
  .cardA:nth-child(2) .card-inner {
  margin-top: 0 !important;
  }
  
  .card-inner img {
  width: 100%;
  height: auto;
  display: block;
  }
  
  
  .registration-background, .faq-section {
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
  }
  }
  
  /*ashish-end*/