/* Genel Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #FFE51F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    text-align: center;
    color: #111;
    padding: 20px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Giriş Bloğu */
section > div {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

/* Ana Fotoğraf */
.beImg {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    border: 4px solid white;
    padding: 5px;
}

/* Başlık ve Alt Başlık */
.baslik {
    font-size: 24px;
    margin: 8px 0;
}

.sub-head {
    font-size: 18px;
    margin-bottom: 15px;
}

/* Hakkında Metni */
.metin {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    width: 120%;
}

.social-icons a {
    text-decoration: none;
    color: #111;
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: white;
}

/* Video Kartları */
.link-card {
    position: relative;
    width: 100%;
    max-width: 320px;
    padding: 8px;
    color: black;
    font-weight: bold;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px auto;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.link-card a p {
    display: none;
}

/* YouTube İkonu Ortada */
.ytlogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 35px;
    color: white;
    z-index: 1;
}

/* Buton Kartları */
.button-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    width: 40%;
    margin: 20px auto;
}

.button-card {
    width: 45%;
}

/* Buton Linkleri */
.button-link {
    flex: 0 1 calc(50% - 10px);
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    color: #111;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.4s ease;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border: 2px solid #111;
    overflow-wrap: break-word;
    word-wrap: break-word;
    max-width: 240px;
    margin: 0 auto;
}

.button-link i {
    margin-right: 8px;
    font-size: 20px;
}

.button-link:hover {
    background-color: #111;
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0px 16px 24px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
}

/* Hover Animasyoonu */
@keyframes beeFly {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0);
    }
}

.button-link .fa-bee {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    transition: transform 1s ease, opacity 1s ease;
}

.button-link:hover .fa-bee {
    transform: translateX(-50%) translateY(-50px);
    opacity: 0;
}

/* Mobil Uyumlu Düzen */
@media screen and (max-width: 810px) {

    .button-cards {
        width: 47%;
    }

}

@media screen and (max-width: 711px) {

    .button-cards {
        width: 60%;
    }

}

@media screen and (max-width: 600px) {

    .button-cards {
        width: 80%;
    }

}

@media screen and (max-width: 360px) {

    .button-cards {
        width: 100%;
    }

}

.container{
    width: 50%;
    gap: 15px;
    width: 20%;
    margin: 20px auto;
}