.gozlemevi-bg {
    background-image: url("../images/gozlemevi/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100vw;
    height: 100vh; /* Ekran yüksekliğine göre esnek ayarla */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: white;
    text-align: start;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}
  .gozlemevi-baslik h2 {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 800;
    font-size: 70px;
    color: #3b3b3b;
    white-space: nowrap;
  }
  .gozlemevi-baslik h2 span {
    color: #c3d940;
  }
  .gozlemevi_content p:first-child {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    color: #292929;
  }
  .gozlemevi_content p:nth-of-type(2) {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #292929;
  }

  
  .gozlemevi-tabs-list-tab {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  
  .gozlemevi-tab-button {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 400;
    padding: 10px 50px;
    border: none;
    border-radius: 20px;
    background: #5f338a;
    color: #c3d940;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
  }
  
  .gozlemevi-tab-button.active {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 600;
    background: #c3d940;
    color: #3c3c3c;
  }
  .gozlemevi-tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .gozlemevi-tab-content.active {
    display: block;
    opacity: 1;
  }
  .main .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  
  .main .card {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
    color: #333333;
    border-radius: 2px;
  }
  
  .main .card .card-image {
    background: #ffffff;
    display: block;
    padding-top: 70%;
    position: relative;
    width: 100%;
  }
  
  .main .card .card-image img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .gozlemevi-container-circle {
    width: 550px;
    height: 550px;
    border: 2px dashed #707070;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }
  

  .inner-circle {
    width: 280px;
    height: 280px;
    background-color: #c3d940;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @keyframes rotateBorder {
    from {
      transform: translate(0%) rotate(0deg);
    }
    to {
      transform: translate(0%) rotate(360deg);
    }
  }
  
  @keyframes zoomInEffect {
    from {
      transform: scale(0.4);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .world-visual {
    position: absolute;
    z-index: 1;
    animation: zoomInEffect 2.5s ease-in-out; /* Adjust duration and timing function */
    width: 100%;
    height: 100%;
    animation: rotateBorder 15s linear infinite;

  }

  /* Media Content and Hotspots */
  /* .kaplumbaga-media-content {
    position: relative;
  } */
  .kaplumbaga-hotspot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px #7a599a;
    z-index: 1;
  }
  
  /* Hotspot temel stili */
  .kaplumbaga-hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #c3d940;
    border: 7px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
    animation: pulseEffect 2s infinite; /* Pulse animation */

  }
  
  /* Tooltip pozisyonu ve stili */
  .kaplumbaga-tooltip {
    display: none;
    position: absolute;
    background-color: rgba(195, 217, 64, 0.9);
    color: #7a599a;
    padding: 10px;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    left: calc(100% + -30px);
    top: 50%;
    transform: translateY(0%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0 0 10px #7a599a;
    z-index: 2;
}
  /* Tooltip içerik düzeni */
  .kaplumbaga-tooltip h3 {
    font-family: "VistolSans-Black", sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 3;
  }
  
  .kaplumbaga-tooltip p {
    font-family: "VistolSans-Regular", sans-serif;
    font-size: 13px;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 0 15px;
  }
  
  /* Aktif durum */
  .kaplumbaga-hotspot.active .kaplumbaga-tooltip {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
  }
  
  
  /* Hotspot pozisyonları */
  .kaplumbaga-hotspot-1 {
    top: 25%;
    left: 92%;
  }
  .kaplumbaga-hotspot-2 {
    top: -2%;
    left: 40%;
  }
  .kaplumbaga-hotspot-3 {
    top: 35%;
    left: -1%;
  }
  
  @keyframes pulseEffect {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  .solar-system {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}

.system-title {
    text-align: center;
}

.system-title h2 {
    font-size: 48px;
}

.system-title p {
   font-family: "VistolSans-Regular", sans-serif;
    font-weight: 400;
    font-size: 18px;
    max-width: 1200px;
    color: #292929;
    margin: 0 auto;
}

.system-container {
    position: relative;
    width: 100%;
    height: 1080px;
    margin:  0;
    /* perspective: 1000px; */
}

.orbit-system {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
}

.orbit {
    position: absolute;
    border: 1px dashed rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(15deg);
    pointer-events: none;
}

.orbit-1 { 
    width: 280px; height: 280px; 
    animation: rotate 8.8s linear infinite; /* Merkür */
}

.orbit-2 { 
    width: 380px; height: 380px; 
    animation: rotate 12.5s linear infinite; /* Venüs */
}

.orbit-3 { 
    width: 480px; height: 480px;
    animation: rotate 15.5s linear infinite; /* Dünya */
}

.orbit-4 { 
    width: 580px; height: 580px;
    animation: rotate 20.7s linear infinite; /* Mars */
}

.orbit-5 { 
    width: 680px; height: 680px;
    animation: rotate 35.2s linear infinite; /* Jüpiter */
}

.orbit-6 { 
    width: 780px; height: 780px; 
    animation: rotate 45.2s linear infinite; /* Satürn */
}

.orbit-7 { 
    width: 880px; height: 880px; 
    animation: rotate 55.4s linear infinite; /* Uranüs */
}

.orbit-8 { 
    width: 980px; height: 980px;
    animation: rotate 65.4s linear infinite; /* Neptün */
}
.sun-orbit {
    width: 180px;
    height: 180px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.sun {
    width: 180px;
    height: 180px;
    position: relative;
    cursor: pointer;
}

.sun img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    pointer-events: auto;
}

.planet {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
    z-index: 1000;
    pointer-events: auto;
}

.planet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.planet.active, 
.sun.active {
    animation: pulse 1.5s infinite;
}

.mercury { 
    width: 45px; 
    height: 45px; 
    top: 0; 
    left: calc(50% - 22.5px); 
}

.venus { 
    width: 70px; 
    height: 70px; 
    top: 0; 
    left: calc(50% - 35px); 
}

.earth { 
    width: 75px; 
    height: 75px; 
    top: 0; 
    left: calc(50% - 37.5px); 
}

.mars { 
    width: 60px; 
    height: 60px; 
    top: 0; 
    left: calc(50% - 30px); 
}

.jupiter { 
    width: 140px; 
    height: 140px; 
    top: 0; 
    left: calc(50% - 70px); 
}

.saturn { 
    width: 130px; 
    height: 130px; 
    top: 0; 
    left: calc(50% - 65px); 
}

.uranus { 
    width: 110px; 
    height: 110px; 
    top: 0; 
    left: calc(50% - 55px); 
}

.neptune { 
    width: 105px; 
    height: 105px; 
    top: 0; 
    left: calc(50% - 52.5px); 
}

.spaceship {
    position: absolute;
    width: 150px;
    height: 45px;
    top: 50%;
    left: 50%;
    transform-origin: 400px 0;
    animation: spaceshipOrbit 60s linear infinite;
    z-index: 1001;
}

.spaceship img {
    width: auto;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    animation: adjustSpaceshipRotation 60s linear infinite;
}

.slider-container {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 60px; /* Yanlarda butonlar için boşluk */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

.slide.active {
    display: block;
}

.slide h3 {
    font-family: "VistolSans-Black", sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #3b3b3b;
    margin-bottom: 20px;
}

.slide p {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #3b3b3b;
    max-width: 600px;
    margin: 0 auto;
}

.nav-button {
    position: absolute;
    top: 32px; /* Başlık ile aynı hizada */
    background-color: #c3d940;
    border: 8px solid #fff !important;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 20;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button.prev {
    left: 200px; /* Başlığa daha yakın */
}

.nav-button.next {
    right: 200px; /* Başlığa daha yakın */
}

.nav-button:hover {
    background-color: #7a599a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
}

.nav-button i {
    display: flex;
    justify-content: center;
    align-items: center;
}


@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotateX(15deg) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotateX(15deg) rotate(360deg);
    }
}

@keyframes spaceshipOrbit {
    from {
        transform: rotate(0deg) translate(400px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translate(400px) rotate(-360deg);
    }
}

@keyframes adjustSpaceshipRotation {
    0% {
        transform: rotate(90deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(270deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(450deg);
    }
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.2); 
    }
    100% { 
        transform: scale(1); 
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}



