.spinning-cogs-2{
  position: relative;
  top: 350px !important;
  left: 65% !important;
  opacity: 0.9;
  /* filter: drop-shadow(0 1px 1px black); */
}

.large-cog.right-cog-1{
  position: absolute;
  /* top: 60px !important; */
  width: 25vw ;
}

.small-cog.right-cog-2{
  left: 330px;
  width: 20vw;
  top: -40px;
}

.small-cog.right-cog-3{
  top: 200px;
  left: 100px;
  z-index: -1;
  width: 20vw !important;
}

/* techtalk menu */
.birdie{
  position: absolute;
  top: 0% !important;
}

.bigtechtalk{
  z-index: 100;
  position: relative;
  padding: 10rem 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #F7B536;
}

.techtalk-container{
  z-index: 100;
  position: absolute;
  padding: 0 10rem;
  transform: translateY(5rem);
}

.techtalk-container h1{
    font-family: "Cinzel-Deco", sans-serif;
    font-size: 60px;
    text-shadow: 0 1px 5px black;
    margin-bottom: 10px;
    z-index: 100;
}

.techtalk-container p{
  font-family: "Glyphic", sans-serif;
  size: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.bigcompetition{
  position: relative;
  justify-content: center;
  margin-top: 10rem;
}

.right-cloud.compe-right-cloud{
  top: -20% !important;
}

.airship{
  top: -20%;
}

.competition-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem;
  text-align: center;
  /* gap: 1rem; */
}

.competition-section h1, p{
  color: #F7B536;
}

.competition-section h1{
  font-family: "Cinzel-Deco", sans-serif;
  font-size: 60px;
  text-shadow: 0 1px 5px black;
}

.competition-section p{
  font-family: "Glyphic", sans-serif;
  font-size: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.competition-container{
  border-radius: 20px;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  background-color: #C4AD76;
  box-shadow: 2px 5px 10px black;
  margin: 2rem 0;
  text-align: left;

}

.competition-container img{
  width: 10vw;
  height: 10vw;
}

.competition-container h2{
  /* font-family: "Cinzel-Deco"; */
  font-family: "Cinzel-Deco", sans-serif;
  font-weight: 100;
  font-size: 28px;
  color: #6A3231;
}

.competition-container p{
  /* color: black; */
  text-shadow: none;
  font-family: "Glyphic", sans-serif;
        font-weight: 100;
        font-size: 15px;
        color: #6A3231;
}

.compe-right-section{
  border-left: 1px solid black;
  padding-left: 1rem;
}

.bigtimeline{
  position: relative;
}

.clockies{
  position: absolute;
  width: 30vw;
  right: 0%;
  top: -7rem;
  animation: clocked 8s infinite;
}

@keyframes clocked {
    0% {
        transform: rotate(-30deg);
    }
    /* 25% {
        transform: rotate(30deg);
      } */
    50% { 
        transform: rotate(30deg);
    }
    /* 75%{
        transform: rotate(-30deg);
    } */
    100% {
        transform: rotate(-30deg);
    }
}

.left-gear{
  top: 25%;
  left: -5% !important;
}

.right-gear{
  top: 70%;
}

.timelinesection {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}

.timelinesection h1 {
  font-family: "Cinzel-Deco", serif;
  font-size: 60px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  color: #F7B536;
  margin: 0;
}

/* Main timeline container */
.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Central vertical line */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #f5a623, #F7B536);
  transform: translateX(-50%);
  z-index: 1;
}

/* Timeline item */
.timeline-item {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Timeline dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #F7B536;
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Timeline content */
.timeline-content {
  position: relative;
  background: linear-gradient(135deg, #C4AD76, #D4B886);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  width: 40%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(247, 181, 54, 0.3);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.timeline-content h2 {
  color: #6A3231;
  font-family: "Cinzel-Deco", serif;
  font-size: 18px;
  margin: 0 0 0.5rem 0;
}

.timeline-content p {
  color: #2c1810;
  font-family: "Glyphic", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Left side items (odd) */
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
  text-align: right;
  margin-right: 55%;
}

/* Right side items (even) */
.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  margin-left: 55%;
}

/* Responsive design */
@media (max-width: 1170px) {
  .timelinesection h1 {
    font-size: 40px;
  }
  
  .timeline-container {
    max-width: none;
    padding: 2rem 1rem;
  }
  
  .timeline-container::before {
    left: 26px;
  }
  
  .timeline-dot {
    left: 0;
    transform: none;
  }
  
  .timeline-content {
    width: 100%;
    margin-left: 70px !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  
  .timeline-content::before {
    left: -15px !important;
    right: auto !important;
    top: 30px !important;
    transform: none !important;
    border-color: transparent !important;
    border-right-color: #C4AD76 !important;
    border-left-color: transparent !important;
  }
  
  .timeline-item::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .timelinesection {
    padding: 1rem;
  }
  
  .timeline-content {
    padding: 1rem;
    margin-left: 60px !important;
  }
  
  .timeline-content h2 {
    font-size: 16px;
  }
  
  .timeline-content p {
    font-size: 12px;
  }
}

.bigsponsor{
  position: relative;
}

.birdie{
    opacity: 0.8;
    position: absolute;
    height: 40vw;
    top: 35% !important;
    right: -5%;
}

@media (max-width: 768px) {
  .bigtechtalk{
    z-index: -1;
    position: relative;
    padding: 3rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #F7B536;
  }

  .techtalk-container{
  position: absolute;
  padding: 5rem;
  transform: translateY(5rem);
  }

  .techtalk-container h1{
    font-size: 40px;
  }

  .large-cog.right-cog-1{
  position: absolute;
  width: 30vw ;
  left: 40px !important;
  top: -20px;
}

  .small-cog.right-cog-2{
    left: 100px;
    width: 20vw;
    top: -60px;
  }

  .small-cog.right-cog-3{
    top: 30px;
    left: -5px;
    z-index: -1;
    width: 20vw !important;
  }

  .competition-section{
    margin-top: 10rem;
    padding: 3rem;
    
  }

  .competition-section h1{
    font-size: 40px;
  }

  .airship{
    top: 20%;
  }
  
.timelinesection h1{
  font-size: 40px;
}

}
