/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    font-size: 14px; 
}

.header-section {
    background-image: url('../../images/slide1.jpg'); /* Arka plan resmi */
    background-size: cover; /* Resmi tamamen kaplar */
    background-position: center; /* Resmi ortalar */
    background-repeat: no-repeat; /* Resmin tekrar etmesini engeller */
    background-color: #333338; /* Yedek arka plan rengi */
    padding: 20px 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
   
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    margin: 20px auto;
    width: 85%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2), inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.header-section .logo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
}

.header-section .logo img {
    width: 120px;
    height: auto;
    border-radius: 50%;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ffae00;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {
  
    /* Header */
    .header-section {
        position: relative;
        padding: 60px 0;
    }

    .header {
        background-color: transparent; /* Beyaz arka planı kaldırıyoruz */
        box-shadow: none; /* Gölgeyi de kaldırıyoruz */
        padding: 0; /* Padding'i sıfırlıyoruz */
        margin: 0; /* Margin'i sıfırlıyoruz */
        border-radius: 0; /* Border-radius'u sıfırlıyoruz */
    }
    
    .header-section .logo {
        position: absolute;
        left: 50%;
        top: 45px; /* Logonun konteynırdan dışarı taşması için yukarı çıkartıyoruz */
        transform: translateX(-50%);
        z-index: 2; /* Logoyu beyaz konteynırın üstüne çıkartıyoruz */
    }

    .header-section .logo img {
        width: 130px; /* Logonun boyutunu ayarlıyoruz */
        height: auto;
        border-radius: 50%; /* Yuvarlak formu koruyoruz */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Hafif bir gölge ekleyerek logoyu belirgin yapıyoruz */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
    }
}


/* General Footer Styles */
/* Footer Genel Ayarları */
.footer {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #123456, #091e42);
    color: #ffffff;
    padding: 20px 0;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    position: relative;
    
    
}

/* Footer container */
.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* Öğeleri yatayda aralarında boşluk bırakır */
    align-items: center;
    width: 100%; /* Footer genişliğini tamamen kaplar */
    max-width: 1100px; /* Maksimum genişlik ayarlanır */
    margin: 0 auto; /* Ortalamak için margin ayarı */
}

/* Footer logo */
.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.footer-logo img {
    width: 110px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

/* Footer Links */
.footer-links,
.footer-contact {
    flex: 1;
    text-align: center; /* Metinlerin ortalanması */
}

/* Footer başlıkları */
.footer-links h3,
.footer-contact h3 {
    margin-bottom: 5px;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffab00;
}

/* Footer linkler */
.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin: 4px 0;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: #f0f4f8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #ffab00;
}

/* Footer alt kısmı */
.footer-bottom {
    padding-top: 20px;
    font-size: 12px;
    text-align: center;
    width: 100%;
}

/* Mobil görünüm ayarları */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Mobilde dikey hizalama */
    }
    .footer-links, .footer-contact {
        text-align: center; /* Mobilde ortalanmış metin */
    }
}


/* WhatsApp ve Mail Sabit İkonları */
.whatsapp-icon,
.mail-icon {
    position: fixed;
    width: 70px; /* İkon boyutunu dengede tuttum */
    height: 70px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    animation: pulse 1.5s infinite;
    right: 20px;
  
}

.whatsapp-icon {
    bottom: 40px; /* Alttan daha fazla boşluk bırak */
}

.mail-icon {
    bottom: 120px; /* Mail ikonu WhatsApp'ın üstünde ve daha yukarıda */
}

.whatsapp-icon img,
.mail-icon img {
    width: 100%; /* Beyaz çemberi daha da daraltmak için genişliği %96 yaptım */
    height: auto;
    display: block;
    margin: 0%; /* Etrafındaki boşluğu daha ince yapmak için */
    border-radius: 50%;
    
}

.whatsapp-icon:hover,
.mail-icon:hover {
    transform: scale(1.1); /* Hover'da ikonlar hafif büyür */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Animasyon: İkonlar dikkat çekici bir şekilde büyüyüp küçülür */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15); /* Büyüme */
    }
    100% {
        transform: scale(1); /* Küçülme */
    }
}

/* Mobil görünüm için medya sorgusu */
@media screen and (max-width: 768px) {
    .whatsapp-icon,
    .mail-icon {
        width: 55px;
        height: 55px;
    }
    .mail-icon {
        bottom: 100px;
    }
    .whatsapp-icon {
        bottom: 30px; /* Mobilde de alttan biraz boşluk bırak */
    }
}





/* Mobil İçin Düzenlemeler */
@media screen and (max-width: 768px) {

    /* Hamburger Menu */
    .hamburger {
        position: absolute;
        right: 60px; /* Hamburger menüyü sağa daha yakın bir konuma taşır */
        top: 50%;
        transform: translateY(-50%); /* Ortalamak için translate kullanılır */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 35px;
        height: 30px;
        cursor: pointer;
        z-index: 200;
        transition: transform 0.3s ease; /* Hover ve tıklamada şık bir geçiş */
    }

    
    .hamburger .bar {
        width: 100%;
        height: 2px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
   /* Çarpı işareti için */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px); /* Çarpının birinci çubuğunu döndürüyoruz */
    background-color: #fff;
    width: 30px; /* Çubuk genişliği sabit */
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0; /* Orta çubuğu gizliyoruz */
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px); /* Çarpının üçüncü çubuğunu döndürüyoruz */
    background-color: #fff;
    width: 30px; /* Çubuk genişliği sabit */
}

    /* Sağdan Kaydırmalı Mobil Menü */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;  /* Menüyü başlangıçta ekranın solundan gizle */
        width: 50%; /* Menünün genişliğini 50% yaptım */
        height: 100vh;
        background-color: rgba(51, 51, 51, 0.9);  /* Arka plan %90 opak (biraz transparan) */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease, background-color 0.3s ease; /* Menüyü açarken geçiş efekti */
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2); /* Sol kenar için gölge */
        z-index: 150;
        text-align: left;
    }
    /* Menü aktif olduğunda transparan arka plan */
    .nav-links.active {
        left: 0;
        background-color: rgba(51, 51, 51, 0.9);  /* %90 opaklık ile transparan arka plan */
    }

/* Menüdeki linkler ve yazılar */
.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    color: #ffffff;  /* Yazılar beyaz */
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fcd00c;  /* Menüdeki linklerin hover rengi */
}

/* Sayfa kaymasını engelle */
body.nav-open {
    overflow: hidden;
}
}


/* Overlay ayarları */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7); /* Arka plan hafif opak */
    z-index: 100; /* Hamburger menünün altına yerleştirilecek */
    display: none; /* Başlangıçta gizli */
}

/* Menü açık olduğunda overlay'i göster */
#overlay.active {
    display: block;
}


/* Tablet ekranlar için düzenlemeler (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* Header Section */
    .header-section {
        padding: 30px 0;  /* Daha fazla dikey boşluk ekleyelim */
    }

    .header {
        padding: 15px 30px;  /* Tablet ekranında header padding’i küçültelim */
        margin: 15px auto;    /* Margin ayarını optimize edelim */
        width: 90%;  /* Header genişliğini biraz arttıralım */
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2), inset 0px 0px 8px rgba(0, 0, 0, 0.4);
    }

    /* Logo */
    .header-section .logo {
        left: 5%;  /* Logo biraz daha sola yaklaştırıldı */
        top: 50%;  
        transform: translateY(-50%);
    }

    .header-section .logo img {
        width: 100px;  /* Logo boyutunu biraz küçültelim */
    }

    /* Navigasyon linkleri */
    .nav-links {
        justify-content: flex-end;  /* Linkleri sağa hizalayalım */
        flex: 1;  /* Logo ve linkler arasında esneklik sağlayalım */
    }

    .nav-links li {
        margin-left: 10px;  /* Linkler arasındaki boşluğu azaltalım */
    }

    .nav-links a {
        font-size: 14px;  /* Link metin boyutunu küçültelim */
        padding-bottom: 3px;  /* Alt kısımda daha az boşluk bırakalım */
    }

    .nav-links a::after {
        height: 2px;  /* Hover efekti için çizgiyi daha ince yapalım */
    }

    /* Hamburger menü */
    .hamburger {
        right: 50px;  /* Hamburger menünün konumunu sağa yaklaştıralım */
        top: 50%;  
        transform: translateY(-50%);
    }

    /* Overlay ayarları */
    #overlay {
        background-color: rgba(0, 0, 0, 0.5); /* Tablet ekranlarda overlay daha şeffaf olsun */
    }
}


















/* Book Overview */
.book-overview-section {
  padding: 50px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.book-overview-section h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.book-overview-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-overview {
  display: flex;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
  text-align: left;
}

.book-overview img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
}

.book-overview-details {
  flex: 1;
}

.book-overview-details h3 {
  margin-top: 0;
  font-size: 24px;
  color: #2c3e50;
}

.book-overview-details p {
  font-size: 16px;
  color: #7f8c8d;
  margin: 5px 0;
  line-height: 1.5;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #2980b9;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #1f6a98;
  transform: translateY(-1px);
}

.cta-button.price {
  background-color: #e9ecef;
  color: #2c3e50;
  cursor: default;
  pointer-events: none;
  text-transform: none;
  font-weight: 700;
  margin-right: 8px;
}

.order-now {
  background-color: #39b35e;
}

.order-now:hover {
  background-color: #2f8f4c;
}

/* Book Video */
.book-video-section {
  background-color: #fff;
  padding: 80px 0;
  text-align: center;
  color: #333;
}

.book-video-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: Arial, sans-serif;
}

.book-video-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  padding: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.book-video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.book-video-container iframe:hover {
  transform: scale(1.03);
}

.book-video-container::after {
  content: 'Watch the Book Introduction';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}

/* Book Pages Preview */
.book-review-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.book-review-section h2 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}

.book-pages-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.book-page img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.book-page img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; height: 100%;
  overflow: hidden;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1010;
  pointer-events: auto;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ffae00;
}

button {
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* Lightbox navigation */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.7);
  transform: scale(1.1);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Book Details */
.book-details-section {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
  color: #333;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.book-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 20px;
}

.book-details-section .book-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 8px;
}

.book-details-section .book-info strong {
  color: #2980b9;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 15px;
  border-bottom: 2px solid #2980b9;
  padding-bottom: 5px;
}

.feature { margin-bottom: 20px; }

.feature-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.feature p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.collaborative-effort { margin-top: 30px; text-align: center; }

.separator {
  border-top: 2px solid #2980b9;
  margin: 10px 0;
  padding-top: 10px;
}

.separator p {
  font-size: 1.05rem;
  color: #555;
  margin: 10px 0;
}

/* Book Team */
.book-team-section {
  padding: 60px 20px;
  background-color: #f0f0f0;
  text-align: center;
  margin: 0;
}

.book-team-section h2 {
  font-size: 32px;
  color: #2c3e50;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.team-member {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 2px solid #2c3e50;
}

.team-member h3 {
  margin-top: 10px;
  font-size: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.team-member p {
  font-size: 14px;
  color: #7f8c8d;
  margin: 10px 0;
  line-height: 1.6;
}

.book-team-section .author-highlight {
  background-color: #000000;
  color: #ffffff;
  border: none;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.book-team-section .author-highlight h3 { color: #ffffff; }
.book-team-section .author-highlight p { color: #dcdcdc; }
.book-team-section .author-highlight p strong { color: #f0f0f0; }

/* ===========================
   Single Reviewer (Updated)
   — site paleti ve kart stiliyle uyumlu
   =========================== */

.reviewer-single {
  background-color: #f9f9f9;   /* sayfanızdaki açık gri */
  padding: 60px 20px;
}

/* Başlık üstte ve ortada */
.reviewer-single .rev-head {
  width: 100%;
  text-align: center;
  margin: 0 0 32px 0;          /* başlık–kart arası boşluk */
}

.reviewer-single .rev-head h3 {
  font-size: 28px;
  color: #2c3e50;              /* sitenin başlık rengi */
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Kart kapsayıcı: tek kartı ortala */
.rev-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;     /* yatayda ortala */
  align-items: flex-start;
}

/* Kart */
.rev-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 15px;
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
  padding: 28px 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  outline: none;
}

.rev-card:hover,
.rev-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
  border-color: #2980b9;       /* mavi vurgu */
}

/* İnce üst çizgi/şerit (site paleti) */
.rev-card::before {
  content: "";
  position: absolute; left: 20px; right: 20px; top: 0;
  height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, #2980b9, #1abc9c);
  opacity: .14;
}

/* Avatar */
.rev-avatar {
  width: 96px; height: 96px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1abc9c;   /* yeşil vurgu */
}

.rev-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block; border-radius: 50%;
}

/* Metinler */
.rev-name {
  margin: 8px 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
}

.rev-role {
  margin: 0 0 12px;
  font-size: 14px;
  color: #7f8c8d;
}

.rev-quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

/* Responsive */
@media (max-width: 600px) {
  .reviewer-single { padding: 44px 16px; }
  .rev-card { max-width: 100%; padding: 24px 18px; }
}


/* Responsive */
@media (max-width: 768px) {
  .book-overview-container,
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .book-overview {
    flex-direction: column;
    text-align: center;
  }

  .book-overview img {
    margin: 0 0 16px 0;
  }

  .book-details-section {
    padding: 20px;
  }

  .book-title { font-size: 1.9rem; }
  .section-title { font-size: 1.4rem; }
  .feature-title { font-size: 1.1rem; }
  .feature p { font-size: 0.95rem; }
}
