﻿/* tema.css */



    :root{--accent:#cc3300;--muted:#666}
    body{font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; line-height:1.6;margin:0;color:#222;background: #fff}
    .container{max-width:1100px;margin:32px auto;padding:0 18px;}
    header{background:#fff;padding:18px 0;border-bottom:1px solid #e6e6e6}
    .logo{font-weight:700;font-size:18px}
    nav ul{list-style:none;display:flex;gap:14px;padding:0;margin:0}
    nav a{color:var(--muted);text-decoration:none;font-size:14px}

    .layout{display:flex;gap:28px;margin-top:28px}
    .grey-kutu {flex:1;background-color: #F0F0EF; padding:28px; border-radius:6px; box-shadow:0 6px 20px rgba(0,0,0,0.03); border: 1px solid var(--card-border);}
    aside{width:300px}

    h1{font-size:26px; line-height:40px}
    h2{font-size:25px;}
    
    p {font-size:16px; line-height:1.5; color:#333}
    .meta{color:var(--muted); font-size:13px; margin-bottom:18px}
    .course-intro{display:flex; gap:22px}
    .course-intro img{width:260px; height:auto; border-radius:6px; object-fit:cover}
    .course-desc{flex:1}

    /* custom check list */
    ul.check{list-style:none; 
    padding-left:0
    }
    
    ul.check li{
      display:flex;
      align-items:flex-start;
      gap:8px;

      line-height:1.5;
      font-size:15.5px;
    }
    ul.check svg{
      flex-shrink:0;
      width:12px;
      height:12px;
      fill: currentColor;
      margin-top:3px;
      
    }

    .card{background:#fff;padding:18px;border-radius:8px;border:1px solid #eee}
    .price{font-size:22px;font-weight:700;color:var(--accent)}
    .btn{display:inline-block;padding:10px 16px;border-radius:6px;text-decoration:none;background:var(--accent);color:#fff}

    footer{margin-top:36px;padding:22px 0;color:#888;text-align:center;font-size:14px}

    @media (max-width:900px){
      .layout{flex-direction:column;}
      aside{width:100%}
      .course-intro{flex-direction:column;}
      .course-intro img{width:100%}
    }
    
    .player {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  color: white;
  margin-top: 10px;
background: linear-gradient(135deg, #ca4480, #6a1b4d); /* 💜 Pembe-mor geçiş */}
}

.cover {
  width: 80%;
  margin: 0 auto 15px;
  border-radius: 12px;
  display: block;
}

.title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}

.artist {
  font-size: 14px;
  margin-bottom: 20px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}

.controls button {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s;
}

.controls button:hover {
  transform: scale(1.2);
  color: #ff4c29;
}

.progress {
  width: 100%;
  accent-color: #ff4c29;
}

.time {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ddd;
  margin-top: 5px;
}

.course-info-card {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 460px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.course-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.course-info-card h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  border-bottom: 3px solid #d6451c;
  padding-bottom: 8px;
}

.course-info-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #222;
}

.course-info-card table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.course-info-card th,
.course-info-card td {
  text-align: left;
  padding: 10px 0;
  font-size: 15px;
}

.course-info-card th {
  color: #666;
  font-weight: 500;
  width: 42%;
}

.course-info-card td {
  color: #222;
  font-weight: 600;
  border-bottom: 1px dashed #e2e2e2;
}

.check {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.check li {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.5;
}

.check svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: #d6451c;
  margin-right: 10px;
  margin-top: 4px;
}

.btn {
  display: inline-block;
  background: #d6451c;
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;a
  box-shadow: 0 4px 12px rgba(214, 69, 28, 0.3);
}

.btn:hover {
  background: #b93815;
  box-shadow: 0 6px 16px rgba(214, 69, 28, 0.4);
}

    .iframe-container {
        position: relative;
        width: 100%;
        max-width: 800px;
         margin-top:20px;
        margin-bottom:40px;
        padding: 20px;
        background: #000;
        border-radius: 18px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.6),
                    inset 0 0 15px rgba(255,255,255,0.2),
                    inset 0 0 30px rgba(255,255,255,0.1);
        overflow: hidden;
        box-sizing: border-box;
        text-align: center; /* img ortalama */
    }

    .iframe-video,
    .video-thumb {
        max-width: 100%;
        max-height: 450px;
        width: 100%;
        height: auto;
        border-radius: 12px;
        border: none;
        object-fit: contain;
        cursor: pointer;
        display: inline-block;
    }

    .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(255, 0, 0, 0.6);
        color: white;
        font-size: 25px;
        border-radius: 50%;
        padding: 15px 20px;
        cursor: pointer;
    }

    .video-info {
        margin-top: 15px;
        text-align: center;
        color: white;
    }

    .video-title {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .video-channel {
        font-size: 14px;
        color: #ccc;
    }


        :root {
            --primary: #0c4a6e;
            --secondary: #9f1239;
            --accent: #0369a1;
            --light: #f8fafc;
            --dark: #0f172a;
            --gray: #64748b;
        }
        


        /* Stats Section */
        .stats {
            background: var(--primary);
            color: white;
            padding: 50px 0;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            text-align: center;
        }
        
        .stat-item {
            padding: 15px;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            color: white;
        }
        
        .stat-text {
            font-size: 15px;
            color: #e0f2fe;
        }
        
        
        /* CTA Section */
        .cta-section {
            background: var(--secondary);
            color: white;
            text-align: center;
            padding: 50px 0;
        }
        
        .cta-section h2 {
            font-size: 26px;
            margin-bottom: 15px;
            padding: 0 15px;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 25px;
            font-size: 16px;
            color: #fbcfe8;
            padding: 0 15px;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: var(--secondary);
            padding: 14px 30px;
            border-radius: 4px;
            font-weight: 700;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .cta-button:hover {
            background: #f8fafc;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

    
    .tv-container {
  width: 90%;            /* div genişliği */
  max-width: 600px;       /* maksimum genişlik */
  aspect-ratio: 9/16;     /* 16:9 oran */
  margin: 0 auto;         /* ortalamak için */
  display:block;
  overflow: hidden;       /* dışarı taşmaları engeller */
  border: 10px solid #333;/* TV çerçeve efekti */
  border-radius: 15px;    /* köşeleri yuvarla */
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  position: relative;
}

.tv-container video {
  width: 100%;
  height: auto;
  object-fit: cover;      /* video div’e tam uyar */
  display: block;
}

.carousel-container {
  width: 85%;
  border: 10px solid #8e7842;
  margin: auto;
  display: block;
  overflow: hidden;
  position: relative;
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.ov-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.ov-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: transform .3s, background .3s;
}
.carousel-dots button.active {
  background: #8e7842;
  transform: scale(1.2);
}

.big-title {
  font-size: 25px;
  line-height: 1.3;
  color: #111;
  font-weight: 700;
  margin: 30px 0;
}

.big-title .highlight {
  background: #ca4480;
  color: #fff;
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

.big-title em {
  font-style: normal;   /* italik olmasın */
  color: #fffbe6;       /* ! işareti hafif farklı tonda */
}


.stats-container .stat-item:nth-child(3) .stat-number {
    font-size: 2rem; /* istediğin boyutu buradan ayarlayabilirsin */
}


table {
  width: 100%;
  border-collapse: collapse; /* hücreler birleşik, kesintisiz çizgi için */
  text-align: left;
}

th, td {
  padding: 12px 15px;
  text-align: left;
}

th {
  white-space: nowrap;  /* yazı tek satır kalsın */
  width: 1%;            /* th sadece yazı kadar yer kaplasın */
  font-weight: normal;  /* th düz yazı */
  color: #3D3D3D;
}

td {
  color: #3D3D3D !important;
  width: auto;          
  font-weight: bold;    /* td kalın yazı */
}

tr {
  border-bottom: 1px solid #CCCCCC; /* satır altına tek çizgi */
}

tr:last-child {
  border-bottom: none; /* son satır alt çizgisi opsiyonel */
}


/* Mobil ve Tablet için (0px - 1024px arası) */
@media (max-width: 1024px) {
  .desktop-only {
    display: none;
  }

  /* Eğer istersen mobil ve tablet farkı ayrı ayrı da ayarlanabilir */
  .mobile-only {
    display: block; /* Mobilde ve tablette görünür */
  }
}

/* Masaüstü için (1025px ve üzeri) */
@media (min-width: 1025px) {
  .mobile-only {
    display: none;
  }

  .desktop-layout .phone-wrapper {
    margin: 0 auto;
  }

  .desktop-only {
    display: block;
  }
}

  .box {
  border-radius: 15px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  width: 350px;
  padding: 25px;
  transition: transform 0.3s ease;
  margin: auto;
  display: block;
  background:white;
}


    .box-header {
      display: flex;
      align-items: center;
      background-color: #eaf1fb;
      padding: 12px;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .box-header i {
      font-size: 22px;
      color: #0056b3;
      margin-right: 10px;
    }

    .box-header h2 {
      font-weight: bold;
      font-size: 18px;
      color: #003366;
    }

    .box p {
      font-size: 16px;
      color: #333;
      line-height: 1.5;
      margin-top:20px;
      font-family:Arial, Helvetica, sans-serif;
    }


  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .navX {
    background: #333;
    color: #fff;
    position: relative;
    z-index: 9999;
  }

  .navX-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 15px;
    min-height: 60px;
  }

  .navX-menu {
    list-style: none;
    display: none;
  }

  .navX-menu li {
    position: relative;
  }

  .navX-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    line-height: 1.4;
    transition: background 0.3s;
  }

  .navX-menu li a:hover {
    background: #e9204f;
    color: white;
    border-radius: 6px;
  }

  .navX-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 25px;
    cursor: pointer;
  }

  .navX-toggle span {
    background: #fff;
    height: 3px;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
  }

  .navX-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navX-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .navX-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .navX-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 15px;
    background: #000;
    padding: 20px 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
    width: 220px;
    z-index: 10000;
  }

  .navX-menu.open li {
    margin-bottom: 10px;
  }

  .dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    border-radius: 6px;
    padding: 5px 10px;
    z-index: 9999;
    min-width: 160px;
  }

  .dropdown a {
    padding: 8px 10px;
    font-size: 15px;
    color: #ddd;
    white-space: nowrap;
  }

  .dropdown a:hover {
    background: #e9204f;
    border-radius: 5px;
    color: #fff;
  }

  .navX-menu li.open .dropdown {
    display: flex;
  }

  .mobile-icon {
    display: inline;
  }

  /* MASAÜSTÜ STİLİ */
  @media (min-width: 1025px) {
    .navX-toggle {
      display: none;
    }

    .navX-menu {
      display: flex !important;
      flex-direction: row;
      position: static;
      background: none;
      box-shadow: none;
      padding: 0;
    }

    .navX-menu li {
      margin-left: 10px;
    }

    .navX-menu li a {
      font-size: 15px;
      padding: 8px 10px;
    }

    .navX-menu li:hover .dropdown,
    .navX-menu li:focus-within .dropdown {
      display: flex;
    }

    .navX-menu.open {
      position: static;
    }

    .mobile-icon {
      display: none !important;
    }
  }

  /* MOBİL STİLİ */
  @media (max-width: 1024px) {
    .navX-menu li a {
      font-size: 14px !important;
      line-height: 1.2 !important;
    }

    .dropdown {
      position: static;
      display: none;
      background: #111;
      margin-top: 5px;
      padding: 5px 10px;
      border-radius: 6px;
    }

    .navX-menu li.open .dropdown {
      display: flex;
    }

    .dropdown a {
      font-size: 13px !important;
      line-height: 1.2 !important;
    }
  }

  .navX-logo {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  
	        /* Linkler */
        .links-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            font-family:Arial, Helvetica, sans-serif;
        }

        .method-link {
            display: flex;
            align-items: center;
            text-align: left;
            padding: 1.5rem;
            background:  #0099FF;
            border-radius: 10px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            font-size:17px;
            line-height:25px;
        }

        .method-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1a237e, #0d47a1);
            transition: 0.4s;
            z-index: 0;
        }

        .method-link:hover::before {
            left: 0;
        }

        .method-link:hover {
            color: white;
            transform: translateY(-5px);
            border-color: #1a237e;
        }

        .method-link i {
            font-size: 1.8rem;
            margin-right: 0.8rem;
            z-index: 1;
            transition: 0.3s;
            margin-left:-5px;
            
        }

        .method-link span {
            z-index: 1;
            transition: 0.3s;
        }

        .method-link:hover i,
        .method-link:hover span {
            color: white;
        }

        /* İkon Renkleri */
        .link-blue { color: white; }
        .link-orange { color: white; }
        .link-green { color: white; }

    .slider-kapsayici {
      background-color: #E6E6E6;
      border-radius: 10px;
      max-width: 800px;
      margin: 40px auto;
      overflow: hidden;
      position: relative;
      font-size: 17px;
      line-height:25px;
      font-family:Arial, Helvetica, sans-serif;
    }
    

    .slider-icerik {
      display: flex;
      width: 100%;
      transition: transform 0.7s ease-in-out;
    }

    .slider-oge {
      min-width: 100%;
      box-sizing: border-box;
      text-align: center;
      padding: 45px 15px 20px;
      color: black;
    }

    .slider-oge img {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid white;
      margin-top: 15px;
    }

    .slider-yazi {
      margin-top: 15px;
      font-weight: normal;
    }

    .slider-kontrol {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 15px;
    }

    .slider-kontrol button {
      background: none;
      border: none;
      font-size: 30px;
      cursor: pointer;
      color: black;
      padding: 5px;
      transition: color 0.3s;
    }

    .slider-kontrol button:hover {
      color: #333;
    }

    
    /* === POPUP === */
    .popup {
      display: none;
      position: fixed;
      left: 0; top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      max-width: 500px;
      width: 90%;
      max-height: 80vh;
      overflow-y: auto;
      position: relative;
      font-family: Arial, sans-serif;
    }

    .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 20px;
      cursor: pointer;
      font-weight: bold;
    }

    .close2 {
      background-color: transparent;
      border: none;
      color: #007BFF;
      font-size: 18px;
      font-weight: bold;
      margin-top: 10px;
      cursor: pointer;
      transition: color 0.2s ease;
      float: right;
    }

    .close2:hover {
      color: #0056b3;
    }

    .popup-content p {
      font-size: 0.95rem;
      color: #444;
      line-height: 1.6;
    }

    .bold-text {
      font-size: 1.2rem;
      font-weight: bold;
      color: #222;
    }

    form label {
      display: block;
      font-weight: 600;
      color: #333;
      margin-top: 15px;
      margin-bottom: 5px;
    }

    form input[type=text],
    form input[type=email],
    form input[type=tel],
    form textarea {
      width: 100%;
      padding: 10px 12px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
      box-sizing: border-box;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    form input:focus,
    form textarea:focus {
      border-color: #007BFF;
      outline: none;
      box-shadow: 0 0 5px rgba(0,123,255,0.5);
    }

    form input[type=radio] {
      margin-right: 8px;
      margin-left: 10px;
      transform: scale(1.2);
    }

    #taskInput {
      margin-top: 10px;
    }

    form button[type=submit] {
      background-color: #007BFF;
      color: #fff;
      padding: 12px 25px;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
      margin-top: 20px;
    }

    form button[type=submit]:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    img.demo-button {
      cursor: pointer;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.5);
      padding: 20px;
      width: 100%;
      margin-top: 35px;
      margin-bottom: 35px;
      background-color: white;
    }
    
    
