/* ================= GERMANY CALENDAR TEMPLATE STYLES ================= */
/* Created for: Germany Trade Fairs Calendar 2026 Page */

/* ================= BASE STYLES ================= */
.germany-calendar-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ================= HERO SECTION ================= */
.calendar-hero-section {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 16px;
    margin-bottom: 40px;
}

.calendar-hero-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
}

.calendar-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.calendar-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto 10px;
}

.calendar-hero-note {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.85;
    max-width: 800px;
    margin: 20px auto 0;
}

/* ================= CONTENT SECTIONS ================= */
.calendar-content-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.calendar-section-title {
    color: #1a2980;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.calendar-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #26d0ce 0%, #1a2980 100%);
    border-radius: 2px;
}

.calendar-subsection-title {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

/* ================= OPENING HOOK ================= */
.calendar-opening-hook {
    background: #f0f8ff;
    border-left: 5px solid #3498db;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* ================= STATS SECTION ================= */
.calendar-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.calendar-stat-card {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.calendar-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.calendar-stat-card strong {
    display: block;
    color: #1a2980;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* ================= SEARCH SECTION ================= */
.calendar-search-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 12px;
}

.calendar-search-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.calendar-search-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2c80b9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.calendar-search-tip {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #f1f7fe;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

/* ================= CALENDAR SECTION ================= */
.calendar-main-section {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

/* ================= SYSTEM GRID ================= */
.calendar-system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.calendar-system-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.calendar-system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: #3498db;
}

.calendar-system-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.calendar-system-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.calendar-system-link:hover {
    text-decoration: underline;
}

/* ================= FAQ SECTION ================= */
.calendar-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.calendar-faq-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.calendar-faq-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* ================= NOTICE SECTION ================= */
.calendar-notice-section {
    background: #f0f9ff;
    border-left: 5px solid #1a2980;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

/* ================= CTA SECTION ================= */
.calendar-cta-section {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
    text-align: center;
    padding: 50px 30px;
    border-radius: 16px;
    margin-top: 40px;
}

.calendar-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.calendar-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.calendar-cta-button {
    background: white;
    color: #1a2980;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calendar-cta-button:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.calendar-cta-button-alt {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.calendar-cta-button-alt:hover {
    background: white;
    color: #1a2980;
    transform: translateY(-2px);
}

.calendar-cta-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .germany-calendar-wrapper {
        padding: 15px;
    }
    
    .calendar-hero-title {
        font-size: 2.2rem;
    }
    
    .calendar-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .calendar-content-section {
        padding: 25px;
    }
    
    .calendar-section-title {
        font-size: 1.7rem;
    }
    
    .calendar-cta-buttons {
        flex-direction: column;
    }
    
    .calendar-system-grid,
    .calendar-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= UTILITY CLASSES ================= */
.calendar-text-center {
    text-align: center;
}

.calendar-mb-20 {
    margin-bottom: 20px;
}

.calendar-mb-30 {
    margin-bottom: 30px;
}

.calendar-mt-30 {
    margin-top: 30px;
}

.calendar-text-muted {
    color: #6c757d;
}

.calendar-strong {
    font-weight: 600;
    color: #1a2980;
}