
/*
Theme Name: PRO Ludwigsau
Theme URI: https://www.pro-ludwigsau.de
Author: Eduard Fast
Author URI: https://www.pro-ludwigsau.de
Description: Kommunalwahl 2026 Theme für PRO Ludwigsau
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pro-ludwigsau
Tags: politics, community, responsive, custom-colors
*/

/* Google Poppins Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
/* Google Montserrat Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #009CA8;
    --secondary-color: #31424A;
    --accent-color: #00b8c5;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --light-bg: #f0f9fa;
    
    /* Section Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #eee;
    --bg-hero: linear-gradient(135deg, #d8fbff 0%, #01545c 100%);
    /* --bg-hero: linear-gradient(135deg, #ffffff 0%, #e6f7f8 100%); */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Main nimmt den restlichen Platz ein */
main {
    flex: 1;
}

/* Bootstrap color override */

.bg-primary {
    background-color: #009CA8 !important;
}

.border-primary {
    border-color: #009CA8 !important;
}

.text-primary {
    color: #009CA8 !important;
}

.bg-secondary {
    background-color: #31424A !important;
}

.border-secondary {
    border-color: #31424A !important;
}

.text-secondary {
    color: #31424A !important;
}

/* Button Primary auf deine Farbe anpassen */
.btn-primary {
    background-color: #009CA8 !important;
    border-color: #009CA8 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    background-color: #007b80 !important; /* dunklere Variante beim Hover */
    border-color: #007b80 !important;
    transform: translateY(-3px) !important;
    transition: all 0.3s ease;
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 156, 168, 0.5) !important; /* schöner Fokus-Effekt */
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2) !important;
}

.btn-outline-primary {
    border-color: #009CA8 !important;
    color: #009CA8 !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
    background-color: #009CA8 !important; /* dunklere Variante beim Hover */
    border-color: #009CA8 !important;
    color: white !important;
}

.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 156, 168, 0.5) !important; /* schöner Fokus-Effekt */
}


/* Section Background Classes */
.section-bg-white {
    background: var(--bg-white);
}

.section-bg-light {
    background: var(--bg-light);
}

.section-bg-hero {
    background: var(--bg-hero);
}

.section-bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
}

.section-bg-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, #e6f7f8 100%);
}

/* Navigation 
.main-nav {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;  zentriert die Inhalte vertikal 
}

.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}*/

.nav-logo {
    color: var(--secondary-color);
    transition: transform 0.5s ease;
    transform-origin: center;
}

.nav-logo:hover {
    transform: scale(1.05);
}

/* Menü (WordPress-Menü) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Menü-Links */
.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center; /* sorgt dafür, dass Text vertikal zentriert */
    height: 100%; /* füllt die Höhe des .main-nav */
    transition: color 0.9s ease;
    transform-origin: center;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* Header 
.hero-section {
    color: var(--secondary-color);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #009CA8 0%, #32424A 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}*/

/* Neu */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
    /* overflow: hidden; */
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px; /* Platz für den Arrow */
}

/* Logo und Schriftzug Container */
.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    /* width: 120px;
    height: 120px;
    flex-shrink: 0; */
    width: clamp(80px, 20vw, 180px);
    height: auto;
}

/* .hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
} */

.hero-brand {
    font-family: 'Montserrat';
    font-size: clamp(2rem, 6vw, 6rem);
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.04em; /* Leicht engerer Buchstabenabstand für moderne Optik */
}


/* Scroll Down Arrow */
.hero-scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 66, 74, 0.8); /* Dunkler Hintergrund */
    border: 3px solid rgba(255, 255, 255, 0.9); /* Weißer Rand */
    border-radius: 50%;
    color: #ffffff;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Schatten für mehr Tiefe */
}

.hero-scroll-arrow:hover {
    background: rgba(50, 66, 74, 1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-scroll-arrow i {
    font-weight: bold;
}

/* Bounce Animation für Pfeil */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.hero-tagline {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    color: var(--secondary-color);
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* .election-badge {
    display: inline-block;
    background: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 156, 168, 0.15);
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.intro-text {
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.8;
}

/* Hammer der Woche Section */
.hammer-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hammer-card {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s ease;
}

.hammer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.hammer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.2);
}

.hammer-badge {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.hammer-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.hammer-badge i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 2.5rem;
    vertical-align: middle;
}

.hammer-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hammer-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hammer-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.hammer-image:hover img {
    transform: scale(1.1);
}

/* Platzhalter für fehlendes Bild */
.hammer-image-placeholder {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #94a3b8;
}

.hammer-image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.hammer-image-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

.hammer-text {
    padding-left: 2rem;
}

.hammer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warning-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hammer-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hammer-excerpt {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hammer-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hammer-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.95rem;
}

.hammer-meta i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hammer-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.hammer-button:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    color: white;
}

.hammer-button i {
    transition: transform 0.3s ease;
}

.hammer-button:hover i {
    transform: translateX(5px);
}

/* Team Photo Section */
.team-photo-section {
    padding: 80px 0;
}

.team-photo-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 156, 168, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #e6f7f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder {
    text-align: center;
    color: #64748b;
}

.team-photo-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.team-photo-placeholder h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-photo-placeholder p {
    font-size: 1.1rem;
    color: #94a3b8;
}

.team-photo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-section img.loaded {
    display: block;
}

/* Theme Cards */
.themes-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.theme-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 156, 168, 0.15);
    border-color: var(--primary-color);
}

.theme-card:hover::before {
    transform: scaleX(1);
}

.theme-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.theme-card:nth-child(2) .theme-icon {
    background: linear-gradient(135deg, var(--secondary-color), #4a5c64);
}

.theme-card:nth-child(3) .theme-icon {
    background: linear-gradient(135deg, var(--accent-color), #f43f5e);
}

.theme-card:nth-child(4) .theme-icon {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.theme-card:nth-child(5) .theme-icon {
    background: linear-gradient(135deg, var(--warning-color), #d97706);
}

.theme-card:nth-child(6) .theme-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.theme-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
    overflow-wrap: break-word;
    hyphens: auto;
}

.theme-card ul {
    list-style: none;
    padding: 0;
}

.theme-card li {
    padding: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: start;
}

.theme-card li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 156, 168, 0.1);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, var(--secondary-color), #4a5c64);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, var(--warning-color), #d97706);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.value-card p {
    color: #64748b;
    margin: 0;
}

/* Candidates Section */
.candidates-section {
    padding: 80px 0;
}

.placeholder-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #999;
    border-radius: .5rem;
}

.candidate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.candidate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.candidate-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.candidate-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.candidate-card:hover .candidate-photo img {
    transform: scale(1.05);
}

.candidate-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.candidate-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.candidate-details {
    margin-bottom: 1rem;
}

.candidate-details p {
    margin: 0.5rem 0;
    color: #64748b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.candidate-details i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.candidate-statement {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.candidate-statement p {
    font-style: italic;
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* Candidate placeholder styling */
.candidate-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
}

.candidate-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.candidate-card:hover .candidate-placeholder i {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 1);
}

/* Optional: Alternative Farben für verschiedene Kandidaten */
.candidate-card:nth-child(2n) .candidate-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.candidate-card:nth-child(3n) .candidate-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.candidate-card:nth-child(4n) .candidate-placeholder {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.candidate-card:nth-child(5n) .candidate-placeholder {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* News Section */
.news-section {
    padding: 5rem 0;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid #e2e8f0;
    position: relative;
}

.news-card h3 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 156, 168, 0.15);
    border-color: var(--primary-color);
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    width: fit-content;
}

.news-date-badge i {
    font-size: 1rem;
}

.news-meta {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-meta i {
    font-size: 1rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-excerpt {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
    font-size: 1rem;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.news-link:hover {
    gap: 0.75rem;
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}

/* Petition Section */
.petition-cta {
    background: var(--bg-hero);
    padding: 8rem 1.5rem;
    text-align: center;
    color: var(--light-color);
}

.petition-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

.petition-cta h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.petition-topic {
    margin: 0.75rem 0 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-color);
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.petition-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.petition-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.petition-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.petition-btn .arrow {
    display: inline-block;
    animation: arrow-move 1.6s ease-in-out infinite;
}

.petition-btn:hover .arrow {
    animation-play-state: paused;
    transform: translateX(4px);
}

@keyframes arrow-move {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(6px); }
    100% { transform: translateX(0); }
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.single .post-thumbnail img {
    max-width: 600px;
}

.single-post .post-thumbnail img {
    max-width: 100%;
    height: auto;
}

.single-post .post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.single-post .post-meta span {
    color: #64748b;
    font-size: 0.95rem;
}

.single-post .btn-primary {
    background: linear-gradient(135deg, #009CA8, #00b8c5);
    border: none;
}

/* Popup Overlay */
/* Single Post: Bild rechts */
.post-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Höhe der Spalte ausfüllen */
}

.post-thumbnail-img {
    max-height: 400px; /* maximale Höhe */
    width: auto;        /* Breite proportional */
    object-fit: cover;  /* falls nötig */
    transition: transform 0.3s ease;
}

.post-thumbnail-img:hover {
    transform: scale(1.05);
}

/* Vertikale Zentrierung Text + Bild */
.single-post .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .row.align-items-center {
        flex-direction: column;
    }

    .post-thumbnail {
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hammer-text {
        padding-left: 0;
        padding-top: 1rem;
    }
    
    .hammer-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-logo-container {
        gap: 1.5rem;
    }
    
    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    /* .election-badge {
        font-size: 2rem;
    } */

    .post-thumbnail-img {
        max-height: 300px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 56px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 768px) {
    

    .hero-section {
        min-height: 100vh;
        padding: 80px 0 60px;
    }
    
    .hero-logo-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
    }
}

@media (max-width: 576px) {   
    .hero-logo {
        width: 100px;
        height: 100px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
