/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 2rem 0 0 0;
    margin-top: 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    position: relative;
}

.footer-contact,
.footer-social,
.footer-links {
    width: calc(100% / 3);
    padding: 0 15px;
    box-sizing: border-box;
}

.footer-contact h3,
.footer-social h3,
.footer-links h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-contact h3 {
    text-align: left;
}

.footer-social h3 {
    text-align: center;
}

.footer-links h3 {
    text-align: right;
}

.footer-contact p {
    margin: 1.5rem 0;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.footer-contact p:last-child {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-bottom: 0;
}

.footer-contact i {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.footer-contact a {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: none;
}

.footer-social {
    text-align: center;
}

.social-icons {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-icons a span {
    font-size: 16px;
    text-align: center;
    max-width: 250px;
    line-height: 1.4;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
    align-items: flex-end;
}

.links-container a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.links-container a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding: 0.5rem 0;
    background-color: white;
    color: var(--secondary-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    width: 100%;
    font-size: 0.8rem;
}

.footer-bottom p {
    color: var(--secondary-color);
    margin: 0;
}

/* Tablet için Responsive Tasarım */
@media (max-width: 992px) {
    .footer-content {
        padding: 0 1rem;
    }

    .footer-contact,
    .footer-social,
    .footer-links {
        padding: 0 10px;
    }

    .footer-contact h3,
    .footer-social h3,
    .footer-links h3 {
        font-size: 1.5rem;
    }
}

/* Mobil için Responsive Tasarım */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-bottom{
        margin-top: 0;
    }

    .footer-contact,
    .footer-social,
    .footer-links {
        width: 100%;
        margin-bottom: 2rem;
        padding: 0;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact h3,
    .footer-social h3,
    .footer-links h3 {
        text-align: center;
        font-size: 1.5rem;
    }

    .footer-contact p {
        text-align: center;
    }

    .links-container {
        align-items: center;
    }

    .fa-solid, .fas {
        font-size: 20px;
    }
}

/* Küçük Mobil Cihazlar için Responsive Tasarım */
@media (max-width: 480px) {
    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-contact h3,
    .footer-social h3,
    .footer-links h3 {
        font-size: 1.3rem;
    }

    .footer-contact p,
    .links-container a,
    .social-icons a span {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 1.3rem;
    }
}

@media (max-width: 376px) {
    .footer-contact h3 {
        font-size: 20px;
    }


}