:root {
    font-size: 16px;
    --bibloBlue: rgb(0, 55, 115);
    --bibloOrange: rgb(242, 102, 72);
}


body {
    font-family: 'Open Sans', sans-serif;
    background-color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: var(--bibloBlue);
    margin-bottom: 3rem;
    opacity: 0.5;
}

.biblomedya-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.biblomedya-header-links {
    border-bottom: 1.4px solid var(--bibloBlue);
    width: 100%;
    padding-bottom: 65px;
    margin-left: 10px;
    position: relative;
}

.biblomedya-header-links-items {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 70px;
    color: var(--bibloOrange);
    font-size: 1.1rem;
}

.biblomedya-header-links-items a {
    text-decoration: none;
    color: var(--bibloOrange);
    cursor: pointer;
}

.about {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    width: 100%;
    gap: 30px;
    padding-top: 100px;
    margin-top: -80px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 350px;
}

.about-title {
    font-size: 3rem;
    color: var(--bibloOrange);
    font-weight: 800;
    line-height: 1.1;
}

.about-title span {
    display: flex;
    width: 90px;
    height: 20px;
    background-color: var(--bibloOrange);
    margin-top: 10px;
}

.about-text {
    font-size: 1rem;
}

.about-image-container {
    position: relative;
    width: 50%;
}

.about-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.about-bg {
    position: absolute;
    top: 0;
    right: 0;
}

.btv {
    margin-top: 3rem;
    padding-top: 120px;
    margin-top: -80px;
}

.ads {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
}

.partners {
    margin-top: 6rem;
    width: 100%;
}

.partners-title {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.partners-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bibloBlue);
    border-bottom: 2rem solid var(--bibloBlue);
    padding-bottom: 1rem;
}

.team {
    margin-top: 6rem;
}

.team-title h2 {
    font-size: 3rem;
    color: var(--bibloOrange);
    font-weight: 800;
    width: 19vw;
}

.team-title span {
    display: flex;
    width: 90px;
    height: 20px;
    background-color: var(--bibloOrange);
    margin-bottom: 1rem;
}

.team-alt {
    font-size: 1rem !important;
    font-weight: 500;
}

.team {
    margin-top: 2rem;
}

.team-content {
    background-color: var(--bibloOrange);
    margin-top: 2rem;
    padding: 2rem 1rem;
}

.team-items {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.team-box {
    position: relative;
}

.team-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--bibloBlue);
    color: white;
    padding: 1rem;
    width: 100%;
    border-radius: 0 0 10px 10px;
    font-size: 10px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-item {
    display: flex;
    gap: 20px;
}

.footer {
    background-color: var(--bibloBlue);
    margin-top: 6rem;
    padding: 5rem 0;
    color: white;
}

.footer-content {
    display: flex;
    gap: 100px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

.slider {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.carousel-control-prev-icon {
    background-color: var(--bibloOrange);
    border-radius: 50%;
    padding: 1rem;
}

.carousel-control-next-icon {
    background-color: var(--bibloOrange);
    border-radius: 50%;
    padding: 1rem;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.team-image {
    border-radius: 30px;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    cursor: pointer;
}

.team-image:hover {
    filter: grayscale(0%);
    transition: filter 0.5s ease;
}

.footer-title {
    font-size: 2rem;
    border-bottom: 1px solid white;
    padding-bottom: 10px;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 20px;
    font-size: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    background-color: #EEF1F4;
    height: 100%;
}

/*.blog-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border: none;
}*/

.blog-card-title {
    font-size: 2.9rem;
    font-weight: 400;
    color: var(--bibloOrange);
    line-height: 1.2;
    margin-top: 1rem;
}

.blog-card-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    text-overflow: ellipsis;
}

.no-image {
    opacity: .3;
}

/* Mobile Menu Kapalı Durumda */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    background-color: var(--bibloBlue);
    color: white;
    transition: 0.3s;
    z-index: 1000;
    overflow: hidden;
}

.mobile-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 50px 0 0 20px;
}

.mobile-menu ul li {
    margin: 20px 0;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.mobile-menu ul li a:hover {
    color: #f4f4f4;
    text-decoration: underline;
}

/* Menü Açıldığında (Class Eklendiğinde) */
.mobile-menu.open {
    left: 0;
}

.close-button {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    cursor: pointer;
}

.mobile-button {
    display: none;
}

.team-title-text {
    transform: rotate(270deg);
    transform-origin: center;
    white-space: nowrap;
    width: 150px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    z-index: 10;
    top: 0;
    left: -80px;
}

.team-title-name {
    font-size: 30px;
    font-weight: bolder;
}

.blog-container {
    margin-top: 7rem;
}

.blog-title {
    font-size: 5rem;
    font-weight: 800;
    color: vaR(--bibloOrange);
}

.divider-blog {
    display: flex;
    width: 90px;
    height: 20px;
    background-color: vaR(--bibloOrange);
    margin-bottom: 1rem;
}

.blog-img {
    border-radius: 10px;
}

.blog-link {
    text-decoration: none;
    color: var(--bibloOrange);
}

.partners-section {
    text-align: center;
}

.partners-title {
    font-size: 24px;
    color: #002366; /* Başlık rengi */
    font-weight: bold;
}

.partners-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button {
    background-color: #e76f51; /* Ok düğmeleri için renk */
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-button.left {
    left: -30px;
}

.carousel-button.right {
    right: -30px;
}

.partners-grid {
    display: grid;
    gap: 10px;
    width: 80%;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-template-areas:
        "nissan redbull redbull boss"
        "swissotel goodyear asics boss";
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b0bec5;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Grid alanlarına göre logoların konumlandırılması */
.partners-grid > .partner-card:nth-child(1) {
    grid-area: nissan;
}

.partners-grid > .partner-card:nth-child(2) {
    grid-area: redbull;
}

.partners-grid > .partner-card:nth-child(3) {
    grid-area: boss;
}

.partners-grid > .partner-card:nth-child(4) {
    grid-area: swissotel;
}

.partners-grid > .partner-card:nth-child(5) {
    grid-area: goodyear;
}

.partners-grid > .partner-card:nth-child(6) {
    grid-area: asics;
}

.partner-card img {
    max-width: 100%;
    max-height: 100%;
}


.references {
    display: flex;
    gap: 10px;
}

.reference-card {
    background-color: #8393AA;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reference-card-first {
    width: 326px;
    height: 566px;
}

.reference-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reference-card-first-container {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: flex-end;
}

.reference-card-second-container {
    display: flex;
    gap: 10px;
}

.reference-card-second {
    width: 619px;
    height: 275px;
}

.reference-card-third {
    width: 405px;
    height: 159px;
}

.reference-card-fourth {
    width: 175px;
    height: 283px;
}

.reference-card-fifth {
    width: 427px;
    height: 283px;
}

.reference-card-sixth {
    width: 412px;
    height: 283px;
}

.reference-container {
    position: relative;
    width: 100%;
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.reference-title {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 0px;
    color: var(--bibloBlue);
    font-size: 3rem;
    font-weight: 800;
    padding-bottom: 1rem;
}

.reference-title span{
    display: flex;
    width: 90px;
    height: 20px;
    text-align: right;
    background-color: var(--bibloBlue);
    align-items: flex-end;
    justify-content: flex-end;
    position: absolute;
    right: 0;
}

.reference-container .carousel-control-prev {
    left: -200px;
}

.reference-container .carousel-control-next {
    right: -200px;
}

.team-mobile {
    display: none;

}

.team-carousel {
    background-color: var(--bibloOrange);
    padding: 3rem 3rem;
    margin-top: 3rem;
}

.references-mobile {
    display: none;
}
