/* Reset ve temel stiller */
* {
    box-sizing: border-box;
}

body {
    background-color: #28323a;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-image: url(img/Nehirp.jpg);
}

/* Diagonal pattern background */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/Nehirp.jpg);
    /* background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent); */
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

/* Header styles */
.header-logo {
    max-width: 80px; /* Adjusted header logo size */
    height: auto;
    
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
}

.brand-subname {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Card styles */
.cards-container .card {
    border: none;
    overflow: hidden;
    height: 550px;
    position: relative;
}

.cards-container .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensure image covers the card */
}

.cards-container .card-img-overlay {
    padding: 1rem;
    display: flex; /* Ensure flex properties apply */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: none; /* Remove hover transition */
}

/* Specific Card Overlays */




/* Remove general hover effect */
/* .cards-container .card:hover .card-img-overlay { ... } */


.cards-container .card-logo img {
    width: 182px;
    height: 68px;
    
}

.cards-container .card-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 1rem; /* Position title below logo */
    padding-bottom: 1rem;
}

/* Small logo specific to the third card */
.small-card-logo {
    position: absolute;
    bottom: 20px; /* Adjust positioning */
    right: 20px;  /* Adjust positioning */
}

.small-card-logo img {
    width: 45px; /* Size for the small logo */
    height: 45px;
    border-radius: 50%;
}

.card:hover .card-overlay {
    cursor: pointer;
    background-color: rgba(255, 98, 0, 0.5);  /* turuncu yarı saydam */
}


/* Footer styles */
.footer {
    background-color: transparent;
    color: #ffffff;
    width: 100%;
    padding-top: 1rem; /* Add some padding */
    padding-bottom: 1rem;
    /* padding: 224px; */
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}



.footer .footer-item {
    display: flex; /* Ensure flex alignment works */
    align-items: center; /* Vertically center items */
}

.footer .footer-item i {
    font-size: 16px;
    margin-right: 0.5rem; /* Space between icon and text */
}

.footer .footer-item span {
    font-size: 14px;
}

.footer .vr {
    background-color: rgba(255, 255, 255, 0.5);
    height: 32px;
    opacity: 1;
    align-self: center; /* Center divider vertically */
}

.footer .footer-abanoz-logo {
    max-height: 30px; /* Adjusted footer logo size */
    width: auto;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .footer .row > div {
        margin-bottom: 1rem;
        justify-content: center; /* Center footer items */
    }
    .footer .row > div:last-child {
        margin-bottom: 0;
    }
    .footer .vr {
        display: none; /* Hide vertical dividers */
    }
    .cards-container .card {
        height: 400px;
    }
    .cards-container .card-title {
        font-size: 28px;
    }
    .small-card-logo {
        bottom: 10px;
        right: 10px;
    }
    .small-card-logo img {
        width: 35px;
        height: 35px;
    }
    /* .footer{
        padding: 120px;
    } */
}

@media (max-width: 991.98px) and (min-width: 768px) {
     .cards-container .card {
        height: 450px;
    }
     .footer .footer-abanoz-logo {
        max-height: 25px; /* Slightly smaller logo on medium */
    }

 
    /* .footer{
        padding: 0;
    } */
    
}

@media(max-width:576px){
    /* .footer{
        padding: 120px;
    } */
}
