

/* SKYLINE DIVIDER */
.skyline {
    background: var(--bg-light);
    background: linear-gradient(180deg,rgba(251, 248, 255, 1) 0%, rgba(155, 111, 184, 1) 100%);
    position: relative;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

/* FOOTER */
footer {
    background: var(--dark-purple);
    color: white;
    padding: 60px 20px 40px;
    margin-top: -1px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section .footer-spacer {
    display: inline-block;
    margin-right: 10px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.4);
}