/* Fonts */
@font-face {
    font-family: 'Gloria Hallelujah';
    src: url('../fonts/GloriaHallelujah.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WinkySans';
    src: url('../fonts/WinkySans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'WinkySans';
    src: url('../fonts/WinkySans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-red: #9b1542;
    --dark-red: #600d33;
    --text-color: #333;
    --white: #ffffff;
    --font-main: 'WinkySans', sans-serif;
    --font-headline: 'Gloria Hallelujah', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    font-size: 100%;
    /* Basis für Rem-Berechnung */
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-size: 16px;
    /* Basisgröße: 1rem = 16px */
}

/* Globale Textgröße für Konsistenz auf allen Geräten */
p {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.6;
    margin-bottom: 1rem;
}

h1,
h2,
.brand-text {
    font-family: var(--font-headline);
}

h3,
.cta-button {
    font-family: var(--font-main);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Texture Overlay */
.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../Bilder/textur.webp');
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

/* Navigation */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.nav-links.desktop-only {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-headline);
    color: var(--white);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--dark-red);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 20;
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--dark-red);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: 0.3s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

/* Google Review Button */
.google-review-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--text-color);
    padding: 1.25rem 2.5rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 3rem auto 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--text-color);
}

.google-review-btn:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.google-review-btn span {
    font-size: 1.4rem;
    margin-right: 0.5rem;
}

/* Footer */
.main-footer {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 3rem 0 1rem;
    position: relative;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo img {
    width: 100px;
}

.footer-nav,
.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a,
.footer-legal a {
    font-family: var(--font-headline);
    color: var(--white);
    text-decoration: none;
}

.footer-nav a:visited,
.footer-legal a:visited {
    color: var(--white);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: var(--dark-red);
}

.copyright-footer {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive Design - Global/Header/Footer */
@media (max-width: 768px) {
    .nav-links.desktop-only {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .brand-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .brand-text {
        font-size: 2rem;
    }

    .hero-logo {
        width: 200px;
    }

    .footer-content {
        text-align: left;
    }

    .footer-nav,
    .footer-legal {
        justify-content: center;
    }
}