/* Footer base styles */
.site-footer {
    background: var(--primary-2);
    color: white;
    padding: 2em 1em 1em;
    margin-top: 3em;
}

/* Footer layout container */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4em;
}

/* Footer section base */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

/* Footer section headings */
.footer-section h3 {
    font-family: 'Helvetica Now', sans-serif;
    color: var(--secondary);
    margin-bottom: 0.5em;
}

/* Footer links */
.footer-section a {
    display: inline-block;
    color: white;
    margin: 0.25em 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Footer link hover state */
.footer-section a:hover {
    color: var(--primary-3);
}

/* Footer link icons */
.footer-section img {
    width: 24px;
    height: 24px;
    margin-right: 0.5em;
    vertical-align: middle;
}

/* Contact form layout */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

/* Contact form inputs */
.contact-form input,
.contact-form textarea {
    padding: 0.5em;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    resize: vertical;
}

/* Contact form submit button */
.contact-form button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}

/* Contact button hover state */
.contact-form button:hover {
    background: var(--primary-3);
}

/* Footer bottom copyright section */
.footer-bottom {
    text-align: center;
    margin-top: 2em;
    font-size: 0.9em;
    color: white;
}

/* Footer layout width controls */
.footer-embeds,
.footer-links-stack,
.contact-form {
    flex: 1 1 300px;
}

/* Social links layout */
.footer-section.social-links {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 1rem;
}

/* Social links heading spacing */
.footer-section.social-links h3 {
    margin-bottom: 0.5rem;
}

/* Social link anchor spacing */
.footer-section.social-links a {
    margin: 0 0.5rem;
    display: inline-block;
}

/* Social icon sizing */
.footer-section.social-links img {
    width: 24px;
    height: 24px;
}

/* Embedded media container */
.footer-embeds {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: auto;
    max-width: 200px;
}

/* Embedded item style */
.footer-embed-item {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    border: none;
}

/* Adjust Spotify embed height */
.footer-embeds iframe[src*="spotify"] {
    height: 200px;
}

/* Row layout for social icons */
.social-icons-row {
    display: flex;
    gap: 1rem;
}

/* Maximum widths for layout balancing */
.footer-embeds {
    max-width: 30%;
}

.footer-links-stack {
    max-width: 40%;
}

.contact-form {
    max-width: 30%;
}
