/*
Theme Name: Plauscherl Theme
Theme URI: https://plauscherl.wien
Author: Mario
Author URI: https://github.com/
Description: Elementor-kompatibles Restaurant Theme fuer Plauscherl am Reisenberg. Basierend auf dem Full Metal Bistro Layout mit Plauscherl-Farbpalette.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plauscherl-theme
*/

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Host Grotesk', 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    padding-top: 80px;
}

a { color: #768FA0; text-decoration: none; transition: color 0.3s; }
a:hover { color: #435664; }
img { max-width: 100%; height: auto; }

/* ===== STICKY HEADER ===== */
.fmc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #435664;
    padding: 10px 0;
}

.fmc-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fmc-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Kein Logo-Bild, nur Text */
.fmc-logo-text {
    text-decoration: none;
}
.fmc-logo-text span {
    color: #fff;
    font-family: 'DM Serif Text', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    white-space: nowrap;
}

/* WordPress Standard-Logo verstecken */
.custom-logo-link,
.wp-custom-logo .custom-logo { display: none !important; }

/* Desktop Nav */
.fmc-nav { display: flex; align-items: center; }
.fmc-nav ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; }
.fmc-nav a {
    color: #fff;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}
.fmc-nav a:hover { opacity: 0.7; color: #fff; }

/* Burger Menu */
.fmc-burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.fmc-burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Nav */
.fmc-mobile-nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #435664;
    padding: 20px;
    z-index: 9998;
}
.fmc-mobile-nav.active { display: block; }
.fmc-mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.fmc-mobile-nav li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.2); }
.fmc-mobile-nav a {
    color: #fff;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .fmc-nav { display: none; }
    .fmc-burger { display: flex; }
    .fmc-logo-text span { font-size: 1rem; }
}

/* ===== FOOTER ===== */
.fmc-footer {
    background: #0C0C0C;
    padding: 60px 0 0;
    border-top: 1px solid #222;
}
.fmc-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.fmc-footer-col h4 {
    color: #fff;
    font-family: 'DM Serif Text', Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.fmc-footer-col p { color: #ccc; line-height: 1.8; font-size: 0.9rem; }
.fmc-footer-col a { color: #768FA0; text-decoration: underline; }
.fmc-footer-col a:hover { color: #435664; }
.fmc-footer-logo img { max-width: 150px; margin-bottom: 20px; }
.fmc-footer-links a { display: block; color: #fff; font-weight: 600; text-decoration: underline; margin-bottom: 8px; }

.fmc-social-icons { display: flex; gap: 15px; margin-top: 15px; }
.fmc-social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: #222; color: #fff; text-decoration: none; transition: background 0.3s;
}
.fmc-social-icons a:hover { background: #435664; }
.fmc-social-icons svg { width: 20px; height: 20px; fill: #fff; }

.fmc-copyright { background: #050505; padding: 20px; text-align: center; margin-top: 60px; }
.fmc-copyright p { color: #666; font-size: 0.75rem; font-family: Georgia, serif; }

@media (max-width: 768px) {
    .fmc-footer-inner { grid-template-columns: 1fr; text-align: center; }
    .fmc-footer-logo img { margin: 0 auto 20px; }
    .fmc-social-icons { justify-content: center; }
}
