/* ========== Temel Gövde ========== */
body {
	margin: 0;
    font-family: 'Roboto', sans-serif;
	font-weight: 300;
    line-height: 1.7;
    background-color: #fdfdfd;
    color: #222;
  }
 

/* HIZLI YAMA — bu blok en son yüklendiği için baskın */
@media (max-width: 768px) {
  .vt-header-right { display: none !important; }   /* eski nav'ı gizle */
  .vt-burger { display: inline-block !important; } /* burger'i göster */
}
@media (min-width: 769px) {
  .vt-header-right {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    margin-top: 0 !important;
  }
}
.vt-burger {
  position: relative; background: transparent; border: 1px solid #333;
  border-radius: 10px; width: 42px; height: 42px; display:none; cursor:pointer;
}
.vt-burger-line, .vt-burger-line::before, .vt-burger-line::after {
  content:""; position:absolute; left:50%; width:22px; height:2px; background:#fff;
  transform:translateX(-50%); transition:transform .25s ease, opacity .2s ease;
}
.vt-burger-line{ top:50%; transform:translate(-50%,-50%);}
.vt-burger-line::before{ top:-7px;}
.vt-burger-line::after{ top:7px;}
.vt-burger.is-open .vt-burger-line{ transform:translate(-50%,-50%) rotate(45deg);}
.vt-burger.is-open .vt-burger-line::before{ top:0; transform:rotate(-90deg);}
.vt-burger.is-open .vt-burger-line::after{ opacity:0;}
.vt-nav-panel{ display:none; }
.vt-nav-panel.open{
  display:block; position:fixed; inset:0; background:rgba(0,0,0,.55); z-index:9999;
}
.vt-nav-sheet{
  position:absolute; right:0; top:0; width:min(82vw,360px); height:100%;
  background:#111; border-left:1px solid #333; transform:translateX(100%);
  transition:transform .25s ease; padding:18px; display:flex; flex-direction:column; gap:12px;
}
.vt-nav-panel.open .vt-nav-sheet{ transform:translateX(0); }
.vt-nav-sheet a{ color:#fff !important; font-weight:700; text-decoration:none; }
.vt-nav-sheet a:hover{ color:#ffcc00 !important; }

 
  
/*BIOGRAPHY SECTION*/
  .bio-section {
    max-width: 900px;
    margin: auto;
	padding-left:20px;
	padding-right:20px;
  }
   .bio-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 40px;
  }
  .bio-section h2 {
	text-align: center;
	font-size: 2rem;
	margin-top: 40px;
	font-weight: bold;
  }
  .bio-section .paragraph {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
  }
  .bio-section .biography_body {
    display: block;
    margin: 0.5em 0 1.5em;
  }

.bio-section .lead.text-center strong {
}



/* ========== HOME / IMAGE BOXES ========== */

.quote-box {
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-style:italic;
}

.image-box {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  color: #000;
}

.image-box img {
  width: 70%;
  height: 70%;
  border-radius: 12px;
}

/* ========== LATEST UPLOADS ========== */
.latest-uploads {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
font-family: 'Roboto', sans-serif;
}

.latest-uploads h3 {
  text-align: center;
font-family: 'Roboto', sans-serif;
  font-size: 2em;
  margin-bottom: 20px;
  color: #333;
}

.latest-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.upload-box {
  flex: 1 1 300px;
  max-width: 450px;
  background: #fefefe;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}

.upload-box:hover {
  transform: scale(1.01);
}

.upload-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.img-link {
  position: relative;
  display: block;
  text-decoration: none;
}

.hover-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.9em;
  opacity: 0;
  transition: opacity 0.3s;
}

.img-link:hover .hover-overlay {
  opacity: 1;
}

.upload-title {
  text-align: center;
  margin-top: 12px;
  font-size: 1.1em;
}

.upload-title a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

.upload-title a:hover {
  color: #444;
}

.caption {
  text-align: center;
  margin-top: 10px;
  font-size: 1em;
  font-weight: 500;
}

.caption a {
  text-decoration: none;
  color: #222;
  transition: color 0.2s;
}

.caption a:hover {
  color: #555;
}


/* ========== SEARCH BAR ========== */
    .search-bar {
      max-width: 500px;
      margin: 20px auto;
      padding: 10px;
    }

    .search-bar input[type="text"] {
      width: 70%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .search-bar button {
      padding: 10px 20px;
      border: none;
      background: #222;
      color: white;
      border-radius: 6px;
      font-weight: bold;
    }


.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 16px; /* İki tık aralık */
}

.pagination a {
  padding: 8px 14px;
  background-color: #333;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.pagination a.active {
  background-color: #555;
}

.pagination a:hover {
  background-color: #444;
}


/*CARDS*/
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.01);
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 240px;
}

.card h2 {
    margin: 16px;
    font-size: 1.1rem;
}

.card p {
    margin: 0 16px 16px;
    color: #555;
}

.card .button {
    margin: 0 16px 16px;
    display: inline-block;
    padding: 10px 16px;
    background: #000;
    color: white;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
}

/*GALLERY-1*/
.gallery-container-1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.gallery-item-1 {
  width: calc(33.33% - 20px); /* 3'lü kolon */
  max-width: 300px;
  height: 300px; /* Sabit yükseklik */
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item-1:hover img {
  transform: scale(1.05);
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .gallery-item-1 {
    width: 100%;
    max-width: none;
  }
}

/*GALLERY-2*/
.gallery-container-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.gallery-item-2 {
  width: calc(23.33% - 20px); /* 3'lü kolon */
  max-width: 300px;
  height: 300px; /* Sabit yükseklik */
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item-2:hover img {
  transform: scale(1.05);
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .gallery-item-2 {
    width: 100%;
    max-width: none;
  }
}

/*GALLERY-3*/
.gallery-container-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.gallery-item-3 {
  width: calc(16.66% - 20px); /* 3'lü kolon */
  max-width: 150px;
  height: 300px; /* Sabit yükseklik */
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-item-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item-3:hover img {
  transform: scale(1.05);
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .gallery-item-3 {
    width: 100%;
    max-width: none;
  }
}


/*VIDEO CSS SECTION*/
.videos-container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

.no-videos-message {
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
  padding: 10px;
}

    .videos-title {
      text-align: center;
      font-family: 'Roboto', sans-serif;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }

    .videos-grid {
		margin:auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .video-box {
      background: #fff;
      padding: 15px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .video-box video {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .video-title {
      text-align: center;
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1rem;
    }

   	/*GALLERY CSS SECTION*/
	    .gallery-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery-grid img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s;
    }

    .gallery-grid img:hover {
      transform: scale(1.03);
    }

    .gallery-title {
      text-align: center;
      font-family: 'Roboto', sans-serif;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }
	
	/*PDFS CSS SECTION*/
	.pdfs-container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .pdfs-title {
      text-align: center;
      font-family: 'Roboto', sans-serif;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }

    .pdfs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

.no-pdfs-message {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
}

    .pdf-box {
      background: #fefefe;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 8px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .pdf-box .title {
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }

    .pdf-box a {
      text-decoration: none;
      background: #222;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.2s;
    }

    .pdf-box a:hover {
      background: #444;
    }

   
	/*MUSIC CSS SECTION*/
	.music-container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .music-title {
      text-align: center;
      font-family: 'Roboto', sans-serif;
      font-size: 2rem;
      margin-bottom: 30px;
      color: #333;
    }

    .music-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

.no-music-message {
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
  padding: 10px;
}

    .music-box {
      background: #fefefe;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .music-box audio {
      width: 100%;
    }

   	/*CONTACT CSS SECTION*/
	   .contact-container {
      max-width: 600px;
      margin: 50px auto;
      padding: 20px;
      background: #fefefe;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .contact-container h2 {
      font-family: 'Roboto', sans-serif;
      text-align: center;
      margin-bottom: 30px;
    }

    .contact-container input,
    .contact-container textarea {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 1em;
    }

    .contact-container button {
      width: 100%;
      padding: 10px;
      background-color: #222;
      color: white;
      border: none;
      border-radius: 6px;
      font-weight: bold;
    }

    .contact-container button:hover {
      background-color: #444;
    }

    .success-message {
      text-align: center;
      background-color: #e0ffe0;
      color: #006600;
      padding: 15px;
      border-radius: 6px;
      margin-bottom: 20px;
    }
	

