/* public/css/footer.css */
.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    color: #333;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 20px 0;
    z-index: 5000;
  }  


.containerfoter {
    max-width: 78.2rem;
    margin: 0 auto;
    padding: 0 1rem; /* Mobilde kenardan boşluk olsun diye */
}


.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    color: #007782;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: "Bree Serif", serif;
    font-weight: normal;
    border-bottom: 1px solid #d3d3d3;  /* Açık gri */
    padding-bottom: 10px;

}



.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #666;
    cursor: pointer;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007782;
}


.footer-section ul li:hover {
    color: #007bff;
}

.app-links {
    display: flex;
    gap: 10px;
}

.app-links a img {
    width: 120px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.footer-bottom .logo img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    margin: 5px 0;
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        min-width: 100%;
        margin: 10px 0;
    }
}