@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&display=swap');

@keyframes parlak {
  0% {
    filter: brightness(0.3);
    transform: translateY(20%);
  }

  100% {
    filter: brightness(1);
    transform: translateY(0%);
  }
}

:root {
  --bg: #0e0e0e;
  --mx: 50vw;
  --my: 50vh;
  --size: 220px;
  --gap: clamp(0.5rem, 2vw, 2rem);
  --underline: 3px;
  --padding-button-y: clamp(8px, 0.8vw, 6px);
  --padding-button-x: clamp(8px, 1vw, 12px);
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}


body {
  background-color: var(--bg);
  overflow-x: hidden;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

:root {
  --gap: 2rem;
  --baseline: 1px;
  --underline: 3px;
}

/* GENEL */
body {
  margin: 0;
  background: #0e0e0e;
  color: #fff;
  font: 500 16px/1.4 system-ui, sans-serif;
}

:root {
  --gap: 2rem;
  --baseline: 1px;
  --underline: clamp(1px, 0.2vw, 3px);
}

/* GENEL */
button:hover {
  cursor: pointer;
}

a:hover {
  cursor: pointer;
}

body {
  margin: 0;
  background: #0e0e0e;
  color: #fff;
  font: 500 16px/1.4 system-ui, sans-serif;
}

/* HEADER / NAVBAR */
header.navbar {
  width: 100%;
  height: 20vh;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  overflow-x: visible;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 3;
  transition: height 0.5s, box-shadow 0.5s, padding 0.5s, background-color 0.5s;
  box-shadow: none;
  outline: none;
}

.logo-div a {
  text-decoration: none;
}

.navbar.nav-wrap.scrolled {
  background-color: #0e0e0e;
  box-shadow: 0 0 10px rgba(0, 0, 0, 1);
  height: 80px;
}

header .logo-div {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: flex-start;
  outline: none;
}

header .logo {
  width: 70px;
  height: 70px;
  transition: width 0.5s, height 0.5s;
  outline: none;
}

.logo.scrolled {
  width: 60px;
  height: 60px;
}


header .logo-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: font-size 0.5s;
  line-height: 1;
  height: 100%;
  outline: none;
}

.logo-title.scrolled {
  font-size: 15px;
}

.nav-wrap {
  position: relative;
  background: transparent;
}

b .nav-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
}

/* MENÜ TITLE */
.menu li {
  list-style: none;
  outline: none;
}

.menu a.title {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
  text-decoration: none;
  color: #b3b3b3;
  opacity: 0.9;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s, text-shadow 0.3s, opacity 0.3s;
  outline: none;
}

.menu a.title:hover,
.menu a.title:focus-visible {
  opacity: 1;
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* ALT ÇİZGİ */
.menu a.title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-1 * (var(--underline) / 2));
  height: var(--underline);
  border-radius: 999px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.menu a.title:hover::after,
.menu a.title:focus-visible::after,
.menu a.title[aria-current="page"]::after {
  transform: scaleX(1);
}

/* CONTACT BUTTON */
.menu .contact-button {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: var(--padding-button-y) var(--padding-button-x);
  border: none;
  border-radius: 8px;
  background-color: #2c2c2c;
  color: #b3b3b3;
  cursor: pointer;
  transition: color 0.3s, text-shadow 0.3s, background-color 0.3s;
  outline: none;
}

/* Hover efekti: parlama + alt çizgi */
.menu .contact-button:hover,
.menu .contact-button:focus-visible {
  color: #fff;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  background-color: #3c3c3c;
}

/* Hover’da alt çizgi açılır */
.menu .contact-button:hover::after,
.menu .contact-button:focus-visible::after {
  transform: scaleX(1);
}

/* REDUCE MOTION */
@media (prefers-reduced-motion: reduce) {
  .menu a::after {
    transition: none;
  }
}

/* SCREEN */
main.screen {
  width: 100vw;
  height: 100%;
  position: relative;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.padding {
  padding: 0 65px;
}

main.screen::-webkit-scrollbar {
  display: none;
}

/* HERO */
.first-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  outline: none;
}

.main-titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 52px;
  outline: none;
}

.large-title {
  font-size: 4vw;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
  color: #ffffff;
  animation: 0.7s ease-out 0s 1 parlak;
  outline: none;
}

.small-title {
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 160%;
  color: #c7c7c7;
  margin-top: 20px;
  animation: 0.4s ease-out 0s 1 parlak;
  outline: none;
}

.gears-div {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-top: 10vh;
  margin-left: 10vw;
}

/* TEXT CONTENT */
.text-div .text {
  max-width: 40vw;
  text-align: justify;
  font-size: 1.4vw;
  font-weight: 400;
  line-height: 160%;
  margin-top: 20px;
  background: linear-gradient(to right, white 70%, gray 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
  transition: background 0.5s ease-out;
  outline: none;
}

/* ROWS */
section.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30vh;
  gap: 200px;
  justify-content: flex-start;
  outline: none;
  scroll-margin-top: 80px;
}

.row.about {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  outline: none;
}

.row.about aside {
  flex-shrink: 0;
  outline: none;
  position: relative;
  height: 100%;
}

.row.about article {
  margin-left: auto;
  max-width: 600px;
  outline: none;
}

.instagram {
  width: 360px;
  box-shadow: 0 0 20px rgb(179, 179, 179, 0.5);
}

/* INSTAGRAM */
.insta-post {
  position: relative;
  width: 25vw;
  height: auto;
  outline: none
}

#photo1 {
  position: absolute;
  width: 23vw;
  height: auto;
  transform: rotateZ(10deg);
  margin-left: 60px;
  border-radius: 20px;
  transition: all 0.5s ease-out;
  outline: none;
  z-index: 1;
  top: 15vh;
  left: 18vw;
}

#photo2 {
  position: absolute;
  width: 23vw;
  height: auto;
  transform: rotateZ(-10deg);
  margin-left: 20px;
  border-radius: 20px;
  transition: all 0.5s ease-out;
  outline: none;
  top: 0vh;
  left: 50;
  z-index: 1;
}

/* GEARS */
.gear-canvas-wrapper {
  width: 460px;
  height: 400px;
  max-width: 40vw;
  max-height: 50vh;
  position: relative;
  outline: none;
}

.gear-canvas-wrapper canvas,
.gear-canvas-wrapper2 canvas {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}

.gear-canvas-wrapper2 {
  width: 700px;
  height: 600px;
  max-width: 40vw;
  max-height: 50vh;
  margin-right: 200px;
  position: relative;
  outline: none;
}

.photo:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  outline: none;
}


.svgObject svg {
  width: 100%;
  height: auto;
  max-width: 400px;
}

.svgObject {
  width: 400px;
}

.stars-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0e0e0e;
  overflow: hidden;
  z-index: -1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

.meteor-1 {
  position: absolute;
  top: -200px;
  left: 51%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 15s linear infinite;
  animation-delay: 0s;
}

.meteor-1:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-2 {
  position: absolute;
  top: -180px;
  left: 57%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 18s linear infinite;
  animation-delay: 8s;
}

.meteor-2:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-3 {
  position: absolute;
  top: -220px;
  left: 43%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 16s linear infinite;
  animation-delay: 12s;
}

.meteor-3:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-4 {
  position: absolute;
  top: -190px;
  left: 58%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 20s linear infinite;
  animation-delay: 5s;
}

.meteor-4:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-5 {
  position: absolute;
  top: -150px;
  left: 66%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 22s linear infinite;
  animation-delay: 15s;
}

.meteor-5:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-6 {
  position: absolute;
  top: -170px;
  left: 73%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 19s linear infinite;
  animation-delay: 25s;
}

.meteor-6:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-7 {
  position: absolute;
  top: -210px;
  left: 43%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 17s linear infinite;
  animation-delay: 30s;
}

.meteor-7:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-8 {
  position: absolute;
  top: -240px;
  left: 57%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 21s linear infinite;
  animation-delay: 18s;
}

.meteor-8:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-9 {
  position: absolute;
  top: -230px;
  left: 23%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 23s linear infinite;
  animation-delay: 35s;
}

.meteor-9:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-10 {
  position: absolute;
  top: -250px;
  left: 63%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 16s linear infinite;
  animation-delay: 22s;
}

.meteor-10:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-11 {
  position: absolute;
  top: -160px;
  left: 93%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 24s linear infinite;
  animation-delay: 40s;
}

.meteor-11:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-12 {
  position: absolute;
  top: -140px;
  left: 96%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 20s linear infinite;
  animation-delay: 28s;
}

.meteor-12:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-13 {
  position: absolute;
  top: -130px;
  left: 59%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 18s linear infinite;
  animation-delay: 45s;
}

.meteor-13:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-14 {
  position: absolute;
  top: -180px;
  left: 12%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 25s linear infinite;
  animation-delay: 10s;
}

.meteor-14:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

.meteor-15 {
  position: absolute;
  top: -200px;
  left: 87%;
  width: 300px;
  height: 1px;
  transform: rotate(-45deg);
  background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
  animation: meteor 19s linear infinite;
  animation-delay: 38s;
}

.meteor-15:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 5px;
  border-radius: 50%;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 15px 3px #fff;
}

@keyframes meteor {
  0% {
    opacity: 0;
    margin-top: -500px;
    margin-right: -500px;
  }

  5% {
    opacity: 1;
  }

  15% {
    opacity: 1;
  }

  25% {
    opacity: 0;
    margin-top: 400px;
    margin-left: -400px;
  }

  100% {
    opacity: 0;
    margin-top: 400px;
    margin-left: -800px;
  }
}



/* RESPONSIVE */
@media (max-width: 768px) {
  header.navbar {
    height: 130px;
  }

  header .logo {
    width: 50px;
    height: 50px;
  }

  header .logo-title {
    font-size: 1.4rem;
  }

  .menu {
    gap: 0.5rem;
  }

  .menu a.title,
  .menu .contact-button {
    font-size: 13px;
  }

  aside a img.instagram {
    width: 90%;
  }

  aside a img.instagram:hover {
    width: 94%;
  }

  .titles {
    display: none;
  }

  #menuButton {
    display: block;
  }
  .info-panel {
    flex-direction: row;
    height: auto;
    padding: 20px;
    gap: 15px;
  }

  .social-icon {
    justify-content: center;
  }
}

#teamstructure_section {
  margin-top: 35vh;
}

.row.workflow.team {
  justify-content: center;
  margin-top: 50vh;
}

.row.workflow.structure {
  display: flex;
  justify-content: center;
  margin: 0;
  margin-top: 10vh;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  max-width: 1200px;
}

.card {
  width: 15vw;
  height: auto;
  perspective: 1000px;
  display: inline-block;
  margin: 10px;
  vertical-align: center;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.card-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.25, .8, .25, 1);
  transform-style: preserve-3d;
  background-color: #111111;
  border-radius: 20px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  aspect-ratio: 391 / 630;
}

.card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-inner:hover {
  transform: rotateY(15deg);
  cursor: pointer;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;

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

  backface-visibility: hidden;
  text-align: center;
  padding: 1rem;
}

.card-back {
  transform: rotateY(180deg);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.card p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: #d0d0d0;
  max-width: 230px;
}

.lion {
  width: 70%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#mechanic_back {
  color: #ff4d4d;
}

#software_back {
  color: #74c954;
}

#pr_back {
  color: #ffcc18;
}

#drive_back {
  color: #58aefe;
}

.row.frc {
  justify-content: flex-start;
  margin-top: 100px;
}

section.row.vrc {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 100px;
}

section.row.competition {
  display: flex;
  justify-content: center;
}

.first-row {
  position: relative;
}

.main-titles {
  position: relative;
  z-index: 2;
}


#vrc {
  flex: 1;
  min-width: 300px;
  height: 470px;
  background: url("/photos/photo6.png") no-repeat;
  background-size: cover;
  background-position: center 0%;
  overflow: hidden;
  margin-right: 40px;
  border-radius: 15px;
}

#frc {
  flex: 1;
  min-width: 300px;
  width: 100%;
  height: 470px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.row.achievements {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.row.trophies {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 20px;
  animation: fadeUp 1.2s ease-in-out;
  height: 50vh;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slider {
  display: flex;
  gap: 5vh;
  transition: transform 0.3s ease;
  align-items: center;
  touch-action: pan-y;
  will-change: transform;
}

.trophy-item {
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.trophy-item img {
  display: block;
  width: 200px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.trophy-item.active img {
  width: 300px;
}

.row.trophy-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 10px;
  animation: fadeUp 1.2s ease-in-out;
  height: 60px;
}

.row.trophy-info span {
  font-weight: 300;
  font-size: 1.2rem;
  max-width: 250px;
  text-align: center;
}

.row.achievements,
#achievements_section,
.row.trophies,
.slider-wrapper,
.slider,
.trophy-item,
.row.trophy-info,
#award-text,
.trophy-item img {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.trophy-item img {
  -webkit-user-drag: none;
}


.a {
  transform: rotateZ(5deg);
}

.b {
  transform: rotateZ(-5deg);
}

.c {
  transform: rotateZ(5deg);
}

.e {
  transform: rotateZ(-5deg);
}

.f {
  transform: rotateZ(5deg);
}

.g {
  transform: rotateZ(-5deg);
}

.row.packages {
  display: flex;
  gap: 60px;
  margin-top: 20px;
  align-items: flex-end;
  justify-content: center;
}

.package {
  display: flex;
  flex-direction: column;
  width: 180px;
  height: 100px;
  background-color: #e8e8e8;
  border-radius: 200px 200px 50px 50px;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

/* Paketler */
.package.mars {
  height: 380px;
  width: 190px;
  padding-top: 20px;
  background-image: linear-gradient(to bottom, #DE5737, #F29F66);
  transition: box-shadow 0.3s ease;
}

.package.mars:hover {
  box-shadow: 0 0 20px rgba(233, 127, 81, 0.7);
}

.package.venus {
  height: 440px;
  width: 200px;
  padding-top: 20px;
  background-image: linear-gradient(to bottom, #8E4814, #DFAE48);
  transition: box-shadow 0.3s ease;
}

.package.venus:hover {
  box-shadow: 0 0 20px rgba(193, 137, 53, 0.7);
}

.package.uranus {
  height: 500px;
  width: 220px;
  padding-top: 20px;
  background-image: linear-gradient(to bottom, #303CAA, #6483FF);
  transition: box-shadow 0.3s ease;
}

.package.uranus:hover {
  box-shadow: 0 0 20px rgba(77, 100, 218, 0.7);
}

.package.saturn {
  height: 560px;
  width: 240px;
  padding-top: 20px;
  background-image: linear-gradient(to bottom, #757357, #D8BB76);
  transition: box-shadow 0.3s ease;
}

.package.saturn:hover {
  box-shadow: 0 0 20px rgba(170, 154, 104, 0.7);
}

.planetWrapper {
  display: inline-block;
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.planetWrapper img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  display: block;
  transition: transform 0.4s ease;
}

.planetWrapper img.saturnIcon {
  width: 300px;
  height: auto;
  border-radius: 50%;
}

.planetWrapper img:hover {
  transform: translateY(-20px);
}

.package:hover .planetWrapper {
  animation-play-state: paused;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.venusIcon {
  width: 170px;
  height: 170px;
  border-radius: 50%;
}

.uranusIcon {
  width: 190px;
  height: 190px;
  border-radius: 50%;
}

.saturnIcon {
  height: 200px;
  width: auto;
  transform: rotateZ(25deg);
}

.package-title {
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-top: 10px;
  color: #0e0e0e;
}

.price {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 10px;
  color: #0e0e0e;
}

.alt-title {
  font-family: "Abhaya Libre", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding-left: 200px;
}

.info-div {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  justify-content: center;
}

.info-span {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 10px;
  color: #0e0e0e;
}


.info-span::after {
  content: '';
  flex-grow: 1;
}

.ekstra {
  background-color: transparent;
  padding: 10px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 10px;
  color: #2e2e2e;
  width: 100%;
  border: 2px solid transparent;
  transition: border 0.3s, box-shadow 0.3s;
  background-color: rgba(255, 255, 255, 0.4);
}

.ekstra:hover {
  border: 2px solid #ffffff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.row.sponsorship {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-right: 400px;
}

.icon {
  position: relative;
  width: 1.95vw;
  height: auto;
  border-radius: 50%;
  margin-right: 5px;
  transition: transform 0.3s ease;
  z-index: 5;
}

.row.contact.padding {
  margin-top: 10%;
}

.step {
  margin-top: 40px;
}

.work-title {
  font-size: 1.8em;
}

.work-text {
  font-weight: 300;
  font-size: 1.2rem;
  max-width: 50%;
  display: inline-block;
}

/* CONTACT SECTION */

form {
  width: 100%;
}

.contact-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #0e0e0e;
  width: 100%;
  height: 20vh;
}

.contact-panel h1 {
  padding-left: 5vw;
  font-size: 2rem;
  font-weight: 500;
}

.content-area .map {
  flex: 1 1 50%;
  min-width: 300px;
  height: 50vh;
  border: none;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.content-area .map:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.02);
}

.info-panel {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; /* Sol ve sağ uçlar, orta ortada */
  background-image: linear-gradient(to top, rgba(14, 14, 14, 1), rgba(48, 48, 48, 1));
  width: 100%;
  height: 20vh;
  padding: 0 5vw; /* Sağ-sol boşluk */
  margin-top: 5vh;
  box-sizing: border-box;
}

.info-panel p {
  font-size: 1rem;
  font-weight: 350;
  margin: 2px 0;
}

.info-panel #teamName {
  font-size: 1.25rem;
}

.info-part, .info-part2 {
  display: flex;
  flex-direction: column;
  gap: 5px; /* Satırlar arası boşluk */
}

.social-icon {
  display: flex;
  flex-direction: row;
  gap: 15px; /* Birden fazla ikon olursa arası boşluk */
}

.social-icon img {
  width: 30px;
  height: 30px;
}

/* Contact section'da paddi ng kontrolü */
.row.contact.padding {
  margin-top: 10%;
  padding: 0 65px;
}

.posta {
  width: 25vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: #292929;
  border-radius: 15px;
  padding: 1rem;
}

.posta #title {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 2vh;
}

#submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(270deg, #1f1f1f, #3a3a3a, #1f1f1f);
  background-size: 200% 200%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-icon {
  width: 20px;
  height: 20px;
  filter: invert(1); /* beyaz yapmak için */
}


/* Hover & Active */
#submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgb(117, 92, 0, 0.4); /* veya rgba(0, 0, 0, 0.5) */
  animation: gradientRight 1.5s forwards; /* sağa kay */
}

#submit:not(:hover) {
  animation: gradientLeft 1.5s forwards; /* sola dön */
}

#submit:active {
  transform: scale(0.97);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

@keyframes gradientRight {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

/* sola animasyon */
@keyframes gradientLeft {
  from {
    background-position: 100% 50%;
  }
  to {
    background-position: 0% 50%;
  }
}


.input-box {
  position: relative;
  width: 100%;
  margin-top: 1vh;
  padding: 2px;
}

.input-box input,
.input-box textarea {
  width: 20vw;
  padding: 1vh;
  border: none;
  border-radius: 5px;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 350;
  outline: none;
  z-index: 1;
  position: relative;
  resize: none;
}

.input-box textarea {
  font-family: 'Arial', sans-serif !important;
  height: 20vh;
}

/* Çizgi efektleri */
.input-box::before,
.input-box::after {
  content: "";
  position: absolute;
  background: #ffc800;
  transition: all 0.25s linear;
}

.input-box::before {
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
}

.input-box::after {
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
}

.input-box:hover::before,
.input-box:focus-within::before {
  width: 100%;
}

.input-box:hover::after,
.input-box:focus-within::after {
  width: 100%;
  transition-delay: 0.25s;
}

/* Yan çizgiler */
.input-box span {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 0;
  background: #ffc800;
  transition: height 0.25s linear;
}

.input-box:hover span,
.input-box:focus-within span {
  height: 100%;
}

.input-box span.left {
  left: 0;
  right: auto;
  transition-delay: 0.5s;
}

.input-box span.right {
  right: 0;
  transition-delay: 0.75s;
}


.content-area {
  display: flex;
  flex-direction: row;
  gap: 15px;

}

@media (max-width: 900px) {
  .content-area {
    flex-direction: column;
    gap: 1.5rem;
  }

  .posta,
  .content-area .map {
    flex: 1 1 100%;
    width: 100%;
  }
}

#vrc2 {
  display: none;
  width: 100%;
  height: 30vh;
}

@media (max-width: 900px) {

  #logo-title {
    font-size: 15px;
  }

  header {
    height: 15vh;
  }

  .logo-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .introduce-div {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .icon {
    position: absolute;
    width: 7vw;
    height: 7vw;
    max-width: 40px;
    flex-shrink: 0;
    right: 5vw;
  }

  #logo {
    width: 60px;
    height: 60px;
  }

  .logo.scrolled {
    width: 60px;
    height: 60px;
  }

  .large-title {
    font-size: 45px;
    font-weight: 600;
  }

  .small-title {
    font-size: 15px;
  }

  .first-row {
    margin-top: 30vh;
  }

  .padding {
    padding: 5vw;
  }

  .gear-canvas-wrapper {
    max-width: 95vw;
    max-height: 100vh;
    margin: 0;
  }

  .row.about {
    flex-wrap: wrap;
    margin: 0;
  }

  .slider {
    gap: 0;
  }

  .text-div .text {
    max-width: 90vw;
    font-size: 1rem;
  }

  .text span {
    color: white;
    max-width: 100%;
    line-height: 80%;
  }

  header.navbar {
    padding: 0 5px;
  }

  #structure {
    text-align: center;
  }

  #photo1 {
    position: static;
    width: 70vw;
    margin-left: 10vw;
    border-radius: 10px;
  }

  #photo2 {
    position: static;
    width: 70vw;
    margin-left: 10vw;
    border-radius: 10px;
    margin-top: 10vh;
  }

  .card {
    width: 250px;
    height: auto;
    perspective: 1000px;
    display: inline-block;
    margin: 10px;
    vertical-align: center;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .posta {
    margin: 0;
  }

  .posta#submit {
    width: 100%;
  }

  .input-box input,
  .input-box textarea {
    width: 100%;
  }

  .message {
    resize: none !important;
  }


  .gears-div {
    margin-top: 3vh;
    margin-left: 0;
  }

  article {
    display: flex;
    margin: 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }

  #who-title {
    margin-top: 10vh;
  }

  #compet-title {
    display: none;
  }

  #vrc {
    display: none;
  }

  #vrc2 {
    display: block;
    background-image: url("/photos/photo6.png");
    background-size: cover;
    background-position: center;
  }

  .row.about {
    flex-direction: column;
  }

  #photo {
    order: 1;
  }

  .extra {
    order: 3;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.icon {
  cursor: pointer;
}

/* Ana Menü */
.dropdown-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  top: 100%;
  left: 0;
  background: transparent;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  color: #eee;
  background: #292929;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
  border-radius: 5px;
}

.dropdown-menu a:hover {
  background: #383838;
}

/* Submenu */
.has-submenu {
  position: relative;
}

.has-submenu > a::after {
  float: right;
}

.submenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  top: 0;
  left: 100%;
  background: transparent;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding-left: 5px;
}

.submenu.show {
  opacity: 1;
  visibility: visible;
}

.submenu a {
  color: #eee;
  padding: 10px 14px;
  display: block;
}

.share {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353c4a;
  border: .125rem solid #f3f3f3;
  box-shadow: 0 0 8px 0 rgba(50, 50, 50, 0.15);
  border-radius: 75%;
  transition: all 0.3s ease;
}

.share:hover {
  transform: scale(1.1);
}

/* Renkli hover efektleri */
.github:hover { 
  color: #4183c4; 
  box-shadow: 0 0 15px #4183c4; 
}

.linkedin:hover { 
  color: #0077b5; /* LinkedIn mavi tonu */ 
  box-shadow: 0 0 15px #0077b5; 
}

.facebook:hover { 
  color: #3b5998; 
  box-shadow: 0 0 15px #3b5998; 
}

.x:hover { 
  color: #1da1f2; /* Twitter mavisi (X) */ 
  box-shadow: 0 0 15px #1da1f2; 
}


.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  justify-content: center; /* yatay ortalama */
  align-items: center;     /* dikey ortalama */

  background: #f0f0f0;    /* isteğe bağlı arka plan */
  border-radius: 50%;      /* isteğe bağlı yuvarlak köşe */
}

.social-icons .icon {
  width: 80%;   /* ikon kutusunun %60’ı kadar olsun */
  height: 80%;
  object-fit: cover; /* kutuyu bozmadan sığdır */
  display: block;
}
.social-icons img{
  transition: transform 0.3s ease
}
.social-icons img:hover{
  transform: translateX(2px);
}

