/* === FOTOPOLIS 2025 TYPOGRAPHY === */
/* Futura als Hauptschriftart */
@font-face {
    font-family: 'Futura';
    src: local('Futura'), local('Futura PT'), local('Century Gothic');
    font-weight: normal;
    font-style: normal;
}

/* Hide mobile toolbox button on desktop */
@media (min-width: 769px) {
    .mobile-tools-btn {
        display: none !important;
    }
}
/* Kompakte Zeile für Textfarbe & Sichtbarkeit */
.color-visibility-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.color-visibility-row label {
    min-width: 70px;
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-weight: 500;
}
.color-visibility-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.color-swatch:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.color-visibility-controls input[type="color"] {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}
.checkbox-control {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    height: 28px;
}
.checkbox-control input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}
.checkbox-text {
    font-size: 0.97rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --- FOTOPOLIS 2025: Professionell & Elegant mit Gelben Akzenten --- */
:root {
  /* Anthrazit Hauptfarben */
  --anthrazit-dark: #2B2B2B;
  --anthrazit-medium: #3D3D3D;
  --anthrazit-light: #4F4F4F;
  --anthrazit-lighter: #6B6B6B;
  
  /* Fotopolis Akzentfarben (reduzierter Einsatz) */
  --fotopolis-gelb: #fff387;
  --fotopolis-gruen: #55ffa1;
  --fotopolis-blau: #2e01a6;
  --fotopolis-rot: #f20202;
  
  /* Feier-Akzentfarben (Gelb-Familie) */
  --neon-limette: #dfff00;
  --electric-lemon: #faff72;
  --warm-glow: #ffe12d;
  
  /* Feier-Akzentfarben (Grün-Familie) */
  --lime-punch: #a6ff00;
  --mint-pop: #9affc5;
  --toxic-slime: #39ff14;
  
  /* Feier-Akzentfarben (Blau-Familie) */
  --electric-indigo: #6f00ff;
  --cyber-blue: #3b9eff;
  --techno-violet: #a463f2;
  
  /* Feier-Akzentfarben (Rot-Familie) */
  --candy-red: #ff4c4c;
  --pink-punch: #ff0059;
  --hot-magenta: #ff007f;
  
  /* Regenbogen-Akzente (Special Effects) */
  --vivid-purple: #d200ff;
  --neon-orange: #ff9900;
  --toxic-green: #00ff66;
  --sky-cyan: #00eaff;
  --electric-pink: #ff1ac6;
  
  /* Basis-Farben - Anthrazit-basiert */
  --text: #F5F5F5;
  --text-light: #C0C0C0;
  --text-dark: #FFFFFF;
  --background: #2B2B2B;
  
  /* Legacy Support - auf Anthrazit umgestellt */
  --primary: #2B2B2B;
  --secondary: #FFD23F;
  --accent: var(--fotopolis-gelb);
  
  /* Feier-Variablen für Kompatibilität */
  --feier-pink: var(--hot-magenta);
  --feier-purple: var(--techno-violet);
  --feier-green: var(--fotopolis-gruen);
  
  /* RGB-Werte für Alpha-Transparenz */
  --fotopolis-gelb-rgb: 255, 243, 135;
  --fotopolis-rot-rgb: 242, 2, 2;
  --hot-magenta-rgb: 255, 0, 127;
  --cyber-blue-rgb: 59, 158, 255;
  --anthrazit-rgb: 43, 43, 43;
  
  /* Grau-Töne für Text und Hintergründe */
  --text-muted: #999;
  --background-light: #3D3D3D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Video base styles */
video {
    display: block;
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Futura', 'Century Gothic', 'Gill Sans', Arial, sans-serif;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 243, 135, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(255, 243, 135, 0.02) 0%, transparent 25%),
        var(--anthrazit-dark);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Development Notice */
.dev-notice {
    text-align: center;
    padding: 0.5rem;
    background: rgba(255, 243, 135, 0.1);
    border-bottom: 1px solid rgba(255, 243, 135, 0.2);
}

.dev-notice small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Feier-Blasen Hintergrund - 2025 Update - GELB DOMINANT */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255, 243, 135, 0.02) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(255, 243, 135, 0.015) 0%, transparent 25%);
    opacity: 1;
    z-index: -1;
    animation: feierFloat 40s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Feier Float Animation - Beruhigt */
@keyframes feierFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(90deg); }
}

/* Fotopolis 2025 Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Righteous', 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 0.5rem;
}

/* Gradient animation nur für .gradient-text spans */
.gradient-text {
    background: linear-gradient(90deg, 
        #FFFFFF 0%, 
        var(--fotopolis-gelb) 25%, 
        #FFFFFF 50%, 
        var(--fotopolis-gelb) 75%, 
        #FFFFFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
}

/* Emoji spans ohne Grayscale-Filter */
.emoji {
    filter: grayscale(0);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo {
    height: 38px;
    max-width: 160px;
}

.card, .paket {
    background: var(--anthrazit-medium);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0.8rem;
    max-width: 240px;
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--anthrazit-light);
    position: relative;
    transition: all 0.3s ease;
}

.card:hover, .paket:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.paket-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paket-img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pakete-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
}

header {
    background: rgba(43, 43, 43, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(var(--fotopolis-gelb-rgb), 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--fotopolis-gelb);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.logo {
    position: absolute;
    left: 1rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
}

.logo::before {
    display: none; /* Remove emoji from logo */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after, nav a.active::after {
    width: 80%;
}

nav a:hover, nav a.active {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* === DESIGNER-SPECIFIC STYLES === */
.app-container {
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
}

.screen {
    display: none;
}

.screen.active {
    display: block;
}

#layoutSelection h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, 
        #FFFFFF 0%, 
        var(--fotopolis-gelb) 25%, 
        #FFFFFF 50%, 
        var(--fotopolis-gelb) 75%, 
        #FFFFFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
}

#layoutSelection h2::before {
    content: '🎯 ';
    color: var(--secondary);
}

.layout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.layout-card {
    background: var(--anthrazit-medium);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    border: 2px solid var(--anthrazit-light);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.layout-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.layout-card h3 {
    color: var(--text);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.layout-card img {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Layout 4 Bild kleiner machen */
.layout-card[data-layout="layout4"] img {
    max-width: 120px;
}

.designer-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    min-height: 600px;
}

.canvas-area {
    background: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(15px);;
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(var(--fotopolis-rot-rgb), 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid var(--accent);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.canvas-area:hover {
    transform: rotate(0deg);
}

.canvas-container {
    border: 3px solid var(--feier-pink);
    border-radius: 15px;
    margin-bottom: 2rem;
    background: rgba(var(--hot-magenta-rgb), 0.05);
    box-shadow: 0 6px 20px rgba(var(--hot-magenta-rgb), 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.canvas-wrapper {
    position: relative;
    display: inline-block;
}

#designCanvas {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.layout-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 12px;
    overflow: hidden;
    z-index: 5;
}

.editor-mask-overlay {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    display: block;
    border-radius: 12px;
}

.text-overlay {
    position: absolute;
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    color: var(--text);
    cursor: move;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: all;
    text-align: center;
    transform: translate(-50%, -50%);
    white-space: pre-wrap;
    word-wrap: break-word;
    max-width: 90%;
    z-index: 10;
}

.controls {
    background: rgba(255,255,255,0.85);
    -webkit-backdrop-filter: blur(15px);;
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(var(--fotopolis-rot-rgb), 0.15);
    border: 3px solid var(--secondary);
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.controls:hover {
    transform: rotate(0deg);
}

.controls h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.control-group {
    margin-bottom: 2rem;
}

.control-group.compact {
    margin-bottom: 1rem;
}

.font-controls-row,
.color-position-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.font-controls-row .control-group,
.color-position-row .control-group {
    flex: 1;
    margin-bottom: 0;
}

.size-buttons {
    display: flex;
    gap: 0.5rem;
}

.size-btn {
    padding: 0.5rem 0.8rem;
    border: 2px solid var(--accent);
    border-radius: 8px;
    background: white;
    color: var(--text);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.size-btn.active,
.size-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.color-picker-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-picker-compact input[type="color"] {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: var(--text);
}

.toggle-btn {
    padding: 0.6rem 1rem;
    border: 2px solid var(--secondary);
    border-radius: 12px;
    background: white;
    color: var(--secondary);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
}

.toggle-btn:hover,
.toggle-btn.active {
    background: var(--secondary);
    color: white;
}

.position-controls-panel {
    background: rgba(var(--cyber-blue-rgb), 0.1);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    border: 2px solid var(--secondary);
}

.control-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.control-group input,
.control-group select,
.control-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--accent);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.control-group input:focus,
.control-group select:focus,
.control-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--fotopolis-rot-rgb), 0.2);
}

/* Enhanced font and size selects */
.font-select-wide,
.font-size-select {
    min-width: 100%;
    font-weight: 500;
    cursor: pointer;
}

.font-select-wide option,
.font-size-select option {
    padding: 0.5rem;
    font-weight: 500;
}

/* Compact toolbox sections */
.control-section {
    margin-bottom: 0.4rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.control-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.control-group.compact {
    margin-bottom: 0.3rem;
}

.control-group.compact:last-child {
    margin-bottom: 0;
}

.control-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.6rem;
    align-items: end;
}

.control-group.compact label {
    font-size: 0.8rem;
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.control-group.compact textarea {
    min-height: 45px;
    resize: vertical;
    padding: 0.5rem;
    margin-bottom: 0.1rem;
}

.control-group.compact input,
.control-group.compact select {
    padding: 0.5rem;
}

/* Color picker with blob and popup */
.color-picker-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.color-blob {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--text);
    border: 3px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.color-blob:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.canvas-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    background: var(--anthrazit-medium);
    color: var(--text);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border: 2px solid var(--anthrazit-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,211,63,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: var(--anthrazit-light);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    color: var(--secondary);
}

.btn:hover::before {
    left: 100%;
}

.btn.secondary {
    background: var(--secondary);
    color: var(--anthrazit-dark);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 211, 63, 0.3);
}

.btn.secondary:hover {
    background: var(--fotopolis-gelb);
    box-shadow: 0 6px 25px rgba(255, 243, 135, 0.5);
    transform: translateY(-3px);
}

.mobile-tools-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 150;
    background: var(--anthrazit-medium);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    display: none;
}

.mobile-tools-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(var(--fotopolis-rot-rgb), 0.6);
}

.mobile-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--fotopolis-rot);
    z-index: 1001;
}

/* Desktop-optimierte Breiten für Text-Container */
@media (min-width: 769px) {
    /* Text-Cards auf anderen Seiten sollen breit genug für Lesbarkeit sein */
    .card:not(.package-item):not(.layout-card):not(.contact-card) {
        max-width: 800px;
        width: 100%;
        margin: 1.5rem auto;
    }
    
    /* Spezifische Karten für Textinhalte */
    .card.centered-card,
    .card.spaced-card,
    .card.spaced-card-top {
        max-width: 900px;
        width: 100%;
        margin: 2rem auto;
    }
    
    /* Legal cards bleiben wie sie sind - bereits optimiert */
    .legal-card {
        max-width: 900px;
        width: 100%;
        margin: 1.5rem auto;
    }
}

@media (max-width: 768px) {
    .mobile-close-btn {
        display: block;
    }
}

nav a::after {
    content: '';
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav a:hover::after {
    opacity: 0;
}

.hero {
    background: rgba(43, 43, 43, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    margin: 2rem 1rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--anthrazit-light);
    position: relative;
    transition: all 0.3s ease;
}

.hero:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    color: #D0D0D0;
    font-weight: 500;
}

.intro {
    padding: 2rem 1.5rem;
    background: rgba(61, 61, 61, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 600px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    position: relative;
    z-index: 5;
    border: 2px solid var(--anthrazit-light);
}

/* Video Showcase */
.video-showcase {
    margin: 2rem auto;
    max-width: 250px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(var(--fotopolis-gelb-rgb), 0.3);
    border: 2px solid var(--fotopolis-gelb);
    position: relative;
}

.video-showcase:hover {
    box-shadow: 0 12px 40px rgba(var(--fotopolis-gelb-rgb), 0.5);
}

.story-video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    position: relative;
}

.video-showcase:hover::after {
    content: "🔍 Klicken zum Vergrößern";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.intro h2 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, 
        #FFFFFF 0%, 
        var(--fotopolis-gelb) 25%, 
        #FFFFFF 50%, 
        var(--fotopolis-gelb) 75%, 
        #FFFFFF 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
}

.intro ul {
    list-style: none;
    padding: 0;
}

.intro li {
    background: rgba(var(--hot-magenta-rgb), 0.1);
    margin: 0.8rem 0;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--feier-pink);
    font-weight: 500;
    position: relative;
}

.intro li::before {
    content: '🎯';
    margin-right: 0.5rem;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    background: transparent;
    color: var(--text);
    font-size: 1.1rem;
    box-shadow: none;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,211,63,0.1), transparent);
    transition: left 0.5s ease;
}

.button:hover {
    background: rgba(255, 211, 63, 0.1);
    border-color: var(--fotopolis-gelb);
    transform: translateY(-3px);
    box-shadow: none;
    color: var(--secondary);
}

.button:hover::before {
    left: 100%;
}

/* Designer Tool Button Styles */
.btn {
    background: linear-gradient(45deg, var(--fotopolis-gelb), var(--neon-limette));
    color: var(--text);
    border: 2px solid var(--electric-lemon);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(223,255,0,0.3);
}

.btn:hover {
    background: linear-gradient(45deg, var(--neon-limette), var(--fotopolis-gelb));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223,255,0,0.4);
}

.btn.secondary {
    background: linear-gradient(45deg, var(--fotopolis-gruen), var(--feier-green));
    border-color: var(--feier-green);
    box-shadow: 0 4px 15px rgba(85,255,161,0.3);
}

.btn.secondary:hover {
    background: linear-gradient(45deg, var(--feier-green), var(--fotopolis-gruen));
    box-shadow: 0 6px 20px rgba(85,255,161,0.4);
}

footer {
    text-align: center;
    padding: 1rem;
    background: var(--anthrazit-dark);
    color: var(--text);
    margin-top: 2rem;
    font-size: 1rem;
    border-top: 2px solid var(--secondary);
    position: relative;
    z-index: 2;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@media (max-width: 900px) {
    .pakete-block {
        flex-direction: column;
        align-items: center;
    }
    .card, .paket {
        max-width: 340px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .logo {
        position: static;
        order: -1;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    header nav a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .intro {
        padding: 1rem;
        margin: 1rem;
    }
    
    .hero {
        margin: 1rem;
        padding: 2rem 1rem;
        transform: rotate(0deg);
    }
    
    .hero h1 {
        font-size: 2.2rem;
        background: linear-gradient(90deg, #2B2B2B 0%, #f20202 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero h1 .emoji {
        -webkit-text-fill-color: initial;
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 2rem 1rem;
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        background: linear-gradient(90deg, #2B2B2B 0%, #f20202 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .hero h1 .emoji {
        -webkit-text-fill-color: initial;
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .card {
        padding: 1.5rem 1rem;
        margin: 0.5rem;
    }
    
    header nav ul {
        gap: 0.5rem;
    }
    
    header nav a {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .layout-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .layout-card {
        transform: rotate(0deg);
        margin-bottom: 1rem;
    }
    
    .designer-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .canvas-area {
        order: 1;
        margin-bottom: 1rem;
        transform: rotate(0deg);
    }
    
    .controls {
        order: 2;
        transform: rotate(0deg);
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: auto;
        max-height: 100vh;
        z-index: 200;
        overflow-y: auto;
        transition: left 0.3s ease;
        background: rgba(255,255,255,0.85);
        -webkit-backdrop-filter: blur(20px);;
        backdrop-filter: blur(20px);
        padding: 1.5rem 1rem;
    }
    
    .controls.mobile-open,
    .control-panel.mobile-open {
        left: 0;
    }
    
    /* Mobile styles for new control-panel */
    @media (max-width: 768px) {
        .control-panel {
            position: fixed;
            top: 0;
            left: -100%;
            width: 85%;
            height: 100vh;
            z-index: 200;
            overflow-y: auto;
            transition: left 0.3s ease;
            background: rgba(255,255,255,0.95);
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            padding: 1.5rem 1rem;
        }
        
        .control-panel.mobile-open {
            left: 0;
        }
    }
    
    /* Mobile button shows when editor is active */
    @media (max-width: 768px) {
        .mobile-tools-btn {
            display: none;
        }
        
        .mobile-tools-btn.editor-active {
            display: block !important;
        }
    }
    
    .controls .mobile-close-btn,
    .control-panel .mobile-close-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        cursor: pointer;
    }
}

/* Galerie-Grid für Bilder */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    margin: 2rem 0 0 0;
}
.gallery-grid img,
.gallery-grid video {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(var(--fotopolis-gelb-rgb), 0.2);
    background: var(--background-light);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.gallery-grid img:hover,
.gallery-grid video:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(var(--fotopolis-gelb-rgb), 0.4);
    border-color: var(--fotopolis-gelb);
}

/* Klickbare Bilder */
.clickable-image {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(var(--fotopolis-gelb-rgb), 0.5) !important;
    border-color: var(--fotopolis-gelb) !important;
}

.clickable-image:hover::after {
    content: "🔍 Klicken zum Vergrößern";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem 0.5rem 0.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.8rem;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bildvorschau Modal */
.image-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-preview.active {
    display: flex;
}

.image-preview .modal-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview img,
.image-preview video {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(var(--fotopolis-gelb-rgb), 0.3);
}

.image-preview .close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    -webkit-backdrop-filter: blur(10px);;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-preview .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Paket-Karten für Homepage */
.paket-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 12px 40px rgba(var(--fotopolis-gelb-rgb), 0.15);
    -webkit-backdrop-filter: blur(10px);;
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 100%;
}

.paket-card:hover {
    transform: translateY(-8px);
    border-color: var(--fotopolis-gelb);
    box-shadow: 0 20px 50px rgba(var(--fotopolis-gelb-rgb), 0.35);
}

.paket-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.paket-card .paket-img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px 25px 0 0;
    transition: transform 0.3s ease;
}

.paket-card:hover .paket-img {
    transform: scale(1.05);
}

.pakete-block {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem;
}

.paket-card h3 {
    background: linear-gradient(135deg, var(--fotopolis-gelb), var(--electric-lemon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.paket-card .paket-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.paket-card .paket-features li {
    padding: 0.3rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fotobox-varianten {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(var(--fotopolis-gelb-rgb), 0.3);
}

/* Responsive Regeln für 2-Spalten Info-Grids */
@media (max-width: 768px) {
    /* Alle 2-Spalten Info-Grids werden auf mobile zu 1 Spalte */
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Vollbreite Grids auf mobilen Geräten */
    .intro > [style*="display: grid"] {
        padding: 1.5rem !important;
    }
    
    /* Paket-Karten auf Tablets */
    .pakete-block {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 1.5rem !important;
    }
    
    .paket-card .paket-img {
        min-height: 220px !important;
        max-height: 350px !important;
    }
}

@media (max-width: 480px) {
    /* Layout-Grid auf 1 Spalte für kleine Bildschirme */
    .layout-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Auf sehr kleinen Bildschirmen auch Padding reduzieren */
    [style*="grid-template-columns: 1fr 1fr"] > div {
        padding: 1rem !important;
    }
    
    /* Kleinere Schrift auf mobilen Geräten */
    [style*="grid-template-columns: 1fr 1fr"] h3 {
        font-size: 1.1rem !important;
    }
    
    [style*="grid-template-columns: 1fr 1fr"] [style*="font-size: 3rem"] {
        font-size: 2.2rem !important;
    }
    
    [style*="grid-template-columns: 1fr 1fr"] [style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }
    
    /* Paket-Karten auf kleinen Handys */
    .pakete-block {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        padding: 0.5rem !important;
    }
    
    .paket-card .paket-img {
        min-height: 180px !important;
        max-height: 250px !important;
    }
}

/* === DESIGNER STUDIO EXTENSIONS === */
.hero-designer {
    background: var(--anthrazit-dark);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--fotopolis-gelb);
}

.hero-designer h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.designer-studio {
    padding: 3rem 0;
    min-height: 70vh;
}

.design-section {
    display: none;
    padding: 2rem 0;
}

.design-section.active {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upload-options {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.upload-card {
    background: var(--anthrazit-medium);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 3px solid var(--anthrazit-light);
    transition: all 0.3s ease;
}

.upload-card.primary-card {
    border-color: var(--fotopolis-gelb);
}

.upload-card:hover {
    transform: translateY(-5px);
    border-color: var(--fotopolis-gelb);
    box-shadow: 0 12px 40px rgba(255, 210, 63, 0.3);
}

.upload-area {
    text-align: center;
    padding: 3rem 2rem;
    border: 3px dashed var(--fotopolis-gelb);
    border-radius: 15px;
    background: rgba(255, 210, 63, 0.05);
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--fotopolis-gelb);
    background: rgba(255, 210, 63, 0.1);
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.upload-specs {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1rem 0;
}

.btn.upload-btn {
    background: var(--anthrazit-medium);
    color: var(--text);
    border: 2px solid var(--fotopolis-gelb);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.upload-btn:hover {
    background: var(--fotopolis-gelb);
    color: var(--anthrazit-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--fotopolis-gelb-rgb), 0.4);
}

.placeholder-option {
    text-align: center;
    padding: 2rem 1rem;
}

.placeholder-option h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.template-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.template-actions .btn {
    flex: 1;
}

.designer-guide-link {
    display: inline-block;
    text-decoration: none;
}

/* Checkbox Control Styles */
.checkbox-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-control input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* Sticker Settings */
.sticker-settings {
    background: var(--anthrazit-medium);
    border-radius: 24px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 3px solid var(--fotopolis-gelb);
}

.sticker-settings h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--fotopolis-gelb);
}

.upload-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-trigger {
    flex: 1;
}

.sticker-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    min-height: 60px;
    padding: 1rem;
    border: 2px dashed var(--fotopolis-gelb);
    border-radius: 12px;
    background: rgba(255, 210, 63, 0.05);
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.sticker-item {
    position: relative;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 0.75rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sticker-item:hover {
    border-color: var(--fotopolis-blau);
    transform: scale(1.02);
}

.sticker-item.selected {
    border-color: var(--fotopolis-gelb);
    box-shadow: 0 0 0 2px var(--fotopolis-gelb);
}

.sticker-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.sticker-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.sticker-toggle input[type="checkbox"] {
    margin: 0;
    width: 12px;
    height: 12px;
}

.sticker-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

/* Sticker Notification */
.sticker-notification {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #FFD23F 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.sticker-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sticker-notification::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFA500;
}

.layout-checkboxes {
    display: flex;
    justify-content: center;
}

.layout-checkbox {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text);
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 4px;
    background: rgba(var(--fotopolis-gelb-rgb), 0.1);
    transition: background 0.2s ease;
    min-width: 24px;
    min-height: 24px;
}

.checkbox-label:hover {
    background: rgba(var(--fotopolis-gelb-rgb), 0.2);
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 14px;
    height: 14px;
}

.remove-sticker {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fotopolis-rot);
    color: white;
    border: none;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sticker-item:hover .remove-sticker {
    opacity: 1;
}

.sticker-remove {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--fotopolis-rot);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Standard-Designs Styles */
.standard-designs-option {
    text-align: center;
    padding: 2rem 1rem;
}

.designs-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.designs-preview-grid img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.designs-preview-grid img:hover {
    border-color: var(--fotopolis-gelb);
    transform: scale(1.05);
}

.standard-designs-option h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Standard-Designs Modal */
.modal,
.standard-designs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show,
.standard-designs-modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--anthrazit-dark);
    border: 3px solid var(--fotopolis-gelb);
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content,
.standard-designs-modal.show .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    margin: 1rem 0;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.modal-note {
    color: var(--fotopolis-gelb);
    font-weight: 600;
    margin-top: 1.5rem !important;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.modal-actions .btn {
    min-width: 200px;
}


.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--anthrazit-light);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.close-modal:hover {
    background-color: var(--anthrazit-medium);
}

.standard-designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.design-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--anthrazit-light);
    transition: all 0.2s ease;
    background: var(--anthrazit-medium);
}

.design-item:hover {
    border-color: var(--fotopolis-gelb);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.design-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.design-item span {
    display: block;
    padding: 1rem;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.editor-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.canvas-container {
    background: var(--anthrazit-medium);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 3px solid var(--fotopolis-gelb);
}

.current-layout-info {
    text-align: center;
    margin-bottom: 2rem;
}

.design-canvas {
    width: 100%;
    max-width: 450px;
    height: 300px;
    border: 3px solid var(--fotopolis-rot);
    border-radius: 15px;
    background: #fff;
}

.control-panel {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Text Settings - Separater Rahmen wie Sticker-Settings */
.text-settings {
    background: var(--anthrazit-medium);
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 3px solid var(--fotopolis-gelb);
}

.text-settings h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--fotopolis-gelb);
}

.group-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.control-item {
    margin-bottom: 1.5rem;
}

.control-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.control-item input,
.control-item select,
.control-item textarea {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid var(--anthrazit-light);
    border-radius: 10px;
    font-size: 0.9rem;
    background: var(--anthrazit-dark);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.control-item input:focus,
.control-item select:focus,
.control-item textarea:focus {
    outline: none;
    border-color: var(--fotopolis-gelb);
}

.control-item textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.4;
}

.color-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--fotopolis-gelb);
    cursor: pointer;
}

.range-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.range-control input[type="range"] {
    flex: 1;
}

.apply-to-all {
    background: rgba(var(--fotopolis-gelb-rgb), 0.1);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--fotopolis-gelb);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.layout-hero-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.layout-nav-item {
    background: var(--anthrazit-medium);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    text-align: center;
    cursor: pointer;
    border: 3px solid var(--anthrazit-light);
    transition: all 0.3s ease;
}

.layout-nav-item.active {
    border-color: var(--fotopolis-gelb);
    background: var(--anthrazit-dark);
}

.layout-nav-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 63, 0.4);
    border-color: var(--fotopolis-gelb);
}

.layout-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.layout-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.section-actions {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn.secondary {
    background: var(--anthrazit-medium);
    color: var(--text);
    border: 2px solid var(--fotopolis-gelb);
}

.btn.secondary:hover {
    background: var(--fotopolis-gelb);
    color: var(--anthrazit-dark);
}

.btn.primary {
    background: var(--fotopolis-gelb);
    color: var(--anthrazit-dark);
    border: none;
}

.btn.primary:hover {
    background: var(--anthrazit-dark);
    color: var(--fotopolis-gelb);
    border: 2px solid var(--fotopolis-gelb);
}

.success-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.customer-form {
    background: var(--anthrazit-dark);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
    border: 2px solid var(--anthrazit-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.customer-form .control-item {
    margin-bottom: 0;
}

.customer-form .control-item.full-width {
    grid-column: 1 / -1;
}

.customer-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
}

.customer-form input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(var(--fotopolis-gelb-rgb), 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.customer-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(var(--fotopolis-gelb-rgb), 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.customer-form input:focus,
.customer-form textarea:focus {
    outline: none;
    border-color: var(--fotopolis-gelb);
    box-shadow: 0 0 0 3px rgba(var(--fotopolis-gelb-rgb), 0.1);
}

.customer-form input:required {
    border-left: 4px solid var(--fotopolis-gelb);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .customer-form {
        padding: 1.5rem;
    }
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.mask-preview-container {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(var(--fotopolis-gelb-rgb), 0.1);
    border-radius: 12px;
    border: 2px dashed var(--fotopolis-gelb);
}

.mask-preview-container h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.mask-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.mask-preview {
    text-align: center;
}

.mask-preview span {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.mask-canvas {
    border-radius: 8px;
    border: 2px solid var(--fotopolis-blau);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
}

.mask-info {
    font-size: 0.85rem;
    color: var(--text);
    margin: 0;
    text-align: center;
    opacity: 0.8;
}

/* PNG-based Mask Previews - EINFACH & EFFEKTIV */
.png-preview-box {
    position: relative;
    width: 150px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--fotopolis-blau);
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.png-preview-box .base-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.png-preview-box .mask-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.85;
}

.upload-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.upload-progress .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--fotopolis-gelb);
    border-top: 4px solid var(--fotopolis-rot);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.upload-progress h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.upload-progress p {
    color: var(--text);
    opacity: 0.7;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .upload-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .editor-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .layout-hero-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .section-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Sticker Gallery Styles */
.sticker-gallery {
    display: grid;
    gap: 1rem;
    max-height: 300px;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.sticker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.sticker-item img {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    border-radius: 4px;
}

.sticker-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sticker-toggle input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.remove-sticker {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    border: none;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.remove-sticker:hover {
    background: #c82333;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid var(--primary);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary);
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: var(--primary);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
}

/* Legal Card Styles for Impressum and Datenschutz */
.legal-card {
    background: rgba(255,255,255,0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 1.5rem 0;
    box-shadow: 0 8px 32px rgba(168,85,247,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
}

.legal-card h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.legal-card h3 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text);
}

.legal-card ul {
    padding-left: 0;
    list-style: none;
    margin: 1rem 0;
}

.legal-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.legal-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.legal-card a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-card a:hover {
    border-bottom-color: var(--primary);
}

@media (max-width: 768px) {
    .legal-card {
        margin: 1rem 0;
        padding: 1.5rem;
    }
    
    .legal-card h2 {
        font-size: 1.2rem;
    }
}

/* Clean Layout Classes */
.section-title {
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 0 3rem 0;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
}

.benefit-card.feier-pink {
    background: rgba(255,0,127,0.1);
    border-left: 4px solid var(--feier-pink);
}

.benefit-card.secondary {
    background: rgba(59,158,255,0.1);
    border-left: 4px solid var(--secondary);
}

.benefit-card.feier-purple {
    background: rgba(164,99,242,0.1);
    border-left: 4px solid var(--feier-purple);
}

.benefit-card.feier-green {
    background: rgba(85,255,161,0.1);
    border-left: 4px solid var(--feier-green);
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
}

.benefit-icon.small {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.benefit-title.feier-pink {
    color: var(--feier-pink);
}

.benefit-title.secondary {
    color: var(--secondary);
}

.benefit-title.feier-purple {
    color: var(--feier-purple);
}

.benefit-title.feier-green {
    color: var(--feier-green);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.package-item {
    text-align: center;
}

.package-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255,243,135,0.2);
    transition: transform 0.3s ease;
}

.package-image:hover {
    transform: scale(1.05);
}

.flex-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.flex-text {
    flex: 1;
    min-width: 300px;
}

.flex-image {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(242,2,2,0.2);
}

.content-image.spiegel {
    box-shadow: 0 8px 32px rgba(164,99,242,0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0 0 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,243,135,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 210, 63, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    color: var(--text);
}

.spaced-card {
    margin: 2rem 0;
}

.pakete-grid {
    gap: 3rem;
}

.paket-image-container {
    text-align: center;
}

.paket-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255,243,135,0.2);
}

.centered-card {
    margin-bottom: 2rem;
    text-align: center;
}

.card-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.wohnwagen-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(242,2,2,0.2);
}

.spaced-card-top {
    margin-top: 2rem;
}

.centered-text {
    text-align: center;
    margin-top: 1.5rem;
}

.button-spaced {
    margin-top: 1rem;
}

.contact-card {
    text-align: center;
    color: white;
    border: none;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-title {
    color: white;
    margin-bottom: 1rem;
}

.contact-main {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-main-small {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-main-mini {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

.contact-subtitle {
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

.contact-instagram {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

.whatsapp-card {
    background: linear-gradient(135deg, var(--fotopolis-gruen), var(--toxic-slime));
}

.phone-card {
    background: linear-gradient(135deg, var(--fotopolis-rot), var(--hot-magenta));
}

.email-card {
    background: linear-gradient(135deg, var(--cyber-blue), var(--fotopolis-blau));
}

.instagram-card {
    background: linear-gradient(135deg, var(--techno-violet), var(--vivid-purple));
}

.facebook-card {
    background: linear-gradient(135deg, var(--fotopolis-gelb), var(--neon-orange));
}

.centered-large-text {
    text-align: center;
    font-size: 1.1rem;
}

/* 3D Carousel Styles */
.photo-carousel-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255,234,0,0.1), rgba(85,255,161,0.1));
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.carousel-item {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    cursor: pointer;
    border: 4px solid var(--fotopolis-gelb);
    background: white;
}

.carousel-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.8s ease;
}

.carousel-item.active {
    z-index: 10;
    transform: translateZ(100px) scale(1.1);
    box-shadow: 0 25px 60px rgba(var(--fotopolis-gelb-rgb), 0.4);
    border-color: var(--primary);
}

.carousel-item.active img {
    filter: brightness(1.1) contrast(1.1);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-item.active .carousel-caption {
    transform: translateY(0);
}

.carousel-item:hover .carousel-caption {
    transform: translateY(0);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255,234,0,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

/* Mobile Responsive Carousel */
@media (max-width: 768px) {
    .photo-carousel-section {
        padding: 2rem 1rem;
    }
    
    .carousel-container {
        height: 350px;
        perspective: 800px;
    }
    
    .carousel-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .carousel-item {
        width: 250px;
        height: 250px;
        border-width: 2px;
    }
    
    .carousel-item img {
        height: 200px;
    }
    
    .carousel-caption {
        padding: 1rem 1rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .carousel-nav {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 300px;
        perspective: 600px;
    }
    
    .carousel-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .carousel-item {
        width: 200px;
        height: 200px;
    }
    
    .carousel-item img {
        height: 160px;
    }
    
    .carousel-caption {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 1.5rem;
    gap: 0.8rem;
    background: rgba(255,255,255,0.9);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(var(--fotopolis-gelb-rgb), 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--fotopolis-gelb);
    transform: scale(1.2);
    border-color: var(--fotopolis-rot);
}

.dot:hover {
    background: var(--fotopolis-gelb);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .benefit-grid,
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .flex-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .carousel-container {
        height: 300px;
    }
    
    .carousel-caption {
        font-size: 1rem;
        padding: 1.5rem 1rem 0.8rem;
    }
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    color: var(--primary);
}

.feature-description {
    font-size: 0.95rem;
    margin-top: 0.75rem;
    color: var(--text);
}

.spaced-card {
    margin: 2rem 0;
}

.pakete-grid {
    gap: 3rem;
}

.paket-image-container {
    text-align: center;
}

.paket-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(255,243,135,0.2);
}

.centered-card {
    margin-bottom: 2rem;
    text-align: center;
}

.card-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.flex-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.flex-text {
    flex: 1;
    min-width: 300px;
}

.flex-image {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.wohnwagen-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(242,2,2,0.2);
}

.spaced-card-top {
    margin-top: 2rem;
}

.centered-text {
    text-align: center;
    margin-top: 1.5rem;
}

.button-spaced {
    margin-top: 1rem;
}

.contact-card {
    text-align: center;
    color: white;
    border: none;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-title {
    color: white;
    margin-bottom: 1rem;
}

.contact-main {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-main-small {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-main-mini {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

.contact-subtitle {
    margin-bottom: 0;
    color: rgba(255,255,255,0.9);
}

.contact-instagram {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: white;
}

.whatsapp-card {
    background: linear-gradient(135deg, var(--fotopolis-gruen), var(--toxic-slime));
}

.phone-card {
    background: linear-gradient(135deg, var(--fotopolis-rot), var(--hot-magenta));
}

.email-card {
    background: linear-gradient(135deg, var(--cyber-blue), var(--fotopolis-blau));
}

.instagram-card {
    background: linear-gradient(135deg, var(--techno-violet), var(--vivid-purple));
}

.facebook-card {
    background: linear-gradient(135deg, var(--fotopolis-gelb), var(--neon-orange));
}

.centered-large-text {
    text-align: center;
    font-size: 1.1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.disclaimer-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1;
}

.disclaimer-content {
    position: relative;
    z-index: 2;
    background: var(--anthrazit-dark);
    border: 3px solid var(--fotopolis-gelb);
    border-radius: 12px;
    max-width: 70%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 210, 63, 0.3);
}

.disclaimer-image {
    display: block;
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.disclaimer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--anthrazit-medium);
    color: var(--fotopolis-gelb);
    border: 2px solid var(--fotopolis-gelb);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    font-weight: bold;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-close:hover {
    background: var(--fotopolis-gelb);
    color: var(--anthrazit-dark);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .flex-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-title {
        font-size: 1.1rem;
    }
    
    .disclaimer-content {
        max-width: 95%;
        border-width: 2px;
    }
    
    .disclaimer-close {
        width: 35px;
        height: 35px;
        font-size: 24px;
        line-height: 31px;
        top: 10px;
        right: 10px;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        padding: 0.5rem;
    }
    
    .feature-item {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .feature-description {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .benefit-grid {
        gap: 1rem;
        padding: 1rem;
    }
    
    .package-grid {
        gap: 1rem;
    }
}

