/**
 * Puppenhaus - Additional Styles
 */

/* Typography Enhancements */
.welcome-content {
    text-align: center;
    font-size: 1.1rem;
}

.welcome-content h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.welcome-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Price Sections */
.price-section {
    margin: 2rem 0;
}

.price-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Opening Hours */
.opening-hours {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #ff0080;
}

.opening-hours h3 {
    color: #fff;
    margin-bottom: 10px;
}

/* Buttons */
.button,
.wp-block-button__link {
    display: inline-block;
    background: #ff0080;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover,
.wp-block-button__link:hover {
    background: #cc0066;
    color: white;
}

/* Links */
.entry-content a {
    color: #ff0080;
    text-decoration: underline;
}

.entry-content a:hover {
    color: #ff3399;
}

/* Lists */
.entry-content ul,
.entry-content ol {
    margin: 1rem 0 1rem 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

/* Images in content */
.entry-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.entry-content .aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.entry-content .alignleft {
    float: left;
    margin: 0.5rem 1.5rem 1rem 0;
}

.entry-content .alignright {
    float: right;
    margin: 0.5rem 0 1rem 1.5rem;
}

/* Blockquotes */
.entry-content blockquote {
    border-left: 4px solid #ff0080;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Horizontal Rule */
.entry-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 2rem 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    animation: fadeIn 0.6s ease-out;
}

/* Gallery Lightbox Enhancement */
.gallery-item a {
    display: block;
    position: relative;
}

.gallery-item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 128, 0);
    transition: background 0.3s;
}

.gallery-item a:hover::after {
    background: rgba(255, 0, 128, 0.15);
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    border-top: 2px solid #ff0080;
    padding: 16px 24px;
    z-index: 9998;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-banner.is-visible {
    display: flex;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner p a {
    color: #ff0080;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: Georgia, serif;
    transition: background 0.2s;
}

#cookie-accept {
    background: #ff0080;
    color: #fff;
}

#cookie-accept:hover {
    background: #cc0066;
}

#cookie-decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

#cookie-decline:hover {
    border-color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
}

/* Print Styles */
@media print {
    .background-slideshow,
    .main-navigation,
    .social-links {
        display: none !important;
    }

    .content-wrapper {
        box-shadow: none;
        border: none;
        margin: 0;
        max-width: 100%;
        background: white;
        color: #333;
    }

    .site-footer {
        background: none;
        color: #333;
    }
}
