@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

.shr-footer {
    background-color: #1A1A1A;
    color: #e0e0e0;
    font-family: 'DM Sans', sans-serif;
}

.shr-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.shr-footer-top {
    padding: 80px 0;
}

.shr-footer-top .shr-footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.shr-footer-logo {
    font-family: Georgia, serif;
    font-weight: bold;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1;
}

.shr-footer-tagline {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin: 0;
    max-width: 400px;
}

.shr-footer-title {
    font-family: Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px;
}

.shr-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shr-footer-list li {
    margin-bottom: 12px;
}

.shr-footer-list li:last-child {
    margin-bottom: 0;
}

.shr-footer-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.shr-footer-list a:hover {
    color: #4A90E2; /* Lighter Blue for dark bg visibility instead of straight navy */
}

.shr-links-wrapper {
    margin-bottom: 40px;
}

.shr-social-icons {
    display: flex;
    gap: 16px;
}

.shr-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.shr-social-icons a:hover {
    background-color: #0A2540; /* Navy Blue hover */
    transform: translateY(-3px);
}

.shr-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.shr-contact-list i {
    font-size: 20px;
    color: #4A90E2; /* Lighter Blue for visibility on dark background */
    margin-top: 2px;
}

.shr-footer-bottom {
    background-color: #111111;
    padding: 24px 0;
}

.shr-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.shr-copyright {
    margin: 0;
    font-size: 14px;
    color: #888888;
}

.shr-legal-links {
    font-size: 14px;
}

.shr-legal-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shr-legal-links a:hover {
    color: #ffffff;
}

.shr-divider {
    color: #444444;
    margin: 0 8px;
}

@media (max-width: 991px) {
    .shr-footer-top .shr-footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .shr-footer-top .shr-footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shr-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}
