/* Deutsche Post DHL Styling for Post Page */
/* This file is specifically for the post.html page */

/* Override main page colors with DHL colors */
/* Hintergrund-Bild ist jetzt aktiviert */
body {
    background-color: var(--primary-black);
    background-image: url('front.jpeg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(212, 5, 17, 0.1) 50%, rgba(26, 26, 26, 0.4) 100%) !important;
    z-index: -1;
    pointer-events: none;
}

/* Page header with DHL branding */
.page-header {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.9) 0%, rgba(212, 5, 17, 0.9) 100%) !important;
    color: white !important;
}

.page-header h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Services introduction */
.services-intro {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(212, 5, 17, 0.2) 100%) !important;
    border: 2px solid #ffcc00 !important;
}

.services-intro h2 {
    color: #ffcc00 !important;
}

/* Service items */
.service-item.detailed {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 2px solid #ffcc00 !important;
    transition: all 0.3s ease;
}

.service-item.detailed:hover {
    border-color: #d40511 !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3) !important;
}

.service-item.detailed h3 {
    color: #ffcc00 !important;
}

.service-item.detailed i {
    color: #ffcc00 !important;
}

.service-item.detailed li:before {
    color: #d40511 !important;
}

/* Opening hours */
.opening-hours-post h2 {
    color: #ffcc00 !important;
}

.hours-card {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 2px solid #ffcc00 !important;
}

.hours-card h3 {
    color: #ffcc00 !important;
    border-bottom: 2px solid #ffcc00 !important;
}

.hours-card .time {
    color: #d40511 !important;
}

.status-indicator-post {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(212, 5, 17, 0.2) 100%) !important;
    border: 1px solid #ffcc00 !important;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.status-indicator-post.status-open {
    border-color: #10b981 !important;
    background: rgba(16, 185, 129, 0.2) !important;
    color: #10b981 !important;
}

.status-indicator-post.status-closed {
    border-color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.2) !important;
    color: #dc2626 !important;
}

.status-indicator-post i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Info section */
.post-info h2 {
    color: #ffcc00 !important;
}

.info-card {
    background: rgba(26, 26, 26, 0.95) !important;
    border: 1px solid #ffcc00 !important;
}

.info-card h4 {
    color: #d40511 !important;
}

.info-card h4 i {
    color: #ffcc00 !important;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(212, 5, 17, 0.2) 100%) !important;
    border: 2px solid #ffcc00 !important;
}

.contact-cta h3 {
    color: #ffcc00 !important;
}

.cta-button {
    background: linear-gradient(135deg, #ffcc00 0%, #d40511 100%) !important;
    color: black !important;
    font-weight: bold;
}

.cta-button:hover {
    background: linear-gradient(135deg, #d40511 0%, #ffcc00 100%) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4) !important;
}

/* Navigation styling */
nav a:hover {
    color: #ffcc00 !important;
}

nav a.active {
    color: #ffcc00 !important;
    border-bottom: 2px solid #ffcc00 !important;
}