/*
Theme Name: Harmonie
Theme URI: https://harmonie-wellness.de
Description: Ein elegantes Wellness-Theme für Harmonie Massage & Entspannung
Version: 1.0
Author: Harmonie Team
Author URI: https://harmonie-wellness.de
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: harmonie
*/

/* ===========================
   CSS Variables
   =========================== */
:root {
    --harmonie-gold: #bd8102;
    --harmonie-dark: #625b46;
    --harmonie-medium: #8b7e6b;
    --harmonie-light: #e5d4a8;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-600: #57534e;
    --stone-800: #292524;
    --stone-900: #1c1917;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Container
   =========================== */
.harmonie-container {
    max-width: 1280px;
    /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1rem;
    /* px-4 */
}

@media (min-width: 640px) {
    .harmonie-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .harmonie-container {
        padding: 0 2rem;
    }
}

/* ===========================
   Navigation
   =========================== */
.harmonie-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.harmonie-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.harmonie-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.harmonie-logo {
    display: none;
    /* User Request to hide for now */
    align-items: center;
    transition: opacity 0.3s;
}

.harmonie-logo:hover {
    opacity: 0.8;
}

/* Logo Fix - Updated per User Request */
.harmonie-logo img,
.custom-logo-link img,
.custom-logo {
    height: 120px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain;
    object-position: left center;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .harmonie-logo img {
        height: 60px !important;
        /* Smaller on mobile but proportional */
        margin-top: 10px;
    }
}

.harmonie-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .harmonie-nav-links {
        display: flex;
    }
}

.harmonie-nav-link {
    font-weight: 600;
    /* slightly bolder for white text */
    transition: color 0.3s;
    color: white;
    /* Initial white text */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    /* Improving readability if hero image is light */
}

/* Scrolled State - switch to dark text */
.harmonie-nav.scrolled .harmonie-nav-link {
    color: #625b46;
    /* harmonie-dark */
    text-shadow: none;
}

.harmonie-nav-link:hover {
    color: #bd8102 !important;
    /* harmonie-gold - overrides both states */
    opacity: 1;
}

/* Force ALL Buttons to Gold */
.harmonie-nav-cta,
.wp-block-button__link,
.wp-block-button__link:visited,
.wp-block-button__link.has-white-color,
.wp-block-button__link.is-secondary-gray,
.harmonie-glass-btn .wp-block-button__link {
    padding: 0.75rem 1.5rem !important;
    background-color: #bd8102 !important;
    color: white !important;
    border-radius: 9999px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

.harmonie-nav-cta:hover,
.wp-block-button__link:hover {
    background-color: #a37002 !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    opacity: 1 !important;
}

/* Mobile Toggle */
.harmonie-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (min-width: 768px) {
    .harmonie-mobile-toggle {
        display: none;
    }
}

.harmonie-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.harmonie-nav.scrolled .harmonie-mobile-toggle span {
    background: var(--harmonie-dark);
}

.harmonie-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.harmonie-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.harmonie-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.harmonie-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid rgba(189, 129, 2, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.harmonie-mobile-menu.active {
    display: block;
}

@media (min-width: 768px) {
    .harmonie-mobile-menu {
        display: none !important;
    }
}

.harmonie-mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--harmonie-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.harmonie-mobile-menu a:hover {
    color: var(--harmonie-gold);
}

.harmonie-mobile-menu .harmonie-nav-cta {
    display: block;
    text-align: center;
    margin-top: 1rem;
}

/* ===========================
   Footer
   =========================== */
.harmonie-footer,
footer.harmonie-footer {
    background-color: #bd8102 !important;
    /* Gold Background per User Request */
    background: #bd8102 !important;
    color: white !important;
    padding: 3rem 0;
}

.harmonie-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .harmonie-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.harmonie-footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
    /* Visible on Gold Background */
}

.harmonie-footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.harmonie-footer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.harmonie-footer-list {
    list-style: none;
}

.harmonie-footer-list li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    cursor: default;
}

.harmonie-footer-list a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
}

.harmonie-footer-list a:hover,
.harmonie-footer-list li:hover {
    color: white;
}

.harmonie-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(189, 129, 2, 0.3);
}

.harmonie-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .harmonie-footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.harmonie-footer-bottom p {
    font-size: 0.875rem;
    color: var(--harmonie-light);
}

.harmonie-footer-love {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--harmonie-light);
}

.harmonie-footer-love svg {
    width: 1rem;
    height: 1rem;
    fill: white;
}

/* Global Button Override per User Request */
.wp-block-button__link,
.harmonie-nav-cta {
    background-color: #bd8102 !important;
    color: white !important;
}

.wp-block-button__link:hover,
.harmonie-nav-cta:hover {
    background-color: #a37002 !important;
    color: white !important;
}