/**
 * Main CSS für Royal Desire
 * 
 * Enthält alle grundlegenden Styles für die Website
 */

/* Globale Einstellungen */
:root {
    --primary-color: #c70039;
    --secondary-color: #f5f5f5;
    --accent-color: #d4af37;
    --silver-color: #c0c0c0;
    --dark-red: #8b0000;
    --gold-light: #f8e9a1;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #0a0a0a;
    --transition: all 0.3s ease;
}

/* Reset und Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    background-image: 
        linear-gradient(45deg, rgba(10, 10, 10, 0.97), rgba(10, 10, 10, 0.95)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text-Align-Helfer */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Überschriften */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--light-text);
}

h1 {
    font-size: 42px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

h2 {
    font-size: 32px;
    letter-spacing: 2px;
}

h3 {
    font-size: 24px;
    letter-spacing: 1px;
}

p {
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: transparent;
    color: var(--light-text);
    padding: 15px 40px;
    border: 1px solid var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin: 10px 0;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition);
}

.btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.btn:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: rgba(192, 192, 192, 0.1);
    border-color: var(--silver-color);
}

.btn-secondary:hover {
    color: var(--silver-color);
    border-color: var(--silver-color);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Formular-Styles */
input, textarea, select, button {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    padding: 12px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--light-text);
    border-radius: 0;
    margin-bottom: 15px;
    width: 100%;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

button {
    cursor: pointer;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
    padding: 0 10px;
}

.form-check {
    display: flex;
    align-items: start;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 6px;
}

.form-note {
    font-size: 14px;
    color: var(--silver-color);
    margin-bottom: 10px;
}

.form-actions {
    margin-top: 30px;
}

span.required {
    color: var(--primary-color);
}

/* Fehlermeldungen */
.error-messages {
    background-color: rgba(199, 0, 57, 0.2);
    border: 1px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 20px;
}

.error-messages ul {
    list-style: disc;
    padding-left: 20px;
}

/* Alert-Boxen */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    color: #4CAF50;
}

.alert-info {
    background-color: rgba(33, 150, 243, 0.2);
    border-color: #2196F3;
    color: #2196F3;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.2);
    border-color: #FFC107;
    color: #FFC107;
}

.alert-danger {
    background-color: rgba(199, 0, 57, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Cinzel', serif;
    background: linear-gradient(to right, var(--silver-color), var(--accent-color), var(--silver-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding: 0 10px;
}

.logo::before, .logo::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    transition: var(--transition);
}

.logo::before {
    top: 0;
    left: 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.logo::after {
    bottom: 0;
    right: 0;
    background: linear-gradient(to left, var(--primary-color), var(--accent-color));
}

.logo:hover::before, .logo:hover::after {
    width: 100%;
}

/* Navigation */
nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

nav ul li.active a {
    color: var(--accent-color);
}

nav ul li a::before, nav ul li a::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    transition: var(--transition);
}

nav ul li a::before {
    top: 0;
    left: 0;
    background: var(--primary-color);
}

nav ul li a::after {
    bottom: 0;
    right: 0;
    background: var(--accent-color);
}

nav ul li a:hover {
    color: var(--silver-color);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

nav ul li a:hover::before, nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--light-text);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition);
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Hero-Bereich */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(139, 0, 0, 0.3), rgba(0, 0, 0, 0.8)), url('/assets/images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: shimmer 3s infinite;
    position: relative;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    z-index: 2;
}

@keyframes shimmer {
    0% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(199, 0, 57, 0.4);
    }
    100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
}

.hero p {
    font-size: 22px;
    margin-bottom: 40px;
    animation: fadeSlideUp 1.2s ease;
    font-style: italic;
    color: var(--silver-color);
    position: relative;
    z-index: 2;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Title für andere Seiten */
.page-title {
    padding: 150px 0 50px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(139, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url('/assets/images/page-title-bg.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
}

.page-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(317deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%), linear-gradient(213deg, rgba(212, 175, 55, 0.03) 25%, transparent 25%), linear-gradient(128deg, transparent 75%, rgba(212, 175, 55, 0.03) 75%), linear-gradient(38deg, transparent 75%, rgba(212, 175, 55, 0.03) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.page-title h1 {
    position: relative;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: 500px;
}

/* Section-Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--light-text);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--silver-color);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid var(--accent-color);
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

footer::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
                    var(--primary-color) 0%, 
                    var(--accent-color) 25%, 
                    var(--silver-color) 50%, 
                    var(--accent-color) 75%, 
                    var(--primary-color) 100%);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* Availability Badge */
.availability {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 20px;
}

.availability.available {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.availability.unavailable {
    background-color: rgba(199, 0, 57, 0.2);
    color: var(--primary-color);
}

.availability i {
    margin-right: 5px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 0 solid var(--accent-color);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(199, 0, 57, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 60px;
    z-index: 3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.gallery-item:hover::before {
    border-width: 4px;
    opacity: 0.5;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05) translateY(-10px);
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
    letter-spacing: 1px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}

.gallery-overlay p {
    font-size: 16px;
    color: var(--silver-color);
    font-style: italic;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 10px;
    left: -5px;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-top: 5px solid #8B6914;
}

.featured-badge i {
    margin-right: 3px;
    color: var(--dark-bg);
}

/* Pagination */
.pagination-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    transition: var(--transition);
    cursor: pointer;
}

.page-link:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.page-link.current {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    cursor: default;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-link.dots {
    background-color: transparent;
    cursor: default;
}

.page-link.dots:hover {
    background-color: transparent;
    color: var(--light-text);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 992px) {
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-col {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
	.logo {
		font-size: 22px;
	}
    .hero h1, .page-title h1, h1 {
        font-size: 24px;
    }
	
	h2 {
		font-size: 22px !important;
	}
    
    .hero p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        width: 100%;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--accent-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .footer-col {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Animationen */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes borderGlow {
    0% {
        border-color: var(--accent-color);
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
    50% {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px rgba(199, 0, 57, 0.5);
    }
    100% {
        border-color: var(--accent-color);
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
    }
}

@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Lightbox-Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: -10px;
    font-size: 30px;
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.lightbox-prev, .lightbox-next {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    margin-left: 20px;
}

.lightbox-next {
    margin-right: 20px;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}
/* Footer-Styles mit Besucherzähler und Logo */

footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    padding: 40px 0 20px;
    position: relative;
}

.footer-logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
	display: inline;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-col h3 {
    color: #c70039;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #c70039;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c70039;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333;
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #c70039;
    transform: translateY(-3px);
}

/* Besucherzähler Styles */
.visitor-counter {
    display: flex;
    justify-content: center;
    background-color: #222;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.counter-item {
    margin: 0 20px;
    text-align: center;
}

.counter-label {
    display: block;
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 3px;
}

.counter-value {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c70039;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .visitor-counter {
        flex-direction: column;
    }
    
    .counter-item {
        margin: 10px 0;
    }
}
/* 
 * Dezenter Hintergrundeffekt für Laufhaus Venus
 * Einfügen in die main.css
 */

/* Hintergrundeffekt-Container */
.bg-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Hinter allen Inhalten */
    overflow: hidden;
    pointer-events: none; /* Damit keine Mausinteraktionen abgefangen werden */
}

/* Hintergrundgitter */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
}

/* Glühende Bereiche */
.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.1) 0%, 
        rgba(199, 0, 57, 0.05) 50%, 
        rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
    animation: moveGlow 25s ease-in-out infinite alternate;
    opacity: 0.6;
}

.glow:nth-child(2) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(199, 0, 57, 0.07) 0%, 
        rgba(212, 175, 55, 0.03) 50%, 
        rgba(0, 0, 0, 0) 70%);
    animation-delay: 5s;
    animation-duration: 30s;
}

/* Partikel */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    animation: float 15s ease-in-out infinite;
}

.particle:nth-child(even) {
    background: var(--primary-color);
}

/* Verschiedene Partikel */
.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 70%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 10%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 60%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 80%;
    left: 30%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 90%;
    animation-delay: 10s;
}

.particle:nth-child(7) {
    width: 5px;
    height: 5px;
    top: 60%;
    left: 40%;
    animation-delay: 12s;
}

.particle:nth-child(8) {
    width: 3px;
    height: 3px;
    top: 50%;
    left: 70%;
    animation-delay: 14s;
}

/* Animationen */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.1;
    }
    80% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes moveGlow {
    0% {
        top: 10%;
        left: 10%;
    }
    25% {
        top: 60%;
        left: 20%;
    }
    50% {
        top: 30%;
        left: 70%;
    }
    75% {
        top: 70%;
        left: 60%;
    }
    100% {
        top: 20%;
        left: 80%;
    }
}
/* Page Loader mit Logo für Venus Laufhaus */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/logo.webp'); /* Pfad zu eurem Logo */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    animation: pulse 1.5s ease-in-out infinite alternate;
}

.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    animation: spin 2s linear infinite;
}

.loader-ring:nth-child(2) {
    width: 80%;
    height: 80%;
    animation-direction: reverse;
    animation-duration: 3s;
    border-top-color: var(--accent-color);
    border-bottom-color: var(--primary-color);
}

.loader-text {
    margin-top: 30px;
    font-family: 'Cinzel', serif;
    color: var(--accent-color);
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    }
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}