.footer
{
    width: 100vw;
    min-height: 15vh;
    background: hsl(0, 0%, 13%);
    display: flex;
    flex-direction: column;
    padding: 2vh 2vw 2vh 2vw;
    box-sizing: border-box;
}

.footer-top
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5vh;
}

.footer-left
{
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo
{
    height: 6vh;
    width: auto;
    object-fit: contain;
}

.footer-slogan
{
    color: white;
}

.footer-slogan p
{
    margin: 0;
    font-size: 2vh;
    font-family: 'Secular One', 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.05em;
}

.social-media
{
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link
{
    transition: transform 0.3s ease;
}

.social-link:hover
{
    transform: scale(1.1);
}

.social-icon
{
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-contact
{
    display: flex;
    justify-content: center;
    margin-bottom: 1.5vh;
}

.contact-info
{
    text-align: center;
    color: white;
}

.contact-info p
{
    margin: 0.5vh 0;
    font-family: 'Secular One', 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.05em;
    text-align: center !important;
}

.address
{
    font-size: 1.8vh;
    color: #ccc;
    text-align: center !important;
}

.contact-details
{
    font-size: 1.7vh;
    text-align: center !important;
}

.contact-details a
{
    color: goldenrod;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover
{
    color: white;
}

.footer-copyright
{
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1vh;
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-copyright p
{
    margin: 0;
    font-size: 1.5vh;
    color: #888;
    font-family: 'Secular One', 'Roboto', Helvetica, sans-serif;
    letter-spacing: 0.05em;
    text-align: center !important;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer
    {
        padding: 1.5vh 1vw 1vh 1vw;
        min-height: 18vh;
    }
    
    .footer-top
    {
        flex-direction: column;
        gap: 1vh;
        margin-bottom: 1vh;
    }
    
    .footer-left
    {
        gap: 10px;
    }
    
    .footer-logo
    {
        height: 4vh;
    }
    
    .footer-slogan p
    {
        font-size: 1.6vh;
    }
    
    .social-media
    {
        gap: 15px;
    }
    
    .social-icon
    {
        width: 28px;
        height: 28px;
    }
    
    .address
    {
        font-size: 1.5vh;
    }
    
    .contact-details
    {
        font-size: 1.4vh;
    }
    
    .footer-copyright p
    {
        font-size: 1.3vh;
    }
}
