/* Footer styling */
.footer {
    position: relative;
    z-index: 1;
    background-color: #010101;
    padding: 2rem 0;
    border-top: 1px solid rgba(184, 41, 232, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    flex: 0 0 50%;
    max-width: 50%;
}

.footer-logo h2 {
    font-family: 'Amsterdam Four', cursive;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-right {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
}

.footer-badges-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;

}

@media (max-width: 768px) {
    .footer-badges-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .copyright {
        max-width: 100%;
        text-align: center;
    }
}

/* New media query for very small screens */
@media (max-width: 400px) {
    .footer-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-items: center;
    }
}

.footer-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.footer-badge.age {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 1.2rem;
}

.footer-badge.maple-leaf {
    background: transparent;
}

.footer-about {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}



.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* This aligns items to the bottom */
}

.footer-logo {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: flex-end; /* This ensures the logo text is bottom-aligned */
}

.footer-logo-text {
    font-family: 'Amsterdam Four', cursive;
    font-size: 3rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.footer-content span{
    font-size: 5rem;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo, .footer-right {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo-text {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .footer-badges-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .footer-badges {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .footer-about {
        text-align: center;
    }

    .footer-content span{
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .footer-logo-text {
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .footer-content span{
        font-size: 3rem;
    }
}
