
/* Footer Styles */
.footer {
    background-color: #faf9f6;
    padding: 80px 0 40px;
    border-top: 1px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: none; /* Hide text when logo image is used */
}

.footer-tagline {
    font-size: 24px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    margin: 0;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer_button {
    border-radius: 999px;
    display: inline-flex;
    position: relative;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    color: #121212;
}

.footer_button .btn__content {
    align-items: center;
    background-color: #63cfbf;
    border: 1px solid #000;
    border-radius: inherit;
    display: flex;
    height: 50px;
    justify-content: space-between;
    min-height: 50px;
    gap: 12px;
    min-width: 100%;
    padding: 0 2rem;
    position: relative;
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
    z-index: 2;
    position: relative;
    font-weight: 600;
    font-size: 16px;
}

.footer_button img {
    width: 30px;
}

.footer_button:after {
    background-image: url(images/texture.png);
    background-size: cover;
    border: 1px solid #000;
    border-radius: inherit;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate3d(4px, 4px, 0);
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
    width: 100%;
    z-index: 1;
}

.footer_button:hover .btn__content {
    transform: translate3d(4px, 4px, 0);
}

.footer_button:hover:after {
    transform: translate3d(0, 0, 0);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
    color: #000;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li {
    margin: 0;
}

.footer-list a {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #63cfbf;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-contact p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

.footer-contact a {
    color: #000;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #63cfbf;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #63cfbf;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    flex-shrink: 0;
}

.social-icon:after {
    background-image: url(images/texture.png);
    background-size: cover;
    border: 1px solid #000;
    border-radius: 50%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate3d(2px, 2px, 0);
    width: 100%;
    z-index: -1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    border-top: 1px solid #000;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 14px;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom a {
    color: #000;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #63cfbf;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer{
        padding-block: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .footer-left {
        grid-column: 1;
    }
    
    .footer-tagline {
        font-size: 20px;
    }
}
