/* Feiertage Startseite - Option 1: Warmes Blau */
/* Hauptfarbe: #4A90E2, Akzent: #ffffa0 */

.fdp-homepage {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Simple Header */
.fdp-simple-header {
    text-align: center;
    padding: 60px 40px 40px 40px;
}

.fdp-simple-header h1 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
    color: #2c3e50;
}

/* Buttons */
.fdp-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.fdp-btn-primary {
    background: white;
    color: #4A90E2;
}

.fdp-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fdp-btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.fdp-btn-secondary:hover {
    background: white;
    color: #4A90E2;
    transform: translateY(-2px);
}

/* Sections */
.fdp-section {
    padding: 60px 40px;
}

.fdp-section:first-child {
    padding-top: 20px;
}

.fdp-section-gray {
    background: #f8f9fa;
    border-radius: 12px;
    margin: 0 0 40px 0;
}

.fdp-section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.fdp-section-footer {
    text-align: center;
    margin-top: 30px;
}

.fdp-link-arrow {
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.fdp-link-arrow:hover {
    color: #4a5fc4;
    transform: translateX(5px);
    display: inline-block;
}

/* Feiertage Grid */
.fdp-feiertage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fdp-feiertag-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.fdp-feiertag-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 4px 12px rgba(99, 129, 204, 0.15);
    transform: translateY(-2px);
}

.fdp-card-date {
    background: #4A90E2;
    color: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fdp-card-day {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.fdp-card-month {
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0.9;
}

.fdp-card-content {
    flex: 1;
}

.fdp-card-content h3 {
    color: #4A90E2;
    margin-bottom: 5px;
    font-size: 20px;
}

.fdp-card-content p {
    color: #7f8c8d;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Badges */
.fdp-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
}

.fdp-badge-highlight {
    background: #ffffa0;
    color: #2c3e50;
}

.fdp-badge-info {
    background: #E3F2FD;
    color: #4A90E2;
}

/* Länder Grid */
.fdp-countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.fdp-country-box {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.fdp-country-box:not(.fdp-country-disabled):hover {
    border-color: #4A90E2;
    box-shadow: 0 4px 12px rgba(99, 129, 204, 0.15);
    transform: translateY(-2px);
}

.fdp-country-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.fdp-country-flag {
    font-size: 64px;
    margin-bottom: 15px;
}

.fdp-country-box h3 {
    color: #4A90E2;
    margin-bottom: 10px;
    font-size: 24px;
}

.fdp-country-box p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Bundesländer Liste */
.fdp-bundeslaender-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.fdp-bundesland-link {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fdp-bundesland-link:hover {
    border-color: #4A90E2;
    color: #4A90E2;
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .fdp-simple-header h1 {
        font-size: 32px;
    }
    
    .fdp-simple-header {
        padding: 40px 20px 20px 20px;
    }
    
    .fdp-section {
        padding: 40px 20px;
    }
    
    .fdp-section-title {
        font-size: 24px;
    }
    
    .fdp-feiertage-grid {
        grid-template-columns: 1fr;
    }
    
    .fdp-countries-grid {
        grid-template-columns: 1fr;
    }
    
    .fdp-bundeslaender-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .fdp-hero {
        padding: 40px 20px;
    }
    
    .fdp-bundeslaender-list {
        grid-template-columns: 1fr;
    }
}
