/* ===================================
   KESKIN'S BARBERSHOP - STYLESHEET
   Design: Luxuriös, Schwarz-Gold
   =================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #b8935f;
    --gold-dark: #9d7d51;
    --gold-light: #d4ae7f;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --text-gray: #cccccc;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 5px 20px rgba(184, 147, 95, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

/* Verhindere Transitions beim initialen Laden */
body.loading * {
    transition: none !important;
    animation-duration: 0s !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Ornaments & Decorative Elements */
.ornament-small {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 15px;
}

.ornament-top {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 20px;
}

.ornament-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 20px auto;
    position: relative;
}

.ornament-divider::before,
.ornament-divider::after {
    content: '◆';
    position: absolute;
    color: var(--gold);
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.ornament-divider::before {
    left: -15px;
}

.ornament-divider::after {
    right: -15px;
}

.service-ornament,
.package-ornament {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 15px auto;
    position: relative;
}

.service-ornament::before,
.package-ornament::before {
    content: '◆';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -4px;
    color: var(--gold);
    font-size: 8px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 147, 95, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease-in-out;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.logo-container {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-container .logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(184, 147, 95, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    background-image:
        url('../images/stuehle.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 120px;
    opacity: 1;
}

body:not(.loading) .hero {
    transition: opacity 0.1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 60px auto 30px;
    /* Mehr Abstand nach oben */
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(184, 147, 95, 0.5);
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-hours {
    margin-top: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--gold);
    border-radius: 5px;
}

.hero-hours p {
    margin: 5px 0;
    color: var(--text-gray);
}

.hours-table {
    border-collapse: collapse;
    margin: 10px auto;
    display: inline-block;
}

.hours-table td {
    padding: 3px 10px;
    color: var(--text-gray);
    border: none;
    text-align: left;
}

.hours-table .day {
    text-align: right;
    padding-right: 15px;
}

.hours-table .time {
    text-align: left;
}

.hours-table tr.closed-day td {
    opacity: 0.5;
    font-style: italic;
}

.contact-hours {
    margin: 5px 0;
}

.contact-hours td {
    padding: 2px 8px;
}

.hero-notice {
    color: var(--gold) !important;
    font-weight: 600;
    margin-top: 10px !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    transition: opacity 0.1s ease-out;
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--dark-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 3px solid var(--gold);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    border: 4px solid var(--black);
}

.badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    text-transform: uppercase;
}

.about-text h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-left: 3px solid var(--gold);
}

.highlight-icon {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon img {
    width: auto;
    height: 40px;
    object-fit: contain;
}

.highlight-text {
    font-weight: 600;
    color: var(--white);
}

.about-cta-text {
    background: var(--light-gray);
    padding: 20px;
    border-left: 4px solid var(--gold);
    margin-top: 30px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--black);
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.pricelist-showcase {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 30px;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
}

.pricelist-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 800;
    margin: 15px 0;
    font-family: var(--font-heading);
}

.service-time {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 15px;
}

/* Packages */
.packages-title {
    text-align: center;
    color: var(--gold);
    margin-top: 100px;
    margin-bottom: 40px;
    font-size: 2rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: var(--dark-gray);
    padding: 25px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.package-premium {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark-gray), var(--light-gray));
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.package-card h4 {
    color: var(--white);
    margin-top: 15px;
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.package-includes {
    list-style: none;
    margin: 12px 0 0 0;
    text-align: left;
    flex-grow: 1;
}

.package-price {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 800;
    margin: 15px 0 0 0;
    font-family: var(--font-heading);
}

.package-includes li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 0.9rem;
}

.services-note {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 10px;
}

.services-note p {
    color: var(--white);
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--dark-gray);
}

.gallery-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Instagram Button (ohne Consent) */
.instagram-button-container {
    text-align: center;
    margin: 40px auto;
}

.btn-instagram {
    display: inline-block;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
    font-family: var(--font-heading);
}

.btn-instagram:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.6);
}

/* Instagram Integration */
.instagram-container {
    max-width: 900px;
    margin: 0 auto 60px;
}

.instagram-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--black), var(--dark-gray));
    padding: 50px 30px;
    border-radius: 15px;
    border: 2px solid var(--gold);
    margin-bottom: 40px;
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.instagram-cta h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.instagram-cta p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-instagram {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(188, 24, 136, 0.4);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(188, 24, 136, 0.6);
}

.instagram-feed {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    min-height: 400px;
}

.instagram-feed iframe {
    max-width: 100%;
}

/* Instagram Feed Placeholder */
.instagram-feed-placeholder {
    background: var(--black);
    border: 2px dashed var(--gold);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.placeholder-content h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.placeholder-content p {
    color: var(--white);
    margin: 20px 0 10px;
    font-weight: 600;
}

.placeholder-content ol {
    color: var(--text-gray);
    margin: 10px 0 20px 20px;
    line-height: 1.8;
}

.placeholder-content ol li {
    margin: 8px 0;
}

.placeholder-content a {
    color: var(--gold);
    text-decoration: underline;
}

.placeholder-content a:hover {
    color: var(--gold-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gallery-overlay p {
    color: var(--white);
}

.gallery-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-box {
    background: var(--black);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Zentriere Contact-Info wenn Maps ausgeblendet ist */
.contact-content.no-consent {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: var(--dark-gray);
    padding: 40px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    box-shadow: var(--shadow-gold);
}

.contact-card h3 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: auto;
    height: 50px;
    object-fit: contain;
}

.contact-detail strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-detail p {
    color: var(--text-gray);
    line-height: 1.6;
}

.closed-day {
    color: #999;
    font-style: italic;
}

.contact-notice {
    background: var(--light-gray);
    padding: 20px;
    border-left: 4px solid var(--gold);
    margin-top: 30px;
}

.contact-notice p {
    color: var(--text-gray);
    margin-bottom: 5px;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    color: var(--gold);
    margin-bottom: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 15px;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
}

.social-icon {
    font-size: 1.5rem;
}

.social-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.contact-map {
    width: 100%;
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    padding: 60px 0 30px;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(184, 147, 95, 0.3);
}

.footer-tagline {
    color: var(--text-gray);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-gray);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-column p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-hours {
    margin: 0;
}

.footer-hours td {
    color: var(--text-gray);
    padding: 2px 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    color: var(--text-gray);
}

.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: var(--text-gray);
    margin: 0 10px;
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-legal span {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 5px 0;
        /* Noch kleineres padding für mobile Navbar */
    }

    .logo-container .logo {
        height: 30px;
        /* Noch kleineres Logo in mobiler Ansicht */
        width: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 40px;
        /* Weitere Anpassung wegen noch kleinerer Navbar */
        left: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        padding: 40px;
        transition: var(--transition);
        border-top: 1px solid var(--gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        gap: 4px;
        /* Kleinerer Abstand */
    }

    .hamburger span {
        width: 20px;
        /* Kleinere Breite */
        height: 2px;
        /* Kleinere Höhe */
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: span 1;
    }

    .instagram-cta {
        padding: 30px 20px;
    }

    .instagram-cta h3 {
        font-size: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 120vh;
        /* Höher in mobiler Ansicht */
        padding: 100px 0 100px;
        /* Mehr Padding unten */
    }

    .scroll-indicator {
        display: none;
        /* Scroll-Indikator auf mobil ausblenden */
    }

    .btn-primary {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0 !important;
    }
}

/* Legal Pages */
.legal-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--black);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-gray);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
}

.legal-content h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gold);
}

.legal-content h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: var(--white);
    line-height: 1.8;
    margin: 15px 0 15px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--gold-light);
    text-decoration: underline;
    transition: var(--transition);
}

.legal-content a:hover {
    color: var(--gold);
}

.legal-content strong {
    color: var(--gold-light);
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
    color: #999;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-section {
        padding: 100px 0 60px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-top: 3px solid var(--gold);
    padding: 25px 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.cookie-btn-accept {
    background: var(--gold);
    color: var(--black);
}

.cookie-btn-accept:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-decline:hover {
    background: var(--white);
    color: var(--black);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
    font-size: 0.9rem;
    padding: 10px 20px;
}

.cookie-btn-settings:hover {
    background: var(--gold-light);
    color: var(--black);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Consent Placeholders */
.consent-placeholder {
    background: var(--dark-gray);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 60px 30px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.consent-placeholder.hide {
    display: none;
}

.map-consent {
    height: 100%;
    min-height: 500px;
}

.consent-message {
    max-width: 500px;
}

.consent-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.consent-message h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.consent-message p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.consent-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.consent-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(184, 147, 95, 0.4);
}

/* Animation für das Einblenden */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.consent-activated {
    animation: fadeInScale 0.5s ease-out;
}

@media (max-width: 768px) {
    .consent-placeholder {
        padding: 40px 20px;
        min-height: 300px;
    }

    .map-consent {
        min-height: 400px;
    }

    .consent-icon {
        font-size: 3rem;
    }

    .consent-message h3 {
        font-size: 1.5rem;
    }

    .consent-message p {
        font-size: 1rem;
    }
}