/* --- Footer Styles --- */
.main-footer {
    background: var(--footer-bg);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.footer-description {
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-contact a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary);
}

/* Bottom Copyright Bar */
.footer-bottom {
    background: var(--footer-bg);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}

.designer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.boat-icon {
    /* This makes the boat match the text color automatically */
    fill: currentColor; 
}

.designer-link:hover {
    color: var(--primary); /* Makes the boat turn red on hover */
}

.social-icons {
    margin-bottom: 15px;
    display: flex;
    /* Vertical centering */
    gap: 15px;
    /* Space between icons */
}

.social-icons svg {
    width: 32px;
    /* Specific size works better than 1em for logos */
    height: 32px;
    display: block;
    transition: transform 0.2s ease;
}

/* Desktop Footer Layout */
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom-flex {
        flex-direction: row;
        justify-content: space-between;
    }
}