/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Hero Section with Gradient Background */
#verklauf {
    opacity: 1;
    background-image: linear-gradient(13deg, #fbad15 24%, #f7c948 55%);
}

.hero-section {
    padding: 120px 0 80px;
    color: #333;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 500px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta-button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    text-decoration: none;
    display: inline-block;
}

.hero-cta-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
    color: white;
    text-decoration: none;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Activity Section */
.activity-section {
    padding: 80px 0;
    background: white;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.activity-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.activity-item.reverse .activity-text {
    order: 2;
}

.activity-item.reverse .activity-image {
    order: 1;
}

.activity-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.activity-text p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.activity-image {
    position: relative;
}

.activity-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

/* Donation Section */
.donation-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.donation-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

.donation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.donation-method {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #fbad15;
}

.donation-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.donation-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.donation-method h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.bank-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.bank-details p {
    margin-bottom: 8px;
    color: #333;
    font-size: 1rem;
}

.bank-details strong {
    color: #2c3e50;
}

/* Platform Logos */
.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.paypal-donate-btn {
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.paypal-donate-btn:hover {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

.main-cta-button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.main-cta-button:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.9;
}

.footer a {
    color: #fbad15;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #f7c948;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .activity-item {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .activity-item.reverse .activity-text,
    .activity-item.reverse .activity-image {
        order: initial;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .activity-text h2 {
        font-size: 2rem;
    }
    
    .donation-section h2 {
        font-size: 2rem;
    }
    
    .donation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-logos {
        gap: 20px;
    }
    
    .logo-img {
        max-height: 50px;
        max-width: 150px;
    }
    
    .activity-section {
        padding: 60px 0;
    }
    
    .donation-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .activity-text h2 {
        font-size: 1.6rem;
    }
    
    .donation-section h2 {
        font-size: 1.6rem;
    }
    
    .donation-method {
        padding: 20px;
    }
    
    .hero-cta-button,
    .main-cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-img,
    .activity-img {
        height: 250px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animation styles */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #fbad15;
    outline-offset: 2px;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    color: #333;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: white;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.main-content {
    padding: 0 20px;
}

.content-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #fbad15;
}

.content-card h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.content-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.highlight-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 3px solid #fbad15;
}

.highlight-box:last-child {
    margin-bottom: 0;
}

.call-to-action {
    background: linear-gradient(135deg, #fbad15 0%, #f7c948 100%);
    text-align: center;
    border-left: none;
}

.call-to-action h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 0;
}

.image-container {
    text-align: center;
    margin: 30px 0;
}

.structure-img,
.recognition-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.document-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.document-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.document-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    background: white;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #fbad15;
}

.document-link:hover {
    background: #fbad15;
    color: #2c3e50;
    transform: translateY(-2px);
}

.recognition-container {
    margin-top: 40px;
    text-align: center;
}

.recognition-container h3 {
    text-align: center;
    margin-bottom: 25px;
}

/* Responsive Design for Content Pages */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .content-card h2 {
        font-size: 1.6rem;
    }
    
    .highlight-box {
        padding: 20px;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .content-card h2 {
        font-size: 1.4rem;
    }
    
    .document-card {
        padding: 15px;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
}

/* Social Work Section */
.social-work-section {
    margin: 40px 0;
}

.social-work-section h2 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.work-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #fbad15;
}

.work-area.reverse {
    grid-template-columns: 1fr 1fr;
}

.work-area.reverse .work-content {
    order: 2;
}

.work-area.reverse .work-images {
    order: 1;
}

.work-content h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.work-content p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.work-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.image-grid img:first-child {
    grid-column: 1 / -1;
}

.work-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.work-img.single {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.cta-button {
    background: linear-gradient(135deg, #fbad15 0%, #f7c948 100%);
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 173, 21, 0.3);
    margin-top: 20px;
    border: 2px solid #fff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 173, 21, 0.4);
    color: #2c3e50;
    text-decoration: none;
}

/* Responsive Design for Social Work */
@media (max-width: 1024px) {
    .work-area,
    .work-area.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .work-area.reverse .work-content,
    .work-area.reverse .work-images {
        order: initial;
    }
    
    .social-work-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .work-area {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .work-content h3 {
        font-size: 1.5rem;
    }
    
    .work-content p {
        font-size: 1rem;
    }
    
    .work-img {
        height: 150px;
    }
    
    .work-img.single {
        height: 200px;
    }
    
    .image-grid {
        gap: 10px;
    }
    
    .social-work-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .work-area {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .work-content h3 {
        font-size: 1.3rem;
    }
    
    .work-img {
        height: 120px;
    }
    
    .work-img.single {
        height: 150px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .social-work-section h2 {
        font-size: 1.5rem;
    }
}

/* Contact and Legal Page Styles */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 3px solid #fbad15;
}

.contact-details h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.2rem;
}

.contact-details p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-details a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    color: #fbad15;
    text-decoration: underline;
}

.board-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.board-member {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 3px solid #fbad15;
}

.board-member h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.board-member p {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.legal-info {
    margin: 30px 0;
}

.legal-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid #fbad15;
}

.legal-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-section p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.disclaimer h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 1.2rem;
}

.disclaimer h3:first-child {
    margin-top: 0;
}

.disclaimer p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

/* Responsive Design for Contact/Legal Pages */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-details {
        padding: 20px;
    }
    
    .board-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legal-section {
        padding: 15px;
    }
}

/* Supporters and Initiators Grid */
.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.supporter-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #fbad15;
    text-align: center;
}

.supporter-card h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.supporter-card p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.initiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.initiator-card {
    background: linear-gradient(135deg, #fbad15 0%, #f7c948 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(251, 173, 21, 0.2);
}

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

.initiator-card p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 500;
}

.initiator-card p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Responsive Design for Supporters */
@media (max-width: 768px) {
    .supporters-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .supporter-card {
        padding: 15px;
    }
    
    .supporter-card h3 {
        font-size: 1rem;
    }
    
    .supporter-card p {
        font-size: 0.9rem;
    }
    
    .initiators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .initiator-card {
        padding: 25px;
    }
    
    .initiator-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .supporters-grid {
        grid-template-columns: 1fr;
    }
    
    .supporter-card {
        padding: 12px;
    }
    
    .supporter-card h3 {
        font-size: 0.95rem;
    }
    
    .supporter-card p {
        font-size: 0.85rem;
    }
    
    .initiator-card {
        padding: 20px;
    }
    
    .initiator-card h3 {
        font-size: 1.1rem;
    }
    
    .initiator-card p {
        font-size: 0.9rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000;
        color: #fff;
    }
    
    .donation-method,
    .content-card,
    .work-area,
    .contact-details,
    .board-member,
    .legal-section,
    .supporter-card {
        border: 2px solid #000;
    }
    
    .initiator-card {
        background: #fff;
        border: 2px solid #000;
    }
}