/* RRND - RND.de Style CSS */

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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

a:hover {
    color: #0066cc;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a2e;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-link {
    color: #fff;
    margin-left: 20px;
    font-size: 13px;
}

.top-link:hover {
    color: #d4af37;
}

.date {
    color: #ccc;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 3px solid #1a1a2e;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
}

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

.logo-svg {
    height: 60px;
    width: auto;
}

/* Navigation */
.main-nav {
    background-color: #1a1a2e;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: #fff;
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    font-size: 15px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.nav-link:hover,
.nav-link.active {
    background-color: #d4af37;
    color: #1a1a2e;
}

.nav-link:last-child {
    border-right: none;
}

/* Breaking News */
.breaking-news {
    background: linear-gradient(135deg, #d4af37 0%, #c9a227 100%);
    color: #1a1a2e;
    padding: 12px 0;
    font-weight: 600;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 400px;
    background-image: url('images/Background-Banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(26, 26, 46, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.breaking-news .container {
    display: flex;
    align-items: center;
}

.breaking-label {
    background-color: #1a1a2e;
    color: #d4af37;
    padding: 4px 12px;
    margin-right: 15px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
}

.breaking-text {
    font-size: 14px;
}

/* Main Content */
.main-content {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Main Articles */
.main-articles {
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.featured-article {
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 25px;
}

.placeholder-image {
    background-color: #e9ecef;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.placeholder-text {
    color: #6c757d;
    font-size: 18px;
}

.article-content {
    padding: 0 10px;
}

.article-category {
    background-color: #1a1a2e;
    color: #d4af37;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.article-title {
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-excerpt {
    color: #495057;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    color: #004499;
    text-decoration: underline;
}

/* Article List */
.article-list {
    margin-top: 30px;
}

.article-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.article-item:last-child {
    border-bottom: none;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 12px;
}

.category {
    color: #0066cc;
    font-weight: 600;
    text-transform: uppercase;
}

.timestamp {
    color: #6c757d;
}

.article-item-title {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.article-item-title a:hover {
    color: #0066cc;
}

.article-item-excerpt {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.widget-title {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
    font-weight: 700;
}

.widget-list {
    list-style: none;
    padding: 0;
}

.widget-list li {
    margin-bottom: 10px;
}

.widget-link {
    color: #1a1a2e;
    font-size: 14px;
    line-height: 1.5;
}

.widget-link:hover {
    color: #0066cc;
}

.widget-text {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #1a1a2e;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #d4af37;
}

.footer-text {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.footer-links a {
    color: #ccc;
    font-size: 14px;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-list {
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-link {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-svg {
        height: 45px;
    }
    
    .article-title {
        font-size: 18px;
    }
}

/* Page Title */
.page-title {
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #d4af37;
}

/* Section Title */
.section-title {
    font-size: 22px;
    color: #1a1a2e;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e9ecef;
}

/* Links Section */
.links-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.links-section:last-child {
    border-bottom: none;
}

.links-list {
    list-style: none;
    padding: 0;
}

.links-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.links-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.external-link {
    color: #0066cc;
    font-weight: 500;
}

.external-link:hover {
    color: #004499;
    text-decoration: underline;
}

/* Impressum Section */
.impressum-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.impressum-section:last-child {
    border-bottom: none;
}

.impressum-content {
    padding: 15px;
    background-color: #f8f9fa;
    border-left: 3px solid #d4af37;
    border-radius: 4px;
}

.impressum-content p {
    margin-bottom: 10px;
    color: #495057;
}

.impressum-content strong {
    color: #1a1a2e;
}

/* Portrait Image */
.portrait-container {
    text-align: center;
    margin-bottom: 30px;
}

.portrait-image {
    max-width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 3px solid #d4af37;
}

.portrait-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

/* Photo Gallery */
.photo-gallery {
    margin-top: 30px;
}

.gallery-title {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4af37;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.6) 100%);
    color: #fff;
    padding: 15px 10px 10px;
    font-size: 14px;
}
