/* =====================
   1. FONTLAR
===================== */
@font-face{
    font-family: "Heavy";
    src: url("fonts/Lato-Heavy.woff2") format("woff2");
}
@font-face{
    font-family: "Medium";
    src: url("fonts/Lato-Medium.woff2") format("woff2");
}
@font-face{
    font-family: "Thin";
    src: url("fonts/Lato-Thin.woff2") format("woff2");
}

/* =====================
   2. RESET & BASE
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Medium", sans-serif;
    background: #f5f5f5;
    color: #101820;
}

/* =====================
   3. GLOBAL SPACING SYSTEM
===================== */
:root {
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 60px;
}

/* =====================
   4. TYPOGRAPHY
===================== */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}
h2 {
    font-size: 28px;
    margin-bottom: var(--space-md);
}
h3 {
    font-size: 17px;
    margin-bottom: var(--space-sm);
}
p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-sm);
    color: #555;
}
h1, h2, h3, h4 {
    text-transform: uppercase;
}
/* =====================
   5. CONTAINER & HEADER
===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header & Container */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.8);
    padding: var(--space-sm) 0;
}
.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

/* Masaüstü Navigasyon */
.nav ul {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}
.nav ul li {
    margin-left: 25px;
}
.nav ul li a {
    text-decoration: none;
    color: #101820;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}
.nav ul li a:hover {
    color: #c41e1e;
}

/* Mobil Menü Kontrolleri */
#nav-check {
    display: none;
}
.nav-toggler {
    display: none;
    cursor: pointer;
}

/* =====================
   6. HERO
===================== */
.hero{
    
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/hintenground-header.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    width: 100%;
}
.hero-content h1 {
    font-family: "Medium", sans-serif;
    font-size: 2rem;
    color: #f5f5f5;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 600px;
}
.hero-content p {
    font-family: "Medium", sans-serif;
    color: #f5f5f5;
    opacity: 0.9;
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 20px;
    line-height: 1.6;
}
.hero-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    text-decoration: none;
    font-family: "Heavy", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.hero-btn:hover {
    background-color: #f5f5f5;
    color: #101820;
}

/* =====================
   7. DİĞER ANA STİLLER
===================== */
section {
    padding: var(--space-xxl) 0;
}

.intro-text {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
    color: #333;
    
    
}

.intro-text h2 {
    text-transform: uppercase;
    font-size: 1.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 40px;
    
}

.intro-img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 51px;
    margin-bottom: 21px;
}
.intro-img img:nth-child(1),
.intro-img img:nth-child(3) {
    width: 25%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.intro-img img:nth-child(2) {
    width: 40%;
    height: auto;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transform: scale(1.1);
}
.intro-grid {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 0 auto;
}
.intro-item {
    flex: 1;
    padding: 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}
.intro-item img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}
.intro-item h3 {
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: #101820;
}
.intro-item p {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.5;
}

/* Section 3 */
.section3-container {
    display: flex;
    align-items: flex-end;
    width: 100%;
    min-height: 500px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), url('images/section3bild.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    justify-content: center;
}
.section3 {
    max-width: 1200px;
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    color: #f5f5f5;
}
.section3 h1 {
    font-size: 2.5rem;
    font-family: "Heavy", sans-serif;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.section3 .hero-btn {
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
    background: transparent;
}
.section3 .hero-btn:hover {
    background-color: #f5f5f5;
    color: #000000;
}

/* sec4 - Cross Section */
#sec4 {
    padding: 50px 20px;
    text-align: center;
}
.cross-text {
    max-width: 1200px;
    margin: 0 auto;
}
.cross-text h2 {
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #333;
}
.cross-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}
.cross-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: stretch;
    gap: 40px;
    width: 100%;
}
.cross-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}
.cross-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px 0;
}
.cross-item h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}
.cross-item p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: #666;
    font-size: 1.25rem;
    
    
}
.cross-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #e60000;
    text-decoration: none;
    border: 1px solid #e60000;
    font-size: 12px;
    transition: 0.3s ease;
}
.cross-btn:hover {
    background-color: #e60000;
    color: #f5f5f5;
}

/* sec5 - Slider */
.section5-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.main-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
.main-slide.active {
    opacity: 1;
    z-index: 2;
}
.slide-overlay {
    width: 1200px; height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15%;
}

.slide-text-content {
    max-width: 600px;
    color: #f5f5f5;
}
.slide-text-content h1 {
    font-size: 2.5rem;
    font-family: "Heavy", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    
}
.slide-text-content p{
    color: #f5f5f5;
    font-size: 1.25rem;
}
.slider-nav-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}
.s-dot {
    width: 12px; height: 12px;
    border: 2px solid #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.s-dot.active {
    background-color: #e60000;
    border-color: #e60000;
}
.main-slide {
    transform: scale(1.05);
}
.main-slide.active {
    transform: scale(1);
}
.web-btn {
    display: inline-block;
    padding: 10px 20px;
    color: #f5f5f5;
    text-decoration: none;
    border: 1px solid #f5f5f5;
    font-size: 12px;
    transition: 0.3s ease;
}
.web-btn:hover {
    border: 1px solid #e60000;
    background-color: #e60000;
    color: #f5f5f5;
}

/* sec6 - Logos */
.section6-logos {
    padding: 60px 0;
    background: #f5f5f5;
    overflow: hidden;
}
.section6-logos .section-header {
    text-align: center;
    margin: 0 auto 40px;
    color: #101820;
}

.section6-logos .section-header h2 {
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #101820;
}
.section6-logos .section-header p {
    font-family: "Medium", sans-serif;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 40px auto;
    
    
    
}
.section6-logos .divider {
    width: 80px;
    overflow: hidden;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
}
.logo-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}
.logo-track img {
    width: 250px;
    margin: 0 40px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: 0.3s;
}
.logo-track img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.logo-slider:hover .logo-track,
.logo-track:hover {
    animation-play-state: paused;
}
.logo-item img[src*="cheesy.png"],
.logo-item img[src*="Lern.png"] {
    width: 180px;
}
@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* sec7 */
.section7-daimon {
    background-image: url(images/hintengroundSec7.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    color: #f5f5f5;
    text-align: center;
    overflow: hidden;
}
.daimon-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}
.daimon-content h2 {
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.daimon-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f5f5f5;
    opacity: 0.9;
}
.daimon-content h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    
}

.daimon-png {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}
.daimon-png:hover {
    transform: scale(1.03) translateY(-10px);
}

/* sec8 */
.section8 {
    padding: 60px 20px;
}
.section8 > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}
.flyer-text {
    flex: 1;
    min-width: 300px;
}
.flyer-text h2 {
    text-transform: uppercase;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.flyer-text h3 {
    
    margin-top: 25px;
    color: #333;
    font-size: 17px;
    font-weight: 600;
}
.flyer-text p {
    margin-top: 10px;
    line-height: 1.6;
    color: #666;
    
    
}
.section8 img {
    flex: 1;
    max-width: 600px;
    width: 100%;
    height: auto;
}
/* sec9 */

.section9 {
    padding: 80px 0;
    text-align: center;
    
}

.section9 h2 {
    font-family: "Medium";
    font-size: 28px;
    letter-spacing: 2px;
    color: #101820;
}

.section9 p {
    font-family: "Medium", sans-serif;
    font-size: 1.25rem;
    color: #666;
    line-height: 1.6;
    max-width: 1200px;
    margin: 40px auto;
}

/* 3D iframe styling */
.section9 iframe {
    width: 100%;
    max-width: 1200px;           /* Büyük ekranlar için sınır */
    aspect-ratio: 4 / 3;         /* Oranı korur */
    border: 0;                    /* Kenarlık yok */
    
    box-shadow: 0 8px 25px rgba(0,0,0,0.15); /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover efekti */
.section9 iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
/* =====================
   SECTION 10 - İLETİŞİM FORMU
===================== */
.section10 {
    padding: 80px 0;
    background: #2A2A2A;           /* Koyu arka plan (görseldeki gibi) */
    color: #f5f5f5;
}

.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.contact-form-wrapper p{
    
    font-size: 1.25rem;
    
}

.contact-form-wrapper h2 {
    font-family: "Heavy", sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    color: #fff;
}

.form-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #cfd2d3;
    margin-bottom: var(--space-xl);
    margin-left: auto;
    margin-right: auto;
}

/* Form Stil */
.contact-form {
    text-align: left;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #cfd2d3;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: 1px solid #555;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c41e1e;
    background: rgba(255,255,255,0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Form Footer */
.form-footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.checkbox-label {
    font-size: 0.95rem;
    color: #cfd2d3;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
   flex-wrap: wrap;
}

.checkbox-label a {
    color: #c41e1e;
    text-decoration: underline;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #c41e1e;
   flex-shrink: 0;
}

/* Button */
.contact-form .hero-btn {
    padding: 14px 50px;
    font-size: 14px;
    letter-spacing: 2px;
    background: transparent;
    border: 2px solid #f5f5f5;
    color: #f5f5f5;
}

.contact-form .hero-btn:hover {
    background: #f5f5f5;
    color: #101820;
}

.success-message{
    display: none; 
    margin-top: 30px; 
    padding: 25px; 
    color: #fff; 
    text-align: center;
}

.success-message p{
     
    color: #f5f5f5; 
    
}


/* Footer Genel Stil */
.main-footer {
    background-color: #1a1a1a; /* Koyu gri/siyah arka plan */
    color: #f5f5f5;
    padding: 80px 0 40px;
    font-family: "Medium", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap; /* Mobil için kırılma */
}

/* Sol Taraf: Logo ve Slogan */
.footer-brand {
    flex: 1.5;
    min-width: 250px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-tagline p {
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
    opacity: 0.9;
}

.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.footer-socials img {
    width: 24px;
    filter: invert(1); /* İkonlar siyahsa beyaza çevirir */
    transition: 0.3s;
}

.footer-socials a:hover img {
    opacity: 0.6;
}

/* Başlıklar ve Listeler */
.footer-links h3, .footer-contact h3 {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-family: "Heavy", sans-serif;
    text-transform: uppercase;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a, .footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ccc;
}

/* İletişim İkonları Sabitleme */
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* En Alt Hukuki Kısım */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 50px 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.6;
}

.legal-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}








/* =====================
   DATENSCHUTZ SAYFASI STİLLERİ
===================== */

.container-daten {
    max-width: 800px; /* Okunabilirlik için metni daraltıyoruz */
    margin: 120px auto 60px; /* Header sabit olduğu için üstten boşluk verdik */
    padding: 0 20px;
    line-height: 1.8; /* Satır aralığını açtık */
    color: #333;
    font-family: "Medium", sans-serif;
}

.container-daten h1 {
    font-family: "Heavy", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    border-bottom: 2px solid #101820;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.container-daten h2 {
    font-family: "Heavy", sans-serif;
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #101820;
}

.container-daten p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.container-daten ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.container-daten ul li {
    margin-bottom: 8px;
}

.container-daten strong {
    color: #222222;
}

.container-daten em {
    display: block;
    margin-top: 50px;
    font-size: 0.9rem;
    color: #888;
}

/* =====================
   8. TABLET + MOBİL RESPONSIVE (TEK YERDE)
===================== */
@media (max-width: 1024px) {
    .hero {
        align-items: flex-end;
    }
    .hero-content {
        text-align: center;
        padding: 40px 20px;
        
    }
    .hero-content h1,
    .hero-content p {
        color: #f5f5f5;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn{
        border: 2px solid #f5f5f5;
        color: #f5f5f5;
    }
    .section3-container {
        
        padding-bottom: 40px;
    }
    .cross-container {
        grid-template-columns: repeat(2, 1fr);   /* Tablet: 2 sütun */
        gap: 30px;
    }
    
    .cross-container {
        grid-template-columns: 1fr 1fr;
        
    }
    .cross-item h4 {
    margin-top: 25px;
    }
    .section6-logos {
        padding: 50px 20px;
    }
    .slide-overlay {
    width: 600px; 
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15%;
    }

    .section8 > div {
        
        flex-direction: column;     /* Mobil ve tablette alt alta */
        gap: 40px;
        text-align: center;
    }
    
    .flyer-text h2 {
        font-size: 32px;
    }
    
    .section10 {
        padding: 80px 20px;
    }
    
    .contact-form-wrapper {
        max-width: 600px;
    }
    
    
}

@media (max-width: 768px) {
    /* Header - Mobil Menü */
    .nav-toggler {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
    }
    .nav-toggler span,
    .nav-toggler span::before,
    .nav-toggler span::after {
        display: block;
        background: #333;
        height: 2px;
        width: 100%;
        border-radius: 3px;
        position: absolute;
        transition: 0.3s ease-in-out;
    }
    .nav-toggler span::before { content: ""; top: -8px; }
    .nav-toggler span::after { content: ""; top: 8px; }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #f5f5f5;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .nav ul {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .nav ul li {
        margin: 15px 0;
    }
    #nav-check:checked ~ .nav {
        max-height: 400px;
    }
    #nav-check:checked ~ .nav-toggler span {
        background: transparent;
    }
    #nav-check:checked ~ .nav-toggler span::before {
        transform: rotate(45deg);
        top: 0;
    }
    #nav-check:checked ~ .nav-toggler span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    /* Hero Mobil */
    .hero {
        flex-direction: column;
        height: auto;
        padding-bottom: 0;
    }
    .hero::after {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
    }
    .hero-content {
        padding: 50px 20px;
        text-align: center;
        order: 1;
    }
    .hero-content h1,
    .hero-content p {
        color: #101820;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-btn{
        border: 2px solid #101820;
        color: #101820;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    /* Intro Section */
    .intro-img {
        flex-direction: column;
        gap: 15px;
    }
    .intro-img img:nth-child(1),
    .intro-img img:nth-child(2),
    .intro-img img:nth-child(3) {
        width: 100%;
        transform: scale(1);
    }
    .intro-grid {
        flex-direction: column;
        align-items: center;
    }
    .intro-item {
        max-width: 400px;
        padding: 20px 0;
    }

    /* Section 3 */
    .section3-container {
        background-attachment: scroll;
        padding-bottom: 40px;
    }

    /* Cross Section */
    .cross-container {
        grid-template-columns: 1fr;
        
        gap: 30px;
    }
    .cross-item h4 {
    margin-top: 20px;
    }
    
    .cross-item {
        width: 100%;
        margin-bottom: 40px;
        
    }
    
    /* Section 5 */
    .section5-slider {
        height: 70vh;
    }

    .slide-overlay {
        width: 100%;
        padding: 20px 40px;
        justify-content: center;
        text-align: left;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 30%, rgba(0,0,0,0.2) 100%);
    }

    .slide-text-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .slide-text-content p {
        color: #f5f5f5;
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 0 20px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    /* Section 6 */
    
    .section6-logos {
        padding: 50px 20px;
    }

    .section6-logos .section-header p {
        margin: 30px auto;
        
    }
    
    .logo-track {
    display: flex;
    align-items: center;      /* dikey ortala */
    justify-content: center;  /* yatay ortala */
    }
    
    .logo-track img {
        width: 220px;
        margin: 0 25px;
    }

    .logo-track {
        animation-duration: 30s; /* biraz yavaşlat */
    }
    
    /* Section 7 */
    .section7-daimon {
        padding: 60px 0;
    }
    .daimon-content h2 {
        font-size: 1.8rem;
    }
    .daimon-png {
        max-width: 100%;
    }

    /* Section 8 */
    .section8 {
        padding: 40px 20px;
    }
    
    .section8 > div {
        flex-direction: column;   
        gap: 30px;
        text-align: center;       
    }
    
    .flyer-text {
        min-width: 100%;           
        order: 1;                
    }
    
    .flyer-text h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .flyer-text h3 {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .section8 img {
        order: 2;                  
        max-width: 100%;
        margin: 0 auto;             /* Ortala */
    }
    
     /* Section 8 */
    .section9 {
        padding: var(--space-md) 15px;
    }

    .section9 h2 {
        font-size: 1.6rem;
    }

    .section9 p {
        font-size: 0.95rem;
       font-size: 1.15rem; 
        line-height: 1.7;
    }

    .section9 iframe {
        aspect-ratio: 16 / 9;
        max-width: 100%;
        border-radius: 8px;
    }
    
    .section10 {
        padding: 60px 20px;
    }
    
    .form-footer {
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-form .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .container-daten {
        margin-top: 100px;
    }
    .container-daten h1 {
        font-size: 1.8rem;
    }
}


    
    
    
