/* ==========================================================================
   ROCKS FOOTER — Premium Dark Theme
   ========================================================================== */

:root {
    --footer-bg: #0A0A0A;
    --footer-text: #A0A0A0;
    --footer-heading: #FFFFFF;
    --footer-accent: #C5A059;
    --footer-border: rgba(255, 255, 255, 0.08);
}

.rocks-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 0 2rem;
    /* 80px top, 32px bottom */
    font-family: 'Inter', sans-serif;
    border-top: 1px solid var(--footer-border);
}

.rocks-footer-container {
    max-width: 79rem;
    margin: 0 auto;
    padding: 0 2rem;
}

.rocks-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    /* 64px */
    margin-bottom: 4rem;
}

/* Brand Column */
.footer-brand .footer-logo img {
    height: 2.75rem;
    /* 44px */
    width: auto;
    margin-bottom: 2rem;
    /* 32px */
}

.footer-logo-text {
    color: var(--footer-heading);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-about {
    line-height: 1.6;
    font-size: 0.9375rem;
    /* 15px */
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--footer-text);
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--footer-accent);
    transform: translateY(-3px);
}

/* Common Column Styles */
.rocks-footer .footer-title {
    color: var(--footer-heading);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.125rem !important;
    /* 18px */
    font-weight: 700 !important;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-menu,
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li,
.contact-info li {
    margin-bottom: 1rem;
}

.footer-menu a,
.contact-info a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.contact-info a:hover {
    color: var(--footer-accent);
}

/* Contact Info Specials */
.contact-info li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info i {
    color: var(--footer-accent);
    margin-top: 0.25rem;
    font-size: 1rem;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--footer-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    /* 14px */
}

.gold-text {
    color: var(--footer-accent);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .rocks-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .rocks-footer {
        padding: 4rem 1.5rem 2rem !important;
    }

    .rocks-footer-container {
        padding: 0 !important;
    }

    .rocks-footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0.5rem;
        text-align: left !important;
    }
}