/* ===== Temel Ayarlar ===== */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
    z-index: 1;
}



/* Context ile içerik ortalama */
.context {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;  /* üstten başlasın */
    text-align: center;
    padding: 20px 0;
    width: 100%;
   
    z-index: 10;
}

/* Sosyal medya ikonları */
.socialmedias {
    margin: 0;
}

.socialmediass {
    margin: 0;
}

/* Swiper */
.swiper {
    width: 200vw;
    height: 300px;
    margin: 0;
    margin-left: -50vw;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.swiper-slide span {
    display: none;
    color: black;
}

.swiper-slide-active span {
    display: block;
}

.swiper-slide img {
    width: 330px;
}

/* Yazı ve butonlar */
.icon-text {
    font-family: "PoppinsRegular", sans-serif;
    font-style: normal;
    font-weight: 300;
    line-height: initial;
}

.name {
    font-family: 'PoppinsBlack', sans-serif;
    font-size: 38px;
    margin-bottom: -3px;
    opacity: 0;
    animation: fadeInName 1.2s ease forwards;
    text-shadow: 0 0 5px rgba(0,0,0,0.15);
}

@keyframes fadeInName {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.name:hover {
    transform: scale(1.03);
    transition: .3s ease;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
}

.name-description {
    font-family: 'PoppinsLight', sans-serif;
    font-style: italic;
    opacity: 0;
    animation: fadeInDesc 1.4s ease forwards;
    animation-delay: .2s;
}

@keyframes fadeInDesc {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}


.logo {
    width: 20vw;   /* ekran genişliğine göre ayar */
    max-width: 350px; 
    margin-bottom: 10px;
}
.logo img {
    width: 100%;
    height: auto;
}

.avatar {
    width: 15vw;
    max-width: 200px;
    aspect-ratio: 1 / 1;   /* kare oran */
    object-fit: cover;      /* görüntüyü taşırmadan kırpar */
    border-radius: 15px;    
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-bottom: 10px; 

}

.avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
}
.buttons-wrapper {
    display: flex;
    justify-content: space-around;
    z-index: 600;
}

.buttons-wrapper button {
    z-index: 601;
}

/* ===== Masaüstü Footer (Videolar ve Kataloglar) ===== */
.desktop-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    z-index: 500;
    pointer-events: auto;
}

.desktop-footer .footer-videos,
.desktop-footer .footer-brochures {
    display: flex;
    gap: 15px;
}

.desktop-footer img {
    width: 60px;
    height: auto;
}

/* ===== Mobil Düzenlemeler ===== */
@media (max-width: 768px) {

    body, html {
        overflow: auto;
    }

    .hamburger { display: flex; }
    .socialmedias-wrapper > div,
    .socialmediass-wrapper { display: none; }

    .logo { width: 220px; }
     .avatar {
        width: 150px;
        border-radius: 15px;
    }
    .name { font-size: 28px; }

    .buttons-wrapper {
        flex-direction: column;
        gap: 10px;
        width: 90%;
        margin: 0 auto;
    }

    .buttons-wrapper button {
        width: 100%;
        font-size: 16px;
    }

    .swiper {
        width: 100%;
        margin-left: 0;
        height: 240px;
    }

    .swiper-slide img { width: 90px; }

    .desktop-footer { display: none; }


}

