/* style.css - Globale Styles für Haarstudio Prinz */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

/* GLOBAL RESET & BODY */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --prinz-red: #8B0000;
    --gold-color: #d4af37;
    --bg-dark: #0f0f0f;
}

html {
    min-height: 100%;
    background: linear-gradient(to bottom, #2b2b2b 0%, #111 40%, #000 100%) fixed no-repeat;
    background-size: 100% 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: transparent;
    color: #F5F5F5;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: 70px;
    background: #111;
    border-bottom: 1px solid rgba(139,0,0,0.3);
    z-index: 1000;
    display: flex; align-items: center;
}

.nav-container {
    max-width: 1200px; width: 100%; height: 100%;
    margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--prinz-red);
    text-shadow: 0 0 10px rgba(139,0,0,0.6);
    white-space: nowrap;
}

.nav-menu { display: flex; gap: 2rem; align-items: center; }

.nav-menu a { color: #F5F5F5; position: relative; font-size: 1rem; }

.nav-menu a:hover, .nav-menu a.active {
    color: var(--prinz-red);
    text-shadow: 0 0 8px rgba(139,0,0,0.9);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: ''; position: absolute; left: 0; bottom: -6px;
    height: 2px; width: 0; background: var(--prinz-red);
    transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-social { display: flex; gap: 1rem; align-items: center; }
.nav-social a { font-size: 1.2rem; }
.nav-social a:hover { color: var(--prinz-red); transform: translateY(-2px); }

/* Burger Menu */
.burger {
    display: none; flex-direction: column; gap: 6px;
    padding: 8px; border: 0; background: transparent; cursor: pointer;
}
.burger span {
    width: 26px; height: 3px; background: #F5F5F5;
    border-radius: 2px; transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-social { display: none; }
    .burger { display: flex; }
    
    .nav-menu {
        position: fixed; top: 70px; left: -100%;
        width: 100%; height: calc(100vh - 70px);
        background: #000;
        flex-direction: column; align-items: center; justify-content: center;
        gap: 2rem; transition: left 0.3s ease; padding-bottom: 2rem;
    }
    .nav-menu.active { left: 0; }
    .nav-menu a { font-size: 1.4rem; }
}

/* FOOTER */
.footer {
    margin-top: 6rem;
    padding: 3rem 2rem;
    background: #111;
    text-align: center;
    border-top: 1px solid rgba(139,0,0,0.3);
}
.footer p { color: rgba(245,245,245,0.6); }
.footer a { color: var(--prinz-red); }


/* =========================================
   LOGO FIX (Das schneidet die Ecken ab!)
   ========================================= */
.hero-logo {
    width: 300px;             /* Perfekte Größe */
    height: 300px;            /* Quadratisch = perfekter Kreis */
    border-radius: 50%;       /* Macht den Container rund */
    overflow: hidden;         /* SCHNEIDET DIE ECKEN AB! */
    
    border: 4px solid var(--prinz-red);
    box-shadow: 0 0 30px rgba(139,0,0,0.5);
    background: #000;         /* Hintergrund schwarz */
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    transition: transform 0.35s ease;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* Füllt den Kreis komplett aus */
}

.hero-logo:hover {
    transform: scale(1.05);
    border-color: var(--gold-color);
    box-shadow: 0 0 50px rgba(139,0,0,0.8);
}