/* ==========================================================
   GLOBAL RESET & BASE
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body, * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    cursor: url("img/gclef.svg") 14 14, auto;
}

a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
select,
label,
.video-fullscreen-btn,
.video-sound-btn,
.video-playpause-btn {
    cursor: pointer !important;
}



/* ==========================================================
   FONTS
========================================================== */

@font-face {
    font-family: 'Inter18Bold';
    src: url('/fonts/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter18BoldItalic';
    src: url('/fonts/Inter_18pt-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Inter18Regular';
    src: url('/fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}



/* ==========================================================
   BODY BASE
========================================================== */

body {
    background: #EFE7DF;
    font-family: 'Inter18Bold', sans-serif;
}



/* ==========================================================
   TOAST COMPONENT
========================================================== */

#copyToast {
    position: fixed;
    top: 80px;
    right: 30px;
    background: rgba(0,0,0,0.90);
    color: #fff;
    padding: 20px 26px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 5000;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#copyToast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#copyToast:hover { opacity: 1; }

#copyToast.hide {
    opacity: 0;
    transform: translateY(-10px);
}

.toast-number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    font-family: 'Inter18Bold', sans-serif;
}

.toast-text {
    font-size: 18px;
    font-weight: 500;
    color: #ddd;
    line-height: 1.4;
    font-family: 'Inter18Regular', sans-serif;
}



/* ==========================================================
   LOCATION / GOOGLE MAPS
========================================================== */

.location-section {
    text-align: center;
    padding: 20px 20px;
    margin-top: 40px;
}

.location-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #3A3A3A;
}

.location-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
    color: #3A3A3A;
}

.map-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}



/* ==========================================================
   CONTACT INFO
========================================================== */

.contact-info {
    text-align: center;
    color: #3A3A3A;
    margin: 40px 0 80px;
    padding: 0 20px;
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-line {
    font-size: 18px;
    margin: 8px 0;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-link,
.contact-link-2 {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
}

.contact-link-2 {
    display: block;
    padding-left: 100px;
}

.contact-link:hover { opacity: 0.7; }



/* ==========================================================
   CONTACT RESPONSIVE
========================================================== */

@media (max-width: 600px) {
    .contact-title { font-size: 22px; }
    .contact-line  { font-size: 16px; }
}



/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    background: #4F5A45;
    padding: 60px 20px;
    margin-top: 80px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    text-align: left;
}

.footer-title {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.footer-desc {
    font-size: 13px;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.6;
}
.footer-desc a{
    color: inherit;
    text-decoration: none;
    pointer-events: auto;
}

.footer-copy {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    align-items: center;
    height: auto;


}

/* ikon daireleri */
.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-social img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    display: block;
    filter: brightness(1.1) contrast(1.15);
    cursor: pointer;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}




/* ==========================================================
   FOOTER RESPONSIVE
========================================================== */

@media (max-width: 992px) {
    .site-footer        { padding: 50px 20px; margin-top: 70px; }
    .footer-title       { font-size: 22px; margin-bottom: 8px; }
    .footer-desc        { font-size: 12px; max-width: 450px; }
    .footer-copy        { margin-top: 30px; font-size: 13px; }
    .footer-social      { gap: 12px; margin-top: 16px; }
    .footer-social a    { width: 32px;height: 32px; }
    .footer-social img  { width: 32px;height: 32px; }

}

@media (max-width: 768px) {
    .site-footer        { padding: 45px 20px; margin-top: 60px; }
    .footer-title       { font-size: 20px; }
    .footer-desc        { font-size: 12px; max-width: 400px; line-height: 1.5; }
    .footer-copy        { margin-top: 25px; font-size: 12px; }
    .footer-social      { gap: 10px; margin-top: 16px; }
    .footer-social a    { width: 28px;height: 28px; }
    .footer-social img  { width: 28px;height: 28px; }

}

@media (max-width: 576px) {
    .site-footer        { padding: 40px 18px; margin-top: 50px; }
    .footer-content     { text-align: center; }
    .footer-title       { font-size: 18px; }
    .footer-desc        { font-size: 11px; max-width: 100%; margin: 0 auto; }
    .footer-copy        { margin-top: 20px; font-size: 11px; }
    .footer-social      { justify-content: center; gap: 14px; margin-top: 16px; }
    .footer-social a    { width: 28px;height: 28px; }
    .footer-social img  { width: 28px;height: 28px; }

}


/* ==========================================================
   FLOATING NOTES ANIMATION
========================================================== */

.note {
    position: absolute;
    pointer-events: none;
    font-size: 25px;
    opacity: 1;
    animation: noteFade 1.2s ease-out forwards;
    color: rgba(0, 0, 0, 0.747);
    z-index: -1;
}

@keyframes noteFade {
    0%   { opacity: 0.9; transform: translateY(0) scale(1); }
    100% { opacity: 0;   transform: translateY(-20px) scale(0.6); }
}



/* ==========================================================
   SCROLL REVEAL
========================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* Okunabilir metinlerde gerçek metin imleci */
p,
span,
h1, h2, h3, h4, h5, h6,
li,
.contact-line,
.about-text,
.hero-subtext,
.kurslar-subtitle,
.prep-subtitle,
.footer-desc {
    cursor: text;
}


/* Gerçekten tıklanabilir olanlar */
a, button, .btn, .hero-button, .trial-btn, .modal-option, .kurs-card {
    cursor: pointer;
}
.seo-h1,
.seo-h2{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.seo-footer{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.reveal { opacity:1 !important; transform:none !important; }
.reveal.active { opacity:1 !important; transform:none !important; }


.logo-link,
.logo-link img,
.header-logo {
  cursor: pointer;
}
.logo-link img{
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-link:hover img{
  transform: scale(1.06);
  filter: brightness(1.05);
}
.about-cta-links{
  margin-top:14px;
}

.back-home-btn{
  display:inline-block;
  font-size:14px;
  color:#555;
  text-decoration:none;
  transition:.2s;
}

.back-home-btn:hover{
  color:#d98700;
  text-decoration:underline;
}
.related-courses {
  margin-top: 60px;
  padding: 24px;
  background:#f6f6f6;
  border-radius:12px;
  text-align:center;
}
.related-links a {
  margin:6px 10px;
  display:inline-block;
  font-size:14px;
  opacity:.75;
}
.related-courses{
  margin:70px auto 30px;
  padding:28px 18px 22px;
  text-align:center;
  max-width:1100px;
}

.related-courses h2{
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:22px;
  margin-bottom:14px;
  color:#222;
}

.related-links a{
  font-family:'Poppins',sans-serif;
  font-size:15px;
  font-weight:600;
  margin:6px 10px;
  display:inline-block;
  text-decoration:none;
  color:#333;
  position:relative;
  transition:.25s ease;
}

/* altın çizgi hover efekti */
.related-links a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:2px;
  background:#f2a900;
  transition:.3s ease;
}

.related-links a:hover{
  color:#f2a900;
}
.related-links a:hover:after{
  width:100%;
}
.site-header.scrolled {
  background:#4F5A45;
  box-shadow:0 4px 15px rgba(0,0,0,.15);
}
.site-header.scrolled a,
.site-header.scrolled .logo-text {
  color:#fff;
}
/* Mobil menü linkleri header renk kurallarından bağımsız olmalı */
.mobile-menu a,
.mobile-menu span {
  color:#2b2b2b !important;
}

/* Hover */
.mobile-menu a:hover {
  color:#d98700 !important;
}

/* Header scrolled olsa bile mobil menü etkilenmesin */
.site-header.scrolled .mobile-menu a {
  color:#2b2b2b !important;
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.related-note {
    margin-top: 15px;
}