/* 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: 14px;
}

p {
  background-color: #4c0388;
  color: white;
  text-align: center;
  font-size: large;
  font-weight: bold;
}
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  justify-content: center;
}

/* Slayt Alanı */
.slayt {
  flex: 2;
  min-width: 320px;
  max-width: 700px;
  border-radius: 50px;
  border: 10px solid #4c0388;
}

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

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

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

.info {
  font-size: 14px;
  color: rgb(107, 28, 28);
  font-weight: bold;
  background-color: #131212;
  padding: 4px;
  border-radius: 6px;
}

.creator {
  font-size: 34px;
  color: white;
  font-weight: bold;
  margin-top: 10px;
}

.creator:hover {
  font-size: 18px;
  color: yellow;
}



/* Mesaj Alanı */
.mesaj-alani {
  margin: 30px auto;
  max-width: 800px;
   background: linear-gradient(135deg, #633cc0, #f3f72d, #33069c);
  border: 10px solid #4c0388;
  border-radius: 50px;
  padding: 20px;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mesaj-alani form {
  display: flex;
  border-radius: 30px;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  background: linear-gradient(135deg, #633cc0, #f3f72d, #33069c);;
}

.mesaj-alani input, 
.mesaj-alani textarea {
  padding: 10px;
  border-radius: 40px;
  border: none;
  width: 97%;
  height: 40px;
   background: rgb(219, 220, 231);
   color: rgb(124, 19, 19);
   font-weight: bold;
   font-size: large;
}

.mesaj-alani button {
  padding: 10px;
  background: #4c0388;
  color: yellow;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.mesaj-alani button:hover {
  background: #ca2424;
}




label {
  font-weight: bold;
  color: rgb(109, 9, 9);
  margin-bottom: 5px;
}
option {
  font-weight: bolder;
  color: rgb(109, 9, 9);
  background: yellow;
  font-size: large;
}

.feedback {
  max-width: 700px;
  margin: 30px auto;
  padding: 20px;
  background: #eeacac;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feedback h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.feedback-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 15px;
  padding: 12px;
  margin-bottom: 12px;
  background: #a476ee;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s ease;
}

.feedback-item:hover {
  transform: scale(1.02);
  background: #f1faff;
}

.feedback-name {
  font-weight: bold;
  color: rgb(97, 24, 24);
  background-color: #eeacac;
  max-width: 200px;
border-radius: 12px;
}
.feedback-name:hover {
  font-weight: bold;
  color: rgb(97, 24, 24);
  background-color: white;
  max-width: 200px;
}
.feedback-message {
  font-style: italic;
  color: #210796;
  border-radius: 12px;
  background-color: #eeacac;

}
.feedback-message:hover {
  font-style: italic;
  color: #210796;
  border-radius: 12px;
  background-color: white;

}
/* Ortalanmış Buton */
.button-center {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.shape {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 60px;
  background: #9c3cdb;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 1.5s ease;
  border-radius: 15px;
}

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

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

  .slayt, .aciklama {
    max-width: 100%;
  }
}
/* Sayfalama */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 15px;
}

.pagination button {
  padding: 8px 15px;
  background: #4c0388;
  color: yellow;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.pagination button:hover {
  background: #ca2424;
}

#pageInfo {
  font-weight: bold;
  color: #333;
}
