/* Cut-By-Us Barbershop CSS - Vintage 90s Modern Design */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #171717;
    background-color: #2a2a2a;
    overflow-x: hidden;
    width: 100%;
}

/* ===== CUSTOM SCROLLBAR ===== */
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #68aa87, #7bc199);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7bc199, #68aa87);
    box-shadow: 0 0 10px rgba(104, 170, 135, 0.3);
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #68aa87 #1a1a1a;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== VARIABLES (CSS Custom Properties) ===== */
:root {
    /* Colors */
    --primary-green: #68aa87;
    --primary-green-light: #7bc199;
    --primary-green-dark: #5a9775;
    --secondary-orange: #ffbd98;
    --secondary-orange-light: #ffd4b5;
    --secondary-orange-dark: #e6a885;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-700: #404040;
    --neutral-900: #171717;
    --vintage-cream: #f8f6f1;
    --vintage-brown: #8b4513;
    
    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Permanent Marker', cursive;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --container-max-width: 1200px;
    --container-padding: 1rem;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.highlight {
    color: var(--primary-green);
}

.highlight-text {
    font-weight: 600;
    color: var(--primary-green);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1rem;
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    box-shadow: 0 4px 15px rgba(104, 170, 135, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(104, 170, 135, 0.6);
}

.btn-primary::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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(104, 170, 135, 0.4);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    border-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(104, 170, 135, 0.6);
}

.btn-secondary::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;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-outline {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: white;
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(104, 170, 135, 0.4);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    border-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(104, 170, 135, 0.6);
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    left: 0;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: 2px solid #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp::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;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-transparent {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-transparent::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;
}

.btn-transparent:hover::before {
    left: 100%;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(25, 23, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(104, 170, 135, 0.2);
}

.navbar.scrolled {
    background: rgba(25, 23, 28, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo-text {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 400;
}

.nav-logo .logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.nav-logo .logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
        position: relative;
        padding: 0 1.5rem;
    }
    
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .nav-logo .logo-image {
        height: 45px;
    }
    
    .nav-toggle {
        position: absolute;
        right: 1.5rem;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(25, 23, 28, 0.95);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: all var(--transition-fast);
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Prevent scrolling when mobile menu is active */
    .menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Modern Mobile Menu Links */
    .nav-menu .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        text-align: center;
        padding: 1rem 2rem;
        border-radius: 12px;
        background: rgba(104, 170, 135, 0.1);
        border: 1px solid rgba(104, 170, 135, 0.2);
        transition: all var(--transition-fast);
        min-width: 200px;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(104, 170, 135, 0.2);
        border-color: var(--primary-green);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(104, 170, 135, 0.3);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback für den Fall, dass das Bild nicht geladen werden kann */
    background: linear-gradient(135deg, 
        #1a1a1a 0%, 
        #2d2d2d 30%, 
        #1a1a1a 60%, 
        #333333 100%);
    
    /* Echtes Hintergrundbild von Rehan */
    background-image: url('images/Rehan_1080_720.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(1.5px) brightness(0.7) contrast(1.1);
    transform: scale(1.03);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Eleganter dunkler Gradient für bessere Textlesbarkeit */
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(25, 23, 28, 0.6) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtiler schwarzer Overlay für Text-Kontrast */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 2rem;
    backdrop-filter: blur(5px);
    background: rgba(25, 23, 28, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: var(--section-padding);
    background: #333333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    border: 1px solid rgba(104, 170, 135, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(104, 170, 135, 0.3);
    transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(104, 170, 135, 0.5);
}

.service-card h3 {
    color: var(--neutral-900);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--neutral-700);
    margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.portrait {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 4px solid var(--primary-green);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
    color: white;
}

.about-text h2.section-title::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        margin: 0 auto;
    }
    
    .portrait {
        max-width: 300px;
        height: 400px;
        margin: 0 auto;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-text h2.section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stats {
        justify-content: center;
    }
}

/* ===== SERVICES & PRICING ===== */
.services {
    padding: var(--section-padding);
    background: #333333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-fast);
    position: relative;
    border: 1px solid rgba(104, 170, 135, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--neutral-900);
    font-size: 1.4rem;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-200);
    font-weight: 500;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li span:last-child {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== GALLERY - INFINITE SCROLL ===== */
.gallery {
    padding: var(--section-padding);
    background: #1a1a1a;
    overflow: visible;
}

.infinite-gallery {
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
    margin: 3rem 0;
    position: relative;
    padding: 3rem 0;
}

.infinite-gallery::before,
.infinite-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-gallery::before {
    left: 0;
    background: linear-gradient(to right, #1a1a1a, transparent);
}

.infinite-gallery::after {
    right: 0;
    background: linear-gradient(to left, #1a1a1a, transparent);
}

.gallery-track {
    display: flex;
    gap: 2rem;
    animation: infiniteScroll 180s linear infinite;
    width: calc(100% * 3); /* Dreifach so breit für extra smooth infinite loop */
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.666%); /* Ein Drittel der Breite für 3x Setup */
    }
}

.gallery-slide {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    transition: opacity var(--transition-fast);
    border-radius: 15px;
}

.gallery-slide:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 30px rgba(104, 170, 135, 0.4);
}

.gallery-slide:hover::after {
    opacity: 0.5;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-fast);
}

.gallery-slide:hover img {
    transform: scale(1.1);
}



.gallery-info {
    text-align: center;
    margin-top: 2rem;
}

.gallery-info p {
    color: #ccc;
    font-style: italic;
    font-size: 0.9rem;
}

/* Mobile responsive animation speed */
@media (max-width: 768px) {
    .gallery-track {
        animation-duration: 90s; /* Schneller auf Tablet */
    }
}

@media (max-width: 480px) {
    .gallery-track {
        animation-duration: 60s; /* Noch schneller auf Mobile */
        gap: 1rem; /* Weniger Gap auf kleinen Bildschirmen */
    }
    
    .gallery-slide {
        flex: 0 0 250px; /* Kleinere Bilder auf Mobile */
        height: 250px;
    }
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-padding);
    background: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.info-card h3 {
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.hours {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

.hour-item:last-child {
    border-bottom: none;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details a {
    color: var(--primary-green);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    flex: 1;
    min-width: 160px;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.social-link.instagram {
    background: linear-gradient(135deg, #E4405F, #833AB4, #F77737);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2, #42A5F5);
}

.social-link.snapchat {
    background: linear-gradient(135deg, #FFFC00, #FFC107);
    color: #333;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-link::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: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.map-and-social {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        flex: none;
    }
}

/* ===== REVIEWS ===== */
.reviews {
    padding: var(--section-padding);
    background: #333333;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-item {
    background: var(--vintage-cream);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-green);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #FFD700;
    display: flex;
    justify-content: center;
    gap: 2px;
}

.stars i {
    transition: all var(--transition-fast);
}

.stars:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px #FFD700);
}

.review-item p {
    font-style: italic;
    color: var(--neutral-700);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.reviewer {
    font-weight: 600;
    color: var(--primary-green);
}

.google-reviews-section {
    text-align: center;
    margin-top: 3rem;
}

.google-reviews-section h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.google-reviews-grid {
    position: relative;
    min-height: 400px;
    overflow: visible;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    height: auto;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    background: var(--vintage-cream);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.review-stars i {
    color: var(--primary-green);
    font-size: 1.3rem;
}

.review-stars i.inactive {
    color: #ddd;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-900);
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.review-author {
    text-align: center;
    border-top: 2px solid var(--primary-green);
    padding-top: 1.5rem;
}

.review-author h4 {
    margin: 0 0 0.5rem 0;
    color: var(--neutral-900);
    font-size: 1.2rem;
    font-weight: 600;
}

.review-date {
    font-size: 0.9rem;
    color: var(--neutral-700);
}

.reviews-stats {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.reviews-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: auto;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-family: var(--font-accent);
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--primary-green-light);
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    max-height: 90%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--secondary-orange);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 10px 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-10px);
    }
    70% {
        transform: translateX(-50%) translateY(-5px);
    }
    90% {
        transform: translateX(-50%) translateY(-2px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 768px) {
    .hero-buttons .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
        max-width: 200px;
        justify-content: center;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    /* Review Slides Tablet */
    .google-reviews-grid {
        min-height: 450px;
    }
    
    .review-slide {
        padding: 2rem;
        min-height: 450px;
    }
    
    .review-text {
        font-size: 1.05rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    :root {
        --container-padding: 0.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.6rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        max-width: 180px;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    /* Haarschnitte als erstes auf Mobile */
    .pricing-card:nth-child(2) {
        order: -1;
    }
    
    .stats {
        justify-content: space-around;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Review Slides Mobile */
    .google-reviews-grid {
        min-height: 450px;
    }
    
    .review-slide {
        padding: 1.5rem;
        min-height: 450px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .review-author h4 {
        font-size: 1.1rem;
    }
}