/* ============================================
   KATHARINA BÖLLE COACHING - STYLESHEET
   ============================================ */

/* FONT FACES - LOCAL */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/Playfair_Display/static/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/Playfair_Display/static/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope/static/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope/static/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* COLOR VARIABLES */
:root {
    --primary-color: #c4231a;
    --secondary-color: #000000;
    --text-color: #000000;
    --light-bg: #f6f6f6;
    --white: #ffffff;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('img/katahrina_intro_background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-content {
    max-width: 700px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/footer_back.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.contact-item a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ============================================
   BUTTONS
   ============================================ */

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.3rem 4.5rem;
    border: none;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 35, 26, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: var(--secondary-color);
    color: #f6f6f6;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

footer a {
    color: var(--primary-color);
}

footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* ============================================
   LEGAL PAGES (IMPRESSUM & DATENSCHUTZ)
   ============================================ */

.legal-content {
    background-color: white;
    padding: 3rem;
    border-radius: 0;
}

.legal-section {
    margin-bottom: 2rem;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

/* ============================================
   LISTS
   ============================================ */

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero-logo img {
        max-width: 150px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-section {
        padding: 4rem 2rem;
        min-height: auto;
    }

    .footer-links {
        gap: 1rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .cta-button {
        padding: 1rem 3rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    .footer-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
}
