/* ============================= */
/* Basis Styles */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
main {
    background: white;
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid #4caf50;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

h2 {
    color: #2e7d32;
    font-size: 2rem;
    margin: 40px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #81c784;
}

.arguments {
    margin-bottom: 50px;
}

.argument-item {
    background: #f9fdf9;
    border-left: 5px solid #4caf50;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.argument-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.argument-item h3 {
    color: #2e7d32;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.argument-item p {
    color: #555;
    line-height: 1.7;
}

.contra .argument-item {
    background: #fff8f8;
    border-left-color: #f44336;
}

.contra .argument-item:hover {
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.2);
}

.contra h2 {
    color: #c62828;
    border-bottom-color: #ef9a9a;
}

.contra .argument-item h3 {
    color: #c62828;
}

/* Footer */
footer {
    background: #1b5e20;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a5d6a7;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #4caf50;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    main { padding: 25px; margin: 20px auto; }
    h2 { font-size: 1.6rem; }
    .argument-item { padding: 15px 20px; }
    .footer-content { flex-direction: column; }
}

@media (max-width: 480px) {
    header { padding: 40px 15px 30px; }
    h1 { font-size: 1.6rem; }
    main { padding: 20px; }
    .argument-item h3 { font-size: 1.1rem; }
}

/* ============================= */
/* Bundesliga Autocomplete & Argumente */
/* Präfix: bunda- */
/* ============================= */

/* Fade-In Animation */
@keyframes bunda-fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bunda-arguments-section {
    display: none;
    margin-top: 30px;
    animation: bunda-fadeIn 0.5s ease forwards;
}
.bunda-arguments-section.bunda-visible {
    display: block;
}

/* Pro-Argumente */
.bunda-argument-item.bunda-pro {
    background: #f0fff0;
    border-left: 5px solid #4caf50;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bunda-argument-item.bunda-pro h3 {
    color: #2e7d32;
    margin-bottom: 8px;
}
.bunda-argument-item.bunda-pro p {
    color: #555;
    line-height: 1.7;
}
.bunda-argument-item.bunda-pro:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Contra-Argumente */
.bunda-arguments-section.bunda-contra h2 {
    color: #c62828;
    border-bottom-color: #ef9a9a;
}
.bunda-argument-item.bunda-contra {
    background: #fff8f8;
    border-left: 5px solid #f44336;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.bunda-argument-item.bunda-contra h3 {
    color: #c62828;
    margin-bottom: 8px;
}
.bunda-argument-item.bunda-contra p {
    color: #555;
    line-height: 1.7;
}
.bunda-argument-item.bunda-contra:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.2);
}
/* Buttons Pro/Contra passend zu deinen Argumenten */
#decisionButtons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

#decisionButtons button {
    padding: 12px 25px;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

/* Pro Button */
#decisionButtons button:first-child {
    background-color: #4caf50;
    color: white;
}
#decisionButtons button:first-child:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Contra Button */
#decisionButtons button:last-child {
    background-color: #f44336;
    color: white;
}
#decisionButtons button:last-child:hover {
    background-color: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}
/* Allgemein */ neue Section 24.1.26 20:57h
.argument-item {
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Pro */
.argument-item.bunda-pro {
    background: #f0fff0;
    border-left: 5px solid #4caf50;
}
.argument-item.bunda-pro h3 {
    color: #2e7d32;
}
.argument-item.bunda-pro:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

/* Contra */
.argument-item.bunda-contra {
    background: #fff8f8;
    border-left: 5px solid #f44336;
}
.argument-item.bunda-contra h3 {
    color: #c62828;
}
.argument-item.bunda-contra:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.2);
}
