@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Press+Start+2P&display=swap");
html {
  scroll-behavior: smooth;
}

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

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.navbar {
  background-color: #342b7c;
  color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  font-family: "Pixelony", sans-serif;
  /* Ensure it's visible by default */
  display: block;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.navbar-links li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-links li a:hover {
  color: #05ccfd;
}

.navbar-date {
  font-size: 1rem;
  color: #05ccfd;
}

.hamburger {
  display: none;
}

#floating-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  #floating-menu-btn {
    display: flex;
    position: fixed;
    left: 15px;
    width: 35px;
    height: 35px;
    background-color: #342b7c;
    border: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s;
  }
}

.hamburger-float {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 35px;
  gap: 4px;
}

.hamburger-float div {
  width: 100%;
  height: 3px;
  background-color: white;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #05ccfd;
  /* backdrop-filter: blur(5px); */
}

.modal-content {
  background-color: #a77d58;
  border: #674d3b 10px solid;
  color: #674d3b;
  margin: 10% auto;
  padding: 30px;
  width: 85%;
  max-width: 500px;
  left: 0;
  top: 10%;
  position: relative;
  text-align: center;
  font-family: "Pixelony", sans-serif;
}

.close-btn {
  color: #674d3b;
  float: right;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-logo {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #05ccfd;
}

.modal-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.modal-links li a {
  color: #674d3b;
  text-decoration: none;
  font-size: 1.75rem;
  display: block;
  padding: 10px;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 5px;
}

.modal-date {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #fff;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-navbar {
  display: none;
}

/* Common navbar styles */
.navbar {
  background-color: #342b7c;
  color: white;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  font-family: "Pixelony", sans-serif;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.register-btn {
  background-color: #f4cd3e;
  color: #743f22;
  border: 4px solid #834626;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.register-btn:hover {
  background-color: #e6b72e;
}

/* Mobile styles */
@media (max-width: 768px) {
  /* Hide desktop navbar */
  .desktop-navbar {
    display: none;
  }

  /* Show mobile navbar */
  .mobile-navbar {
    display: block;
  }

  .menu-icon img {
    width: 30px;
    cursor: pointer;
  }

  .register-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

.hero-container {
  width: 100%;
  overflow: hidden;
  /* background-color: #05ccfd; */
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.plane {
  position: absolute;
  top: -4rem;
  left: -150px;
  transform: translateY(100px);
  height: 120px;
  opacity: 0;
  animation: flyAcross 13s linear 0s infinite;
  z-index: 1;
}

.mobile-hero {
  display: none;
}

/* On mobile: switch to hero1.png */
@media (max-width: 768px) {
  .desktop-hero {
    display: none;
  }
  .mobile-hero {
    display: block;
  }
}

@keyframes flyAcross {
  0% {
    left: -700px;
    opacity: 1;
  }

  72.2% {
    /* 13s out of 18s = 72.2% */
    left: 100%;
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0; /* Hide during pause */
  }
}

.blue-stripe {
  background-color: #342b7c;
  color: white;
  text-align: center;
  padding: 15px 20px;
  font-family: "Pixelony", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  position: sticky;
  top: -1px;
  z-index: 10;
}

.blue-stripe::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.vadapav-icon {
  height: 1.8rem;
  width: auto;
  vertical-align: middle;
  margin: 0 10px;
  transform: translateY(-2px);
}

.content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.content h1 {
  margin-bottom: 20px;
  color: #333;
}

.content p {
  line-height: 1.6;
  color: #666;
}

.winners-section {
  background-color: #fff;
  text-align: center;
  padding: 30px 20px;
  font-family: "Pixelony", sans-serif;
}

.strong {
  font-weight: 700;
  color: #000ed0;
}

.winners-title {
  font-size: 2rem;
  color: #342b7c;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.winners-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Pixelony", sans-serif;
}

.winners-subtitle {
  font-size: 1.8rem;
  color: #020202;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-family: "Bricolage Grotesque", sans-serif;
  text-align: center;
}

.ultimate-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem auto;
  display: block;
  rotate: -3deg;
}

.winners-description {
  max-width: 750px;
  margin: 3rem auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4a4a4a;
  font-family: "Bricolage Grotesque", sans-serif;
}

.cash-title {
  font-size: 1.2rem;
  color: #342b7c;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  font-family: "Pixelony", sans-serif;
}

.cash-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.winners-subtitle-small {
  font-size: 1.4rem;
  color: #342b7c;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-family: "Pixelony", sans-serif;
}

.tap-text {
  color: #000000;
  font-size: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
}

.extra-prizes {
  margin-top: 2rem;
  text-align: center;
}

.extra-text {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 2.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
}

.register-btn {
  background-color: #f4cd3e;
  color: #743f22;
  border: 5px solid #834626;
  padding: 15px 35px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Pixelony", sans-serif;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.registration-section {
  background-color: #0f0f0f;
  text-align: center;
  padding: 60px 20px;
  font-family: "Pixelony", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.register-image {
  max-width: 550px;
  width: 100%;
  margin: 0 auto 1.5rem auto;
  display: block;
  margin-top: 2rem;
}

.team-info {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.pav-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 25px;
  margin-bottom: 3rem;
}

.pav-row img {
  width: 120px;
  height: auto;
}

.important-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 2rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
  margin-top: 3rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}

.calendar-item {
  text-align: center;
}

.calendar-item img {
  width: 100px;
  margin-bottom: 1rem;
}

.calendar-item h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.calendar-item p {
  font-size: 1rem;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
  font-weight: 200;
}

/* 📱 Mobile Styles */
@media (max-width: 768px) {
  .pav-row {
    gap: 15px;
  }

  .pav-row img {
    width: 100px;
  }

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .calendar-item img {
    width: 80px;
  }

  .team-info {
    font-size: 1rem;
    color: #fff;
  }

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

.timeline {
  max-width: 900px;
  position: relative;
  margin-left: 30px;
  border-left: 7px solid #fff;
  padding-left: 40px;
  margin-top: 5rem;
}

.dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  left: -18px;
  background-color: red;
  border: 7px solid #ffffff;
}

.dot.yellow {
  background-color: #f5c518;
}
.dot.green {
  background-color: #36c36c;
}

h2 {
  font-family: "Pixelony", sans-serif;
  font-size: 3rem;
  color: #ff4040;
  margin-top: 0;
  text-align: left;
}

h2.green {
  color: #75ff75;
}
h2.yellow {
  color: #f5c518;
}

.section {
  margin-bottom: 80px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 20px;
}

.info-line {
  color: #dadada;
  text-align: left;
  padding-bottom: 10px;
  font-family: "bricolage grotesque", sans-serif;
  font-size: 1.2rem;
}

.info-line span:first-child {
  color: #fff;
}

.highlight {
  font-weight: 600;
}

@media (max-width: 600px) {
  .timeline {
    margin-left: 20px;
    padding-left: 40px;
  }
  h2 {
    font-size: 1.5rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .winners-subtitle-small {
    font-size: 1.1rem;
  }

  .tap-text {
    font-size: 0.9rem;
  }

  .extra-text {
    font-size: 0.9rem;
  }

  .register-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cash-title {
    font-size: 1rem;
    margin-top: 2rem;
  }

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

/* Responsive tweaks */
@media (max-width: 768px) {
  .winners-subtitle {
    font-size: 1.4rem;
  }
  .ultimate-image {
    max-width: 300px;
  }
  .winners-description {
    font-size: 0.9rem;
  }
}

.podium {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.podium-box {
  color: #000;
  padding: 20px 10px;
  width: 150px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.prize-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
}

.podium-box.first .prize-text {
  top: -40px;
  color: #cea321;
  font-size: 2.5rem;
}

.podium-box.second .prize-text {
  top: -30px;
  color: #9f9f9f;
  font-size: 2rem;
}

.podium-box.third .prize-text {
  top: -25px;
  color: #d86303;
  font-size: 1.75rem;
}

@keyframes bounceUp {
  0% {
    transform: translateY(var(--base-translate));
  }
  30% {
    transform: translateY(calc(var(--base-translate) - 60px));
  }
  50% {
    transform: translateY(calc(var(--base-translate) - 70px));
  }
  70% {
    transform: translateY(calc(var(--base-translate) - 40px));
  }
  100% {
    transform: translateY(var(--base-translate));
  }
}

.podium-box.bouncing {
  animation: bounceUp 0.2s linear;
}

.podium-box {
  --base-translate: 0;
  transform: translateY(var(--base-translate));
  transition: transform 0.3s ease;
}

.first {
  --base-translate: 0px;
  width: 250px;
  animation: glide 3s ease-in-out infinite;
}

.second {
  --base-translate: 0px;
  width: 200px;
  animation: glide 3s ease-in-out 1s infinite;
}

.third {
  --base-translate: 0px;
  width: 175px;
  animation: glide 3s ease-in-out 2s infinite;
}

.agenda-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
  background: url("agenda-bg.png") no-repeat center center;
}

.agenda {
  max-width: 700px;
  margin: 0 auto;
}

.jury-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0;
}

.jury {
  max-width: 700px;
  margin: 0 auto;
}

.mentor-section {
  position: relative;
  padding: 100px 5%;
  background: url("mentor-bg.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

/* Cloud setup */
.cloud {
  position: absolute;
  opacity: 1;
  z-index: 1;
}

.cloud-1 { top: 10%; left: 5%; width: 150px; animation-delay: 0s; }
.cloud-2 { top: 20%; right: 10%; width: 190px; animation-delay: 2s; }
.cloud-3 { bottom: 15%; left: 10%; width: 240px; animation-delay: 4s; }
.cloud-4 { bottom: 25%; right: 15%; width: 200px; animation-delay: 6s; }


/* Grid layout */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  position: relative;
  z-index: 2;
  justify-items: center;
}


/* Mentor card image */
.mentor-card {
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: scale(1.05);
}

.image-section {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
gap: 3rem;
}


/* First row */
.row-1 img {
width: 300px;
height: auto;
display: block;
}


/* Second row */
.row-2 {
display: flex;
justify-content: center;
gap: 14rem;
flex-wrap: wrap;
}


.row-2 img {
width: 300px;
max-width: 100%;
height: auto;
}


/* Mobile responsiveness */
@media (max-width: 600px) {
.row-2 {
flex-direction: column;
align-items: center;
gap: 3rem;

}
}


/* Responsive */
@media (max-width: 900px) {
  .mentor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mentor-card:nth-child(4),
  .mentor-card:nth-child(5) {
    grid-column: auto;
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .mentor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cloud-1 { top: 2%; left: 5%; width: 100px; animation-delay: 0s; }
.cloud-2 { top: 7%; right: 10%; width: 90px; animation-delay: 2s; }
.cloud-3 { bottom: 45%; left: 20%; width: 140px; animation-delay: 4s; }
.cloud-4 { bottom: 15%; right: 15%; width: 150px; animation-delay: 6s; }
}


.venue-section {
  text-align: center;
  overflow: hidden;
  background: #05ccfd;
  position: relative;
}

/* Top image */
.center-image {
  max-width: 350px;
  height: auto;
  display: block;
  margin: 3rem auto 2rem auto;
  animation: fadeIn 1.2s ease-in-out;
}

/* Venue info + map */
.venue-details {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  padding: 1rem 1rem;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 5px;
  width: 70%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  margin-bottom: -150px;
}

.venue-info {
  flex: 1;
  min-width: 280px;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
}

.venue-info h2 {
  color: #05ccfd;
  margin-bottom: 1rem;
}

.venue-map {
  flex: 1;
  min-width: 280px;
}

.full-width-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #111;
  margin-top: 5rem;
}

.spon-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  margin: 0;
  color: #111;
}

.faq-item {
  background-color: #fff;
  border: 4px solid #000;
  margin-bottom: 1rem;
  padding: 1.2rem 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  line-height: 0rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Pixelony", sans-serif;
  line-height: 1.2;
}

.faq-question:hover {
  cursor: pointer;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  line-height: 1.6;
  color: #000;
  font-family: "Bricolage Grotesque", sans-serif;
}

.faq-header {
  display: flex;
  gap: 16px; /* space between images and title */
  margin-bottom: 2rem;
}

.faq-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  /* only break out to full viewport width on large screens */
  .faq-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.faq-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6.5rem;
}

.separator {
  flex-grow: 1;
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: cover;
}

.separator.left {
  transform: rotate(180deg);
  overflow-y: visible;
}

.separator.right {
  overflow-y: visible;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }

  .spon-title {
    font-size: 1.75rem;
    padding: 0 0.5rem;
    margin: 0;
  } 

  .separator {
    max-height: 40px;
    object-fit: contain; /* prevent stretching on mobile */
  }

  .faq-section {
    gap: 1.5rem;
  }
}

.faq-title {
  font-size: 4rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0;
}

a {
  color: #002aff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .faq-item {
    max-width: 380px;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .faq-question {
    gap: 7px;
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .venue-details {
    flex-direction: column;
    width: 90%;
    padding: 1.5rem;
    margin-bottom: -40px; /* smaller overlap on mobile */
  }

  .venue-info {
    text-align: center;
  }

  .venue-map {
    margin-top: 1.5rem;
  }
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glide {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.trophy {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* Responsive behavior */
@media (max-width: 768px) {
  .podium {
    gap: 10px;
  }

  .podium-box {
    width: 200px;
    padding: 15px 5px;
  }

  .podium-box.first .prize-text {
    top: -40px;
    color: #cea321;
    font-size: 2rem;
  }

  .podium-box.second .prize-text {
    top: -30px;
    color: #9f9f9f;
    font-size: 1.5rem;
  }

  .podium-box.third .prize-text {
    top: -25px;
    color: #d86303;
    font-size: 1.25rem;
  }

  .first {
    width: 250px;
  }

  .second {
    width: 200px;
  }

  .third {
    width: 175px;
  }

  .agenda {
    max-width: 370px;
  }

  .jury {
    max-width: 370px;
    height: auto;
  }
}



@media (max-width: 480px) {
  .winners-title {
    font-size: 1.4rem;
  }

  .podium-box {
    font-size: 0.8rem;
    padding: 10px 5px;
  }

  .trophy {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .plane {
    top: -27rem;
    left: -100px;
    width: 150px;
    height: auto;
    transform: translateY(0);
  }
  @keyframes flyAcross {
    0% {
      left: -250px;
      opacity: 1;
    }

    72.2% {
      left: 100%;
      opacity: 1;
    }

    100% {
      left: 100%;
      opacity: 0;
    }
  }
  .blue-stripe {
    font-size: 1rem;
  }

  .vadapav-icon {
    height: 1rem;
  }
}

@media (max-width: 480px) {
  .plane {
    top: 1rem;
    left: -80px;
    width: 230px;
    height: auto;
    transform: translateY(0);
  }
}

.ready-section {
  text-align: center;
  background-color: #98c261; /* Change if needed */
  position: relative;
  text-align: center;
}

.ready-separator {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px; /* Space between separator and content */
}

.ready-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.ready-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: black;
}

.ready-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 60%;
  font-family: "Bricolage Grotesque", sans-serif;
}

.ready-btn {
  display: inline-block;
  padding: 14px 36px;
  background-color: #ff4b2b; /* Button color */
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 25px;
}

.ready-btn:hover {
  background-color: #e03e21;
}

.ready-footer {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px; /* Space between content and footer */
}

.part-content {
  background-color: #529351;
}

.part-content {
  position: relative; /* Parent for coins */
}

.ready-content h2,
.ready-content p,
.ready-content a {
  position: relative;
  z-index: 1; /* Text and button above coins */
}

.coin {
  position: absolute;
  pointer-events: none;
  z-index: 0; /* Behind content */
}

.coin-1 {
  top: 35%;
  left: 5%;
  width: 70px;
  rotate: -10deg;
}
.coin-2 {
  top: 10%;
  right: 5%;
  width: 80px;
  rotate: 10deg;
}
.coin-3 {
  bottom: 15%;
  left: 90%;
  width: 60px;
  transform: translateX(-50%);
  rotate: -10deg;
}

@media (max-width: 768px) {
  .coin-1 {
    width: 40px;
    top: 25%;
    left: 5%;
    rotate: -10deg;
  }
  .coin-2 {
    width: 60px;
    top: 35%;
    right: 5%;
    rotate: 10deg;
  }
  .coin-3 {
    width: 45px;
    bottom: 10%;
    left: 90%;
  }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .ready-content h2 {
    font-size: 2rem;
  }

  .ready-content p {
    font-size: 1rem;
  }

  .ready-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/*========== FOOTER ==========*/
.footer {
  background-color: #000;
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__logo {
  color: #fff;
}

.footer__description {
  color: #397eff;
  font-weight: 300;
  font-size: 1rem;
}

.footer__title {
  margin-bottom: var(--mb-2);
  font-weight: 600;
  font-size: 1.3rem;
}

.footer__logo,
.footer__title {
  font-size: var(--h3-font-size);
}

.footer__link {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #c5c5c5;
  font-weight: 300;
  font-size: 1rem;
}

.footer__link:hover {
  color: #397eff;
}

.footer__social {
  font-size: 1.5rem;
  color: #fff;
  margin-right: var(--mb-2);
}

.footer__social:hover {
  color: #397eff;
}

.footer__title {
  color: #fff;
}

.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: #fff;
  margin-top: 4rem;
}

/* Stamps container */
.footer__stamps {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 100;
}

.footer__stamp {
  width: 175px;
  height: auto;
  transform: rotate(-15deg);
  margin: 0 20px;
}

.footer__stamp img {
  width: 400px;
  height: auto;
  object-fit: contain;
}

.footer__stamp:nth-child(2) img {
  transform: rotate(10deg);
}

.footer__stamp:nth-child(3) img {
  transform: rotate(-5deg);
}

.footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

/* Media query for responsive stamps */
@media screen and (max-width: 768px) {
  .footer__stamp {
    width: 80px;
  }

  .footer__stamps {
    bottom: -30px;
  }
}

.stamp {
  touch-action: none;
}
/*========== FOOTER ==========*/
.footer {
  background-color: #000;
}

.footer__container {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer__logo {
  color: #fff;
}

.footer__description {
  color: #397eff;
  font-weight: 300;
  font-size: 1rem;
}

.footer__title {
  margin-bottom: var(--mb-2);
  font-weight: 600;
  font-size: 1.3rem;
}

.footer__logo,
.footer__title {
  font-size: var(--h3-font-size);
}

.footer__link {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #c5c5c5;
  font-weight: 300;
  font-size: 1rem;
}

.footer__link:hover {
  color: #397eff;
}

.footer__social {
  font-size: 1.5rem;
  color: #fff;
  margin-right: var(--mb-2);
}

.footer__social:hover {
  color: #397eff;
}

.footer__title {
  color: #fff;
}

.footer__copy {
  text-align: center;
  font-size: var(--small-font-size);
  color: #fff;
  margin-top: 4rem;
}

/* Stamps container */
.footer__stamps {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 100;
}

.footer__stamp {
  width: 175px;
  height: auto;
  transform: rotate(-15deg);
  margin: 0 20px;
}

.footer__stamp img {
  width: 400px;
  height: auto;
  object-fit: contain;
}

.footer__stamp:nth-child(2) img {
  transform: rotate(10deg);
}

.footer__stamp:nth-child(3) img {
  transform: rotate(-5deg);
}

.footer {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

/* Media query for responsive stamps */
@media screen and (max-width: 768px) {
  .footer__stamp {
    width: 80px;
  }

  .footer__stamps {
    bottom: -30px;
  }
}

.stamp {
  touch-action: none;
}

/* Footer styles */
.page-footer {
  background-color: #000; /* dark brown, adjust as needed */
  color: #fff;
  font-family: "Pixelony", sans-serif;
  padding-top: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 1rem;
}

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #f4cd3e;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.25rem;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #f4cd3e; /* highlight on hover */
}

.footer-bottom {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-size: 1rem;
  color: #fff;
}

.footer-image img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 1.5rem;
  }
}

.footer-bottom {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-size: 0.9rem;
  color: #f4cd3e;
}

.footer-logo {
  width: 200px; /* adjust size as needed */
  display: block;
  margin: 0 auto 0.5rem auto; /* centers above the text with some spacing */
}
