/* Lokale Schriftart (kein Google-Tracking) */
@font-face {
    font-family: 'Great Vibes';
    src: url('fonts/GreatVibes-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --vanilla: #F1EADA;
    --sand: #CEC1A8;
    --tobacco: #B59E7D;
    --mountain: #AAA396;
    --mocha: #5A4D41;
    --mahogany: #584738;
    --chai: #7E6957;
    --dark: #2A2520;
    --darker: #1E1B18;
    --cream: #FAF7F2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--darker);
    color: var(--sand);
    line-height: 1.6;
}

/* NAVIGATION */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: var(--darker);
    border-bottom: 1px solid var(--mahogany);
    z-index: 1000;
    transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

nav.scrolled {
    padding: 12px 50px;
    background: rgba(30, 27, 24, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    color: var(--tobacco);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 3px;
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.logo:hover {
    color: var(--sand);
}

.nav-icons {
    display: flex;
    gap: 10px;
}

.nav-icons a {
    color: var(--tobacco);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-icons a:hover {
    color: var(--sand);
    transform: scale(1.15);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links li {
    border: none;
    background: transparent;
}

.nav-links a {
    color: var(--sand);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:not(.btn-book)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--tobacco);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--tobacco);
}

.nav-links a:not(.btn-book):hover::after {
    width: 100%;
}

.btn-book {
    background: var(--tobacco);
    color: var(--darker) !important;
    padding: 8px 16px;
    border: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-book:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 158, 125, 0.4);
}

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--tobacco);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Social Icons (nur Mobile) */
.nav-social {
    display: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--tobacco);
    border-radius: 50%;
    color: var(--tobacco);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--tobacco);
    color: var(--darker);
    transform: scale(1.1);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 50px 60px 50px;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.webp');
    background-size: cover;
    background-position: center 35%;
    filter: grayscale(100%);
    z-index: 0;
    will-change: transform;
}

.hero > *:not(.hero-bg) {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 350px;
    max-width: 80%;
    margin-bottom: 20px;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 20px rgba(181, 158, 125, 0.4));
}

.tagline {
    color: var(--sand);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.hero-galerie {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
}

.hero-galerie img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    filter: grayscale(10%);
}

.hero-galerie img:hover {
    transform: scale(1.08) rotate(1deg);
    filter: grayscale(0%);
    box-shadow: 0 10px 30px rgba(88, 71, 56, 0.3);
}

.btn {
    display: inline-block;
    border: 2px solid var(--tobacco);
    color: var(--tobacco);
    padding: 12px 30px;
    text-decoration: none;
    letter-spacing: 2px;
    margin: 5px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: var(--tobacco);
    color: var(--darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(181, 158, 125, 0.3);
}

.btn:hover::before {
    left: 100%;
}

/* SECTIONS */
section {
    padding: 100px 50px;
    background: var(--darker);
}

section:nth-child(even) {
    background: var(--dark);
}

section h2 {
    color: var(--tobacco);
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

section h2:hover {
    color: var(--sand);
}

section p {
    color: var(--sand);
    font-weight: 300;
}

.text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gold {
    color: var(--tobacco);
}

/* ========================================
   BEAUTY TABELLEN
   ======================================== */

.tabellen-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.tabelle {
    width: 450px;
    background: var(--dark);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.tabelle-header {
    text-align: center;
    margin-bottom: 50px;
}

.titel {
    display: block;
    font-size: 1.6rem;
    font-weight: 200;
    letter-spacing: 6px;
    color: var(--sand);
    margin-bottom: 10px;
    white-space: nowrap;
}

.untertitel {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 2.8rem;
    color: var(--tobacco);
}

/* DIE TABELLE MIT LINIE */
table {
    width: 100%;
    border-collapse: collapse;
}

tr {
    transition: background 0.3s ease;
}

tr:not(.leer):hover {
    background: rgba(181, 158, 125, 0.1);
}

tr:not(.leer):hover td {
    color: var(--vanilla);
}

td {
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--sand);
    vertical-align: top;
    transition: color 0.3s ease;
}

td:first-child {
    text-align: left;
    border-right: 2px solid var(--tobacco);
    width: 75%;
}

td:last-child {
    text-align: right;
    width: 25%;
    padding-left: 30px;
}

tr.leer td {
    padding: 25px 0;
    border-right: 2px solid var(--tobacco);
}

tr.leer td:last-child {
    border-right: none;
}

.klein {
    font-size: 0.75rem;
    color: var(--chai);
    letter-spacing: 0.5px;
}

.hinweis {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--chai);
    letter-spacing: 2px;
}

/* TATTOO STORY */
.tattoo-story,
.beauty-story {
    max-width: 1100px;
    margin: 60px auto 0 auto;
    position: relative;
}

/* Vertikale Linie in der Mitte */
.tattoo-story::before,
.beauty-story::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--tobacco), var(--tobacco), transparent);
    transform: translateX(-50%);
}

.story-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
}

/* Punkt auf der Linie */
.story-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: var(--tobacco);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(181, 158, 125, 0.4);
    z-index: 2;
}

.story-left {
    flex-direction: row;
}

.story-right {
    flex-direction: row;
}

.story-center {
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.story-center::after {
    display: none;
}

.story-center .story-image {
    width: 350px;
}

.story-center .story-text {
    max-width: 500px;
}

.story-image {
    flex: 1;
    max-width: 45%;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(20%);
    transition: filter 0.5s ease, transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.story-item:hover .story-image img {
    filter: grayscale(0%);
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(181, 158, 125, 0.2);
}

.story-text {
    flex: 1;
    max-width: 45%;
}

.story-chapter {
    display: inline-block;
    color: var(--tobacco);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.7;
}

.story-text h3 {
    font-family: 'Great Vibes', cursive;
    color: var(--tobacco);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.story-item:hover .story-text h3 {
    color: var(--sand);
}

.story-text p {
    color: var(--sand);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Mobile Tattoo & Beauty Story */
@media (max-width: 768px) {
    .tattoo-story::before,
    .beauty-story::before {
        display: none;
    }

    .story-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 40px;
        align-items: center;
    }

    .story-item::after {
        display: none;
    }

    .story-left .story-image {
        order: 1;
    }

    .story-left .story-text {
        order: 2;
    }

    .story-right .story-image {
        order: 2;
    }

    .story-right .story-text {
        order: 1;
    }

    .story-image,
    .story-text {
        max-width: 100%;
    }

    .story-center {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-center .story-image {
        width: 100%;
    }

    .story-image img {
        height: 220px;
    }

    .story-text h3 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .story-text p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .story-chapter {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
}

/* GALERIE */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.galerie-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    filter: grayscale(10%);
}

.galerie-grid img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
    box-shadow: 0 10px 30px rgba(88, 71, 56, 0.25);
}

/* EVENTS */
.event-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.event-card {
    width: 240px;
    height: 280px;
    cursor: pointer;
}

.event-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: -webkit-transform 0.7s ease, transform 0.7s ease;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.event-card:hover .event-card-inner,
.event-card.flipped .event-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.event-card-front,
.event-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.event-card-front {
    background: var(--dark);
    border: 1px solid var(--mahogany);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover .event-card-front {
    border-color: var(--tobacco);
    box-shadow: 0 10px 30px rgba(181, 158, 125, 0.2);
}

.event-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.event-card-front h3 {
    color: var(--tobacco);
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.event-card-back {
    background: linear-gradient(135deg, var(--mahogany), var(--mocha));
    border: 1px solid var(--tobacco);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(181, 158, 125, 0.25);
}

.event-card-back h3 {
    color: var(--tobacco);
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.event-card-back p {
    color: var(--vanilla);
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

/* KONTAKT */
.kontakt-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    text-align: center;
}

.kontakt-grid h3 {
    color: var(--tobacco);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.kontakt-grid a {
    color: var(--sand);
    text-decoration: none;
    transition: color 0.3s;
}

.kontakt-grid a:hover {
    color: var(--tobacco);
}

/* FOOTER */
footer {
    padding: 30px;
    text-align: center;
    background: var(--mahogany);
    border-top: 1px solid var(--mocha);
    color: var(--sand);
    font-size: 0.8rem;
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 27, 24, 0.97);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 3px solid var(--sand);
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: var(--vanilla);
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.lightbox-close:hover {
    color: var(--sand);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--vanilla);
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s, transform 0.3s;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--tobacco);
    transform: translateY(-50%) scale(1.2);
}

/* ========================================
   BOOKING & TATTOO FORMULAR
   ======================================== */

.booking-category {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.booking-category:last-child {
    margin-bottom: 0;
}

.booking-category h3 {
    color: var(--tobacco);
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.booking-category > p {
    color: #999;
    margin-bottom: 25px;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-hint {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--chai);
    font-style: italic;
}

.booking-alternative {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--chai);
    font-size: 0.9rem;
}

/* Beauty Formular */
.beauty-form-container {
    max-width: 700px;
}

.beauty-form {
    margin-top: 30px;
    text-align: left;
}

/* Form Tabs */
.form-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 30px;
}

.form-tab {
    background: transparent;
    border: 1px solid var(--mahogany);
    color: var(--sand);
    padding: 14px 40px;
    font-size: 0.95rem;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-tab:first-child {
    border-right: none;
}

.form-tab:hover {
    color: var(--tobacco);
    border-color: var(--tobacco);
}

.form-tab.active {
    background: var(--tobacco);
    color: var(--darker);
    border-color: var(--tobacco);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.schnellbuchung-info {
    text-align: center;
    color: var(--tobacco);
    font-size: 0.9rem;
    margin-bottom: 25px;
    padding: 15px;
    border: 1px dashed var(--tobacco);
    background: rgba(212, 175, 55, 0.05);
}

/* Tattoo Formular */
.tattoo-form-container {
    max-width: 700px;
    border-top: 1px solid var(--sand);
    padding-top: 60px;
}

.tattoo-form {
    margin-top: 30px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    color: var(--tobacco);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 300;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark);
    border: 1px solid var(--mahogany);
    color: var(--sand);
    padding: 14px 16px;
    font-size: 0.95rem;
    font-family: 'Segoe UI', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--tobacco);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--chai);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--vanilla);
    color: var(--mocha);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    padding: 12px;
    cursor: pointer;
}

.form-group input[type="file"]::file-selector-button {
    background: var(--tobacco);
    color: #000;
    border: none;
    padding: 8px 16px;
    margin-right: 15px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.form-group input[type="file"]::file-selector-button:hover {
    background: #b8960c;
}

.file-hint {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--chai);
}

/* Checkboxen */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #999;
    font-size: 0.85rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--tobacco);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--tobacco);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 30px;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    cursor: pointer;
    background: transparent;
}

.btn-submit:hover {
    background: var(--tobacco);
    color: #000;
}

/* ========================================
   RECHTLICHE SEITEN (AGB, Datenschutz)
   ======================================== */

.legal-page {
    padding: 140px 50px 80px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--tobacco);
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 10px;
}

.legal-subtitle {
    text-align: center;
    color: var(--chai);
    font-size: 0.9rem;
    margin-bottom: 50px;
}

.legal-content {
    background: var(--dark);
    padding: 50px;
    border: 1px solid var(--mahogany);
    margin-bottom: 40px;
}

.legal-content h2 {
    color: var(--tobacco);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 15px;
    text-align: left;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--tobacco);
}

.legal-content a {
    color: var(--tobacco);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--sand);
    text-decoration: underline;
}

.legal-page > .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Footer Links */
.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: var(--sand);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--vanilla);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .tabellen-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .tabelle {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }

    nav.scrolled {
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-icons {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
        z-index: 1000;
        border-left: 1px solid var(--mahogany);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .nav-links a:not(.btn-book)::after {
        display: none;
    }

    .btn-book {
        margin-top: 20px;
        padding: 12px 30px;
    }

    .nav-social {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--mahogany);
    }

    .hero-logo {
        width: 320px;
    }

    .tagline {
        white-space: nowrap;
        font-size: 0.9rem;
    }

    .hero-galerie {
        display: none;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 15px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }

    .hero-galerie img {
        width: 140px;
        height: 140px;
    }

    section {
        padding: 60px 20px;
    }

    .galerie-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kontakt-grid {
        flex-direction: column;
        gap: 30px;
    }

    .event-cards {
        gap: 20px;
    }

    .event-card {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }

    /* Formular Responsive */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .booking-category h3 {
        font-size: 2rem;
    }

    .tattoo-form-container {
        padding-top: 40px;
    }

    /* Tabs Responsive */
    .form-tabs {
        flex-direction: column;
        gap: 0;
    }

    .form-tab {
        padding: 12px 30px;
    }

    .form-tab:first-child {
        border-right: 1px solid var(--sand);
        border-bottom: none;
    }

    .titel {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    /* Legal Pages Responsive */
    .legal-page {
        padding: 120px 20px 60px 20px;
    }

    .legal-page h1 {
        font-size: 1.8rem;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h2 {
        font-size: 1.1rem;
    }

}

/* ========================================
   SCROLL-ANIMATIONEN
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-to-Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--tobacco);
    color: var(--darker);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--sand);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(181, 158, 125, 0.4);
}

/* Cookie-Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    border-top: 1px solid var(--mahogany);
    padding: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 1500;
    backdrop-filter: blur(10px);
}

.cookie-banner p {
    color: var(--sand);
    font-size: 0.85rem;
    font-weight: 300;
}

.cookie-banner a {
    color: var(--tobacco);
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    cursor: pointer;
}

.cookie-banner.hidden {
    display: none;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        text-align: center;
    }
}

/* 404 Seite */
.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 50px 80px 50px;
}

.error-page h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 8rem;
    color: var(--tobacco);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
}

.error-subtitle {
    font-size: 1.3rem;
    color: var(--sand);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Verzögerungen für gestaffelte Animationen */
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }
.fade-in-delay-4 { transition-delay: 0.6s; }
