/* Info Pages - Reusable Styles for Team, Impressum, Privacy, etc. */

/* Hero Section */
.info-hero {
    background: linear-gradient(135deg, #111E0A 0%, #1a2a0a 100%);
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.info-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23ffd700"/></svg>') no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.info-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.info-hero-info {
    color: white;
}

.info-hero-info h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.info-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #cccccc;
}

.info-hero-image {
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.info-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
    position: relative;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #e31818;
    border-radius: 2px;
}

/* Info Section */
.info-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}


.info-section h2 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}

.info-section h2 i {
    color: #e31818;
    font-size: 1.5rem;
}

.info-section h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.info-section h3.excluded-title {
    color: #e31818;
}

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

.info-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 15px;
}

.info-section p:last-child {
    margin-bottom: 0;
}

.info-section ul,
.info-section ol {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 25px;
}

.info-section li {
    margin-bottom: 10px;
}

.info-section a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
    word-break: keep-all;
    white-space: nowrap;
}

.info-section a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.info-section strong {
    color: #ffd700;
}

/* Info Grid - for displaying key-value pairs */
.info-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px 30px;
    align-items: start;
}

/* Team Grid - for displaying team member cards */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.info-label {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
    padding-top: 2px;
}

.info-value {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-value strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

/* Highlight Section - for important info */
.info-highlight {
    background: linear-gradient(135deg, rgba(227, 24, 24, 0.1) 0%, rgba(227, 24, 24, 0.05) 100%);
    border: 2px solid rgba(227, 24, 24, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.info-highlight h2,
.info-highlight h3 {
    color: #ffd700;
}

.info-highlight p,
.info-highlight ul,
.info-highlight ol {
    color: #cccccc;
}

/* Small Text */
.info-small {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Intro Section */
.info-intro {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.info-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin: 0;
    font-style: italic;
}

/* Team-specific Styles */
.team-members {
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.team-member-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.team-member-card:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
}

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

.team-member-card:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
}

.member-name {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: bold;
}

.member-role {
    font-size: 1.1rem;
    color: #e31818;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #cccccc;
}

.member-description p {
    margin-bottom: 15px;
}

.member-description p:last-child {
    margin-bottom: 0;
}

.additional-info {
    background: linear-gradient(135deg, rgba(227, 24, 24, 0.1) 0%, rgba(227, 24, 24, 0.05) 100%);
    border: 2px solid rgba(227, 24, 24, 0.3);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.additional-info h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.additional-info h3 i {
    color: #e31818;
    font-size: 1.4rem;
}

.additional-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 15px;
}

.additional-info p:last-child {
    margin-bottom: 0;
}

.image-credit {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .info-hero-info h1 {
        font-size: 3rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 10px 0;
    }
    
    .info-label {
        margin-top: 15px;
    }
    
    .info-label:first-child {
        margin-top: 0;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .info-hero {
        padding: 40px 0;
    }
    
    .info-hero-content {
        padding: 0 20px;
    }
    
    .info-hero-info h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .info-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .info-section h2 {
        font-size: 1.3rem;
        flex-wrap: wrap;
        line-height: 1.4;
    }
    
    .info-section h3 {
        font-size: 1.15rem;
        line-height: 1.4;
    }
    
    .info-highlight {
        padding: 25px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 300px;
    }
    
    .member-info {
        padding: 25px;
    }
    
    .member-name {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 15px;
        margin: 12px 0;
    }
    
    .contact-header {
        flex-direction: row;
        align-items: center;
    }
    
    .contact-header h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .contact-details i {
        margin-top: 3px;
    }
}

@media (max-width: 480px) {
    .info-hero-content {
        padding: 0 15px;
    }
    
    .info-hero-info h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .info-section {
        padding: 15px;
    }
    
    .info-section h2 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .info-section h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .info-intro {
        padding: 20px 15px;
    }
    
    .info-intro p {
        font-size: 1rem;
    }
    
    .info-highlight {
        padding: 15px;
    }
    
    .member-image {
        height: 250px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .additional-info {
        padding: 20px 15px;
    }
    
    .contact-card {
        padding: 12px;
        margin: 10px 0;
    }
    
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-header h3 {
        font-size: 1rem;
        width: 100%;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .contact-details i {
        margin-top: 0;
    }
    
    .contact-link {
        word-break: break-all;
        overflow-wrap: anywhere;
        max-width: 100%;
    }
}

/* Contact Cards */
.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #ffd700;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-header h3 {
    margin: 0;
    color: #ffd700;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.contact-header h3 i {
    color: #e31818;
    flex-shrink: 0;
}

.contact-header img {
    flex-shrink: 0;
}

.contact-details {
    color: #cccccc;
}

.contact-details p {
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.6;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-details i {
    color: #ffd700;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details p > span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.contact-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    word-break: break-all;
    overflow-wrap: anywhere;
    display: inline-block;
}

.contact-link:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Info Links */
.info-links {
    list-style: none;
    padding: 0;
}

.info-links li {
    margin: 10px 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.info-links li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.info-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-link:hover {
    color: #ff8c5a;
    text-decoration: underline;
}

/* Info Checklist */
.info-checklist {
    list-style: none;
    padding: 0;
}

.info-checklist li {
    margin: 8px 0;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.info-checklist li i.fa-check {
    color: #4CAF50;
    font-size: 18px;
}

.info-checklist li i.fa-times {
    color: #f44336;
    font-size: 18px;
}

.info-checklist li i {
    color: #4CAF50;
    font-size: 18px;
}

/* Team Member Cards */
.team-member-card {
    background: rgba(17, 30, 10, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 0;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.team-member-card:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px;
    color: #ffffff;
}

.member-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.member-role {
    font-size: 1.1rem;
    color: #ffd700;
    font-style: italic;
    margin-bottom: 20px;
}

.member-description {
    line-height: 1.6;
}

.member-description p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.member-description strong {
    color: #ff6b35;
    font-weight: 600;
}

.image-credit {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 20px;
    text-align: right;
}

.text-yellow {
    color: #ffd700;
}

.mr-8 {
    margin-right: 8px;
}

.info-table {
    overflow-x: auto;
    margin: 20px 0;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-table th,
.info-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.info-table th {
    color: white;
    font-weight: 600;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.text-success {
    color: #48bb78;
}

.text-warning {
    color: #ed8936;
}

.text-danger {
    color: #f56565;
}




.text-orange {
    color: #f59e0b;
}

.mr-8 {
    margin-right: 8px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-10 {
    margin-top: 10px;
}

.text-sm {
    font-size: 0.9rem;
}

.d-inline-block {
    display: inline-block;
}

.link-card {
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.link-logo {
    flex-shrink: 0;
}

.link-logo img {
    width: 120px;
    height: auto;
    border-radius: 8px;
}

.link-content {
    flex: 1;
    position: relative;
}

.link-content h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.link-content h3 a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.2s;
}

.link-content h3 a:hover {
    color: #ffed4e;
}

.link-content h3 i {
    font-size: 0.8rem;
    margin-left: 8px;
}

.link-description {
    color: #4b5563;
    line-height: 1.6;
}

.link-description p {
    margin-bottom: 12px;
}

.link-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff7700ff 0%, #ff9100ff 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

.link-badge i {
    margin-right: 5px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-primary:hover {
    background-color: #ffd700;
    color: #111E0A;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .link-card {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    .link-logo {
        text-align: center;
    }
    
    .link-logo img {
        width: 100px;
    }
    
    .link-content h3 {
        font-size: 1.25rem;
    }
}

