/* Genel */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #633cc0, #f3f72d, #33069c);
}






/* ------------------------------------------------------------------------------------ */

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  width: 97%;
  background: #000; /* siyah */
  color: #fff;
  border-radius: 30px;
  align-items: center;
  text-align: center;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left .logo {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.nav-left .site-desc {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  align-items: center;
   background: linear-gradient(135deg, #5a25d4, #a8edea);
   width: 220px;
  height: 30px;
  border-radius: 50px;
}


.nav-left .site-desc:hover {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  align-items: center;
   background: rgb(18, 18, 143);
   color: yellow;
   width: 220px;
  height: 30px;
  border-radius: 50px;
}



.nav-right a {
  background: linear-gradient(135deg, #5a25d4, #a8edea);
  color: white;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-right a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
   background: rgb(18, 18, 143);
   color: yellow;
}






/* Hamburger buton */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #5a25d4;
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
  }

  .nav-right a {
    display: block;
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right.active {
    display: flex;
  }
}



/* ------------------------------------------------------------------------------------ */














header {
  text-align: center;
  padding: 10px;
  background: #4c0388;
  color: white;
  font-size: 10px;
  max-height: 30px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  justify-content: center;
  background: linear-gradient(135deg, #633cc0, #f3f72d, #33069c);
}
/* Slayt Alanı */
.slayt {
  flex: 2;
  min-width: 320px;
  max-width: 700px;
border-radius: 50px;
  border: 10px solid #4c0388;
  background-color: linear-gradient(135deg, #633cc0, #f3f72d, #33069c);
}

.slayt img {
  width: 100%;
  height: auto;
  border-radius: 50px;
}

/* Akordeon Alanı */
.aciklama {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  background: rgb(9, 162, 201);
  padding: 15px;
  border-radius: 50px;
  border: 10px solid #4c0388;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


p3 {
    font-size: 14px;
  color: white;
 
  font-weight: bold;
  background-color: #131212;
}


p4 {
    font-size: 14px;
  color: white;
 
  font-weight: bold;

}



p4:hover {
    font-size: 24px;
  color: yellow;
 
  font-weight: bold;

}

.aciklama h2 {
  margin-bottom: 10px;
  color: rgb(44, 8, 129);
  text-align: center;
}

.aciklama p {
  font-size: 14px;
  color: rgb(44, 8, 129);
  
  font-weight: bold;
 
}

/* Akordeon */
.accordion {
  margin-top: 10px;
  border: 5px solid #721a1a;
  border-radius: 16px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: yellow;
  background: #4c0388;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #ca2424;
}

.accordion-body {
  display: none;
  padding: 12px;
  background: yellow;
  font-size: 14px;
  color: rgb(44, 8, 129);
  font-weight: bold;
}

.accordion-body ul {
  margin: 0;
  padding-left: 20px;
}


.button-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;

    align-items: center;
    justify-items: center;
}



.shape {
    display: flex;
    justify-content: center;
    align-items: center;
  
    width: 120px;
    height: 60px;
    background: #9c3cdb;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: all 1.5s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.shape:hover {
    transform: scale(1.5) rotate(360deg);
    background: #38025c;
}

.rectangle { 
  width: 120px; 
  height: 60px; 
  border-radius: 15px; 
  justify-content: center;
  align-items: center;
  padding-left: 50px;
}


/* Mobil uyum */
@media(max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .slayt, .aciklama {
    max-width: 100%;
  }
}
