@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-latin-300-normal.woff2') format('woff2');
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-latin-900-normal.woff2') format('woff2');
    font-style: normal;
    font-weight: 900;
    font-display: swap;
}

:root {
    --bg-dark: #1a1b1f;
    --bg-card: #23252b;
    --text-white: #ffffff;
    --text-gray: #a5a9b4;
    --accent-blue: #0070f3;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(26,27,31,0.92) 0%, rgba(26,27,31,0) 100%);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo a {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo a span { color: var(--accent-blue); }
.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text-white); }
.nav-link.massage-link { color: #93c5fd; }
.header-contact a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
}
.header-contact a:hover { color: var(--text-white); }

/* MAIN HERO SECTION (Landingpage) */
.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem 2rem;
    text-align: center;
}
.hero-content { max-width: 700px; }
.greeting {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
}
.hero-title .last-name {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

/* BUTTONS */
.hero-buttons {
    margin-bottom: 4rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.btn {
    display: inline-block;
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}
.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
}
.btn-primary {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border: 1px solid var(--text-white);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--text-white);
}

/* SOCIAL LINKS*/
.main-socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.main-socials a {
    color: var(--text-gray);
    font-size: 1.4rem;
    transition: var(--transition);
}
.main-socials a:hover {
    color: var(--text-white);
    transform: translateY(-3px);
}

.about-page-section {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    padding-top: 6rem;
}
.about-page-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 12rem);
}
.about-page-text {
    width: 50%;
    padding: 0 4rem;
    z-index: 5;
}
.about-main-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.2rem;
}
.about-page-email {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 3.5rem;
    transition: var(--transition);
}
.about-page-email:hover { color: var(--text-white); }
.about-page-bio p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.inline-massage-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: var(--transition);
}
.inline-massage-link:hover { border-color: var(--text-white); }

/* Standortanzeige unten links */
.about-location {
    margin-top: 4.5rem;
    border-left: 2px solid var(--text-gray);
    padding-left: 1rem;
}
.about-location p {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}
.about-location span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Rechte Bildseite */
.about-page-image {
    width: 50%;
    height: calc(100vh - 6rem);
    position: relative;
    overflow: hidden;
}
.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.portrait-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--bg-dark) 0%, rgba(26,27,31,0.22) 40%, rgba(26,27,31,0) 100%),
                linear-gradient(to top, var(--bg-dark) 0%, rgba(26,27,31,0) 20%);
}

/* FOOTER */
.main-footer {
    padding: 2rem;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.01);
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-gray);
}
.footer-legal-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 1rem;
}
.footer-legal-links a:hover { color: var(--text-white); }

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-page-container { flex-direction: column-reverse; }
    .about-page-text { width: 100%; padding: 3rem 2rem; text-align: center; }
    .about-location { display: inline-block; text-align: left; margin-top: 2.5rem; }
    .about-page-image { width: 100%; height: 50vh; }
    .portrait-gradient-overlay {
        background: linear-gradient(to top, var(--bg-dark) 10%, rgba(26,27,31,0) 100%);
    }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 300px; }
}

/* STYLING FÜR RECHTSSEITEN (DATENSCHUTZ & IMPRESSUM) */
.legal-page-section {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 8rem 2rem 6rem 2rem;
    background-color: var(--bg-dark);
}

.legal-container {
    max-width: 800px;
    width: 100%;
}

.legal-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.legal-intro {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}

.legal-divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 2.5rem 0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.legal-section p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-section a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.5);
    transition: var(--transition);
}

.legal-section a:hover {
    color: var(--text-white);
    border-bottom-color: rgba(255, 255, 255, 0.8);
}

.legal-address {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.legal-address p {
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.legal-address p strong {
    color: var(--text-white);
}

.legal-address a {
    color: var(--accent-blue);
    text-decoration: none;
}

.legal-address a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-page-section {
        padding: 6rem 1.5rem 4rem 1.5rem;
    }
}

/* ==========================================================================
   HEADER & DROPDOWN NAVIGATION STYLES
   ========================================================================== */

.main-header {
    width: 100%;
    background-color: #111; 
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 9999;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

/* --- Dropdown Kern-Struktur --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Schwebende Auswahlmenü */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 6px 0;
}

.dropdown-item {
    color: #ccc;
    padding: 10px 16px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
    text-align: left;
}

.dropdown-item:hover {
    background-color: #252525;
    color: #fff;
}

@media (min-width: 1025px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0); 
    }
    
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg); 
    }
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown.open .dropdown-icon {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: #222;
        margin-top: 5px;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown.open .dropdown-menu {
        display: flex;
    }
}