/*
Theme Name: Promobel
Theme URI: https://pro-moebel-kuechenmontage.de
Author: Promobel
Author URI: https://pro-moebel-kuechenmontage.de
Description: Pro Möbel & Küchenmontage - Professionelle Möbel- und Küchenmontage in Witten, NRW.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: promobel
Tags: business, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
    --primary-green:       #4A6B41;
    --primary-green-dark:  #3A5533;
    --primary-green-light: #6B8B5E;
    --accent-gold:         #D4A574;
    --accent-gold-light:   #E8C9A0;
    --bg-cream:            #FAF9F6;
    --bg-warm:             #F5F3EE;
    --text-dark:           #1A1A1A;
    --text-gray:           #555555;
    --text-light:          #888888;
    --white:               #FFFFFF;
    --shadow-sm:           0 2px 10px rgba(0,0,0,0.05);
    --shadow-md:           0 5px 25px rgba(0,0,0,0.08);
    --shadow-lg:           0 10px 50px rgba(0,0,0,0.12);
    --transition:          all 0.3s ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 35px; border-radius: 50px;
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--primary-green); color: var(--white); box-shadow: 0 4px 15px rgba(74,107,65,0.3); }
.btn-primary:hover { background: var(--primary-green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,107,65,0.4); }
.btn-outline { background: transparent; color: var(--primary-green); border: 2px solid var(--primary-green); }
.btn-outline:hover { background: var(--primary-green); color: var(--white); }
.btn-gold { background: var(--accent-gold); color: var(--white); }
.btn-gold:hover { background: var(--accent-gold-light); color: var(--text-dark); }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 8px 5%; display: flex; justify-content: space-between;
    align-items: center; transition: var(--transition);
}
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: var(--shadow-sm); }
.promobel-logo { display: flex; align-items: center; gap: 12px; margin-left: 8%; text-decoration: none; }
.promobel-logo img { width: 286px; height: 100px; display: block; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 35px; list-style: none; }
.nav-links a {
    text-decoration: none; color: var(--text-dark); font-weight: 500; font-size: 0.95rem;
    transition: var(--transition); position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--primary-green); transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--primary-green); }
.nav-cta { display: flex; gap: 15px; align-items: center; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--text-dark); transition: var(--transition); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.nav-overlay.active { display: block; }
@media (min-width: 769px) {
    .mobile-menu-divider, .mobile-menu-contact-item, .mobile-menu-social, .mobile-menu-cta-row { display: none !important; }
}
.mobile-menu-divider { width: 100%; height: 1px; background: rgba(0,0,0,0.08); margin: 10px 0; list-style: none; }
.mobile-menu-cta-row { list-style: none; display: flex; gap: 10px; width: 100%; flex-wrap: wrap; }
.mobile-nav-btn { flex: 1; min-width: 120px; padding: 12px 16px !important; font-size: 0.88rem !important; justify-content: center; border-radius: 50px; }
.mobile-menu-social { list-style: none; display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.mobile-menu-social a {
    width: 42px; height: 42px; border-radius: 50%; background: var(--text-dark);
    color: var(--white) !important; display: flex !important; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none !important; transition: background 0.2s, transform 0.2s; padding: 0 !important;
}
.mobile-menu-social a:hover { background: var(--primary-green) !important; transform: translateY(-2px); }

/* FOOTER */
.footer { background: var(--text-dark); color: var(--white); padding: 80px 5% 0; }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; }
.footer-about p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; margin-top: 20px; }
.footer-about .promobel-logo img { filter: brightness(0) invert(1); opacity: 0.9; width: 220px; height: 70px; }
.footer-nav h4, .footer-services h4, .footer-contact h4 { color: var(--white); font-family: 'Montserrat',sans-serif; font-size: 0.9rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-gold); }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact a:hover { color: var(--accent-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom a { color: var(--accent-gold); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-credit { margin-top: 6px; font-size: 0.78rem; color: rgba(255,255,255,0.3) !important; }
.footer-credit a { color: rgba(255,255,255,0.55) !important; transition: color .2s; }
.footer-credit a:hover { color: var(--accent-gold) !important; text-decoration: none; }

/* Footer social icons */
.footer-social {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
}
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 1rem;
    text-decoration: none; transition: all .25s ease;
}
.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}
.footer-mini { background: var(--text-dark); padding: 26px 5%; text-align: center; color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-mini a { color: var(--accent-gold); text-decoration: none; }
.footer-mini a:hover { text-decoration: underline; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 998; }
.whatsapp-float a {
    display: flex; align-items: center; gap: 9px; background: #25D366; color: var(--white);
    padding: 14px 22px; border-radius: 50px; text-decoration: none; font-weight: 600;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4); transition: var(--transition);
}
.whatsapp-float a:hover { transform: translateY(-3px); }
.whatsapp-float a i { font-size: 1.4rem; }

/* SECTION COMMON */
.section-subtitle { font-size: 0.9rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--primary-green); margin-bottom: 1rem; display: block; }
.section-title { font-size: 2.8rem; color: var(--text-dark); margin-bottom: 1.5rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

/* MOBILE */
@media (max-width: 768px) {
    .navbar { padding: 0 5%; height: 90px; justify-content: space-between; align-items: center; }
    .navbar .promobel-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); margin: 0; }
    .promobel-logo img { width: 260px !important; height: 90px !important; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 82%; max-width: 320px; height: 100vh;
        background: var(--white); flex-direction: column; justify-content: flex-start;
        align-items: flex-start; padding: 80px 35px 40px;
        transition: right 0.35s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow-lg);
        z-index: 1000; gap: 8px; overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    .nav-cta { display: none; }
    .mobile-toggle { display: flex; z-index: 1001; }
    .whatsapp-float a span { display: none; }
    .whatsapp-float a { padding: 14px 16px; border-radius: 50%; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; }
}
