/* ============================================================
   WERBEAUF CUSTOM FOOTER STYLES
   Fully Responsive - Optimized for all screen sizes
   CI Colors: #1b3d58 (primary), #4f6073 (secondary), #e8e7e2 (bg)
   ============================================================ */

/* ============================================================
   MAIN FOOTER
   ============================================================ */

.werbeauf-footer {
    width: 100%;
    background: #e8e7e2;
    border-top: 1px solid #e5e5e5;
    padding: 0;
}

.werbeauf-footer__inner {
    max-width: 1400px;
    width: 92%;
    margin: 0 auto;
}

/* ============================================================
   ROW 1: LOGO
   ============================================================ */

.werbeauf-footer__logo-row {
    padding: 32px 0 24px;
    text-align: center;
}

.werbeauf-footer__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #1b3d58;
    font-weight: 700;
    font-size: 1.25rem;
}

.werbeauf-footer__logo img {
    max-height: 70px;
    width: auto;
    height: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.werbeauf-footer__logo:hover img {
    opacity: 1;
}

.werbeauf-footer__logo img[src$=".svg"] {
    width: auto;
    height: 70px;
}

/* ============================================================
   ROW 2: CONTACT INFO
   ============================================================ */

.werbeauf-footer__contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 0 24px;
}

.werbeauf-footer__contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f6073;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.werbeauf-footer__contact-item:hover {
    color: #1b3d58;
}

.werbeauf-footer__contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ============================================================
   ROW 3: FOOTER MENU
   ============================================================ */

.werbeauf-footer__menu-row {
    padding: 24px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.werbeauf-footer__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.werbeauf-footer__menu li {
    margin: 0;
    padding: 0;
}

.werbeauf-footer__menu li a {
    display: block;
    color: #1b3d58;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.werbeauf-footer__menu li a:hover {
    color: #4f6073;
}

/* ============================================================
   ROW 4: COPYRIGHT + SOCIAL ICONS
   ============================================================ */

.werbeauf-footer__bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 20px;
}

/* Copyright */
.werbeauf-footer__copyright {
    color: #1b3d58;
    font-size: 13px;
    font-weight: 500;
}

/* Social Icons */
.werbeauf-footer__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.werbeauf-footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(27, 61, 88, 0.1);
    border-radius: 50%;
    color: #1b3d58;
    text-decoration: none;
    transition: all 0.2s ease;
}

.werbeauf-footer__social-icon:hover {
    background: #1b3d58;
    color: #ffffff;
}

.werbeauf-footer__social-icon svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   RESPONSIVE: Large Desktop (max-width: 1400px)
   ============================================================ */

@media (max-width: 1400px) {
    .werbeauf-footer__menu {
        gap: 20px;
    }
}

/* ============================================================
   RESPONSIVE: Desktop (max-width: 1200px)
   ============================================================ */

@media (max-width: 1200px) {
    .werbeauf-footer__inner {
        width: 94%;
    }
    
    .werbeauf-footer__logo img {
        max-height: 60px;
    }
    
    .werbeauf-footer__logo img[src$=".svg"] {
        height: 60px;
    }
}

/* ============================================================
   RESPONSIVE: Tablet (max-width: 1100px)
   ============================================================ */

@media (max-width: 1100px) {
    .werbeauf-footer__inner {
        width: 100%;
        padding: 0 24px;
    }
    
    .werbeauf-footer__logo-row {
        padding: 28px 0 20px;
    }
    
    .werbeauf-footer__contact-row {
        gap: 20px;
        padding: 0 0 20px;
    }
    
    .werbeauf-footer__menu-row {
        padding: 20px 0;
    }
    
    .werbeauf-footer__bottom-row {
        padding: 16px 0;
    }
}

/* ============================================================
   RESPONSIVE: Large Mobile (max-width: 900px)
   ============================================================ */

@media (max-width: 900px) {
    .werbeauf-footer__inner {
        padding: 0 20px;
    }
    
    .werbeauf-footer__logo img {
        max-height: 55px;
    }
    
    .werbeauf-footer__logo img[src$=".svg"] {
        height: 55px;
    }
    
    .werbeauf-footer__contact-item {
        font-size: 13px;
    }
    
    .werbeauf-footer__menu {
        gap: 18px;
    }
    
    .werbeauf-footer__menu li a {
        font-size: 14px;
    }
    
    .werbeauf-footer__copyright {
        font-size: 12px;
    }
    
    .werbeauf-footer__social-icon {
        width: 34px;
        height: 34px;
    }
    
    .werbeauf-footer__social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================================
   RESPONSIVE: Mobile (max-width: 767px)
   ============================================================ */

@media (max-width: 767px) {
    .werbeauf-footer__inner {
        padding: 0 16px;
    }
    
    .werbeauf-footer__logo-row {
        padding: 24px 0 18px;
    }
    
    .werbeauf-footer__logo img {
        max-height: 50px;
    }
    
    .werbeauf-footer__logo img[src$=".svg"] {
        height: 50px;
    }
    
    .werbeauf-footer__contact-row {
        flex-direction: column;
        gap: 12px;
        padding: 0 0 18px;
    }
    
    .werbeauf-footer__contact-item {
        font-size: 14px;
    }
    
    .werbeauf-footer__menu-row {
        padding: 24px 0;
    }
    
    /* Switch to vertical layout */
    .werbeauf-footer__menu {
        flex-direction: column;
        gap: 6px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .werbeauf-footer__menu li {
        width: 100%;
        text-align: center;
    }
    
    .werbeauf-footer__menu li a {
        font-size: 15px;
        padding: 8px 0;
    }
    
    .werbeauf-footer__bottom-row {
        flex-direction: column;
        gap: 14px;
        padding: 16px 0;
        text-align: center;
    }
    
    .werbeauf-footer__copyright {
        order: 2;
        font-size: 11px;
    }
    
    .werbeauf-footer__social {
        order: 1;
        gap: 10px;
    }
    
    .werbeauf-footer__social-icon {
        width: 38px;
        height: 38px;
    }
    
    .werbeauf-footer__social-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================================
   RESPONSIVE: Small Mobile (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
    .werbeauf-footer__inner {
        padding: 0 12px;
    }
    
    .werbeauf-footer__logo-row {
        padding: 20px 0 16px;
    }
    
    .werbeauf-footer__logo img {
        max-height: 45px;
    }
    
    .werbeauf-footer__logo img[src$=".svg"] {
        height: 45px;
    }
    
    .werbeauf-footer__contact-row {
        gap: 10px;
        padding: 0 0 16px;
    }
    
    .werbeauf-footer__contact-item {
        font-size: 13px;
    }
    
    .werbeauf-footer__menu-row {
        padding: 20px 0;
    }
    
    .werbeauf-footer__menu {
        max-width: 280px;
    }
    
    .werbeauf-footer__menu li a {
        font-size: 14px;
        padding: 7px 0;
    }
    
    .werbeauf-footer__bottom-row {
        padding: 14px 0;
        gap: 12px;
    }
    
    .werbeauf-footer__copyright {
        font-size: 10px;
    }
    
    .werbeauf-footer__social-icon {
        width: 34px;
        height: 34px;
    }
    
    .werbeauf-footer__social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* ============================================================
   RESPONSIVE: Extra Small Mobile (max-width: 360px)
   ============================================================ */

@media (max-width: 360px) {
    .werbeauf-footer__inner {
        padding: 0 10px;
    }
    
    .werbeauf-footer__logo img {
        max-height: 40px;
    }
    
    .werbeauf-footer__logo img[src$=".svg"] {
        height: 40px;
    }
    
    .werbeauf-footer__contact-item {
        font-size: 12px;
    }
    
    .werbeauf-footer__menu {
        max-width: 260px;
    }
    
    .werbeauf-footer__menu li a {
        font-size: 13px;
    }
    
    .werbeauf-footer__copyright {
        font-size: 9px;
    }
    
    .werbeauf-footer__social-icon {
        width: 30px;
        height: 30px;
    }
    
    .werbeauf-footer__social-icon svg {
        width: 12px;
        height: 12px;
    }
}
