/* Footer Styles */
.layout-site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.layout-site-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.layout-site-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Company info - Left alignment */
.layout-site-footer-company {
    text-align: left;
}

/* Quick Links - Center alignment */
.layout-site-footer-links {
    text-align: center;
}

/* Social Media - Right alignment */
.layout-site-footer-social {
    text-align: right;
}

.layout-site-footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.layout-site-footer-menu {
    list-style: none;
    padding: 0;
}

.layout-site-footer-menu li {
    margin-bottom: 0.75rem;
}

.layout-site-footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.layout-site-footer-menu a:hover {
    color: #3498db;
}

.layout-site-footer-social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;  /* Right justify social icons */
}

.layout-site-footer-social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.layout-site-footer-social-link:hover {
    color: #3498db;
}

.layout-site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.layout-site-footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .layout-site-footer-grid {
        grid-template-columns: 1fr;
    }

    /* Center everything on mobile */
    .layout-site-footer-company,
    .layout-site-footer-links,
    .layout-site-footer-social {
        text-align: center;
    }

    .layout-site-footer-social-icons {
        justify-content: center;
    }
}

/* Header Logo Styles */
.site-header-logo {
    display: flex;
    align-items: center;
}

.site-header-logo-img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.site-header-logo-img:hover {
    transform: scale(1.1);
} 