/* Reset and Base Styles - Only keep what's not in shared header */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Footer Reclamation Styles */
.reclamation-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-top: 2px solid #8b4513;
}

.reclamation {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reclamation strong {
    color: #ff6b35;
    font-size: 1.1rem;
}

.motto {
    margin-top: 0.5rem;
    font-style: italic;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.reclamation-link {
    margin-top: 1rem;
}

.reclamation-link a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #ff6b35;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.reclamation-link a:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}



/* Content Container */
.content-container {
    width: 95%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 0.5rem;
}

/* Scrollbar styles removed - content now flows naturally */

/* Content Banners */
.content-banner {
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 2px solid #ff6b35;
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 120px;
}

/* Ensure all banners with images use consistent layout */
.content-banner:not(.placeholder) {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.content-banner-image {
    flex: 0 0 200px;
    max-width: 200px;
}

.content-banner-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.content-banner-text {
    flex: 1;
}

.content-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    border-color: #ff8c42;
}

.content-banner h2 {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-banner p {
    color: #cccccc;
    font-size: 1rem;
}

.arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.content-banner:hover .arrow {
    transform: translateY(-50%) translateX(5px);
}

/* Component-generated banner styling */
.content-banner .banner-image {
    flex: 0 0 200px !important;
    max-width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.content-banner .banner-text {
    flex: 1 !important;
    padding-left: 1.5rem;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center;
}

.content-banner .banner-text h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: bold;
}

.content-banner .banner-text p {
    color: #cccccc;
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Placeholder styling */
.placeholder {
    opacity: 0.6;
    cursor: not-allowed;
}

.placeholder:hover {
    transform: none;
    box-shadow: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content-banner:not(.placeholder) {
        flex-direction: column !important;
        text-align: center;
        min-height: auto;
        gap: 1rem !important;
    }
    
    /* Target both possible image classes */
    .content-banner .banner-image,
    .content-banner-image {
        flex: none !important;
        max-width: 180px !important;
        width: 180px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .content-banner .banner-image img,
    .content-banner-image img {
        width: 100% !important;
        height: auto !important;
        max-width: 180px !important;
    }
    
    .content-banner .banner-text,
    .content-banner-text {
        flex: 1 !important;
        padding-left: 0 !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .content-container {
        width: 98%;
        margin: 1rem auto;
    }
    
    .content-banner {
        padding: 1rem;
    }
    
    .content-banner h2,
    .content-banner h3 {
        font-size: 1.3rem;
    }
    
    .content-banner p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .motto {
        font-size: 0.85rem;
    }
    
    .content-banner {
        padding: 0.8rem;
    }
    
    .arrow {
        right: 1rem;
    }
}
