/* ===========================================
   CAMPAIGNS PAGE STYLES
   WE MUST OVERCOME Campaign Hub
   =========================================== */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #fdf8f3 0%, #f5ebe0 40%, #ede0d4 100%);
    color: #1a1a1a;
    min-height: 100vh;
    line-height: 1.6;
}

/* ===========================================
   HEADER
   =========================================== */
.campaign-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 38px;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(139, 69, 19, 0.08);
}

.logo-container {
    z-index: 20;
    text-decoration: none;
    display: inline-block;
}

.site-logo {
    height: 48px;
    width: auto;
    display: block;
}

/* Submit Button Container */
.submit-container {
    z-index: 20;
}

/* Submit Button - matches map section CTA style */
.submit-btn {
    position: relative;
    background: white;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 25px;
    text-shadow: none;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #FFD700, #1E90FF, #e53935, #FF69B4, #FFA500);
    background-size: 300% 100%;
    border-radius: 27px;
    z-index: -1;
    animation: submitGradient 6s linear infinite;
}

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

.submit-btn:hover::before {
    animation-duration: 2.5s;
}

@keyframes submitGradient {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

/* Mobile submit container - hidden on desktop */
.mobile-submit-container {
    display: none;
}

/* ===========================================
   PAGE TITLE
   =========================================== */
.campaign-title-container {
    text-align: center;
    padding: 20px 20px 40px;
}

.campaign-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #2c3e50 0%, #8b4513 50%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.campaign-description {
    font-size: 1.1rem;
    color: #5a5a5a;
    margin: 12px auto 0;
    font-weight: 400;
    max-width: 600px;
    text-align: center;
}

/* ===========================================
   MAIN CONTENT
   =========================================== */
.campaign-main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
    box-sizing: border-box;
}

.campaign-container {
    display: flex;
    gap: 60px;
}

/* Left Column - 60% */
.campaign-left {
    flex: 0 0 58%;
    min-width: 0; /* Prevent flex overflow */
}

/* Right Column - 40% */
.campaign-right {
    flex: 0 0 38%;
    min-width: 0; /* Prevent flex overflow */
}

/* ===========================================
   CAMPAIGN IMAGE
   =========================================== */
.campaign-image-wrapper {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.campaign-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================================
   LYRICS SECTION
   =========================================== */
.lyrics-section {
    background: linear-gradient(145deg, #fffbf5 0%, #fff8f0 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.lyrics-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px;
    color: #8b4513;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 10px;
}

.lyrics-content {
    margin-bottom: 20px;
}

.lyrics-text {
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3d3d3d;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.lyrics-copyright {
    font-size: 0.85rem;
    color: #8b7355;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid #d4a574;
    font-style: italic;
}

/* ===========================================
   CAMPAIGN SECTIONS (Right Column)
   =========================================== */
.campaign-section {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e8e0d8;
    border-radius: 12px;
    padding: 22px 26px;
    margin-bottom: 18px;
    box-shadow: 0 3px 12px rgba(139, 69, 19, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(5px);
}

.campaign-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.1);
}

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

.section-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #c0392b, #e74c3c);
    border-radius: 2px;
}

.section-content {
    font-size: 0.95rem;
    color: #5a5a5a;
    margin: 0;
    line-height: 1.6;
}

.section-content:empty {
    display: none;
}

.section-content a {
    color: #c0392b;
    text-decoration: none;
    font-weight: 500;
}

.section-content a:hover {
    text-decoration: underline;
    color: #a93226;
}

/* ===========================================
   ARTISTS GRID
   =========================================== */
.artists-grid {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.artist-card {
    flex: 1;
    min-width: 80px;
    text-align: center;
}

.artist-image {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #d4a574;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}

.artist-name {
    display: block;
    margin: 10px 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

.artist-name:hover {
    color: #c0392b;
    text-decoration: underline;
}

.artist-card a:first-child {
    display: inline-block;
}

.artist-image:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* ===========================================
   TABLET RESPONSIVE (max-width: 1024px)
   =========================================== */
@media (max-width: 1024px) {
    .campaign-header {
        padding: 20px 24px;
    }
    
    .site-logo {
        height: 40px;
    }
    
    .campaign-title {
        font-size: 2.4rem;
    }
    
    .campaign-main {
        padding: 0 24px 50px;
    }
    
    .campaign-container {
        gap: 40px;
    }
    
    .campaign-left {
        flex: 0 0 55%;
    }
    
    .campaign-right {
        flex: 0 0 42%;
    }
}

/* ===========================================
   MOBILE RESPONSIVE (max-width: 768px)
   =========================================== */
@media (max-width: 768px) {
    .campaign-header {
        padding: 16px 20px;
    }
    
    .site-logo {
        height: 36px;
    }
    
    /* Hide desktop submit button on mobile */
    .submit-container {
        display: none;
    }
    
    /* Show mobile submit button */
    .mobile-submit-container {
        display: flex;
        justify-content: center;
        padding: 30px 20px;
        background: #f5f5f5;
    }
    
    .campaign-title-container {
        padding: 10px 16px 30px;
    }
    
    .campaign-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .campaign-description {
        font-size: 1rem;
    }
    
    .campaign-main {
        padding: 0 16px 40px;
    }
    
    /* Stack columns on mobile */
    .campaign-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .campaign-left,
    .campaign-right {
        flex: 1 1 100%;
    }
    
    .campaign-image-wrapper {
        margin-bottom: 30px;
    }
    
    .lyrics-section {
        padding: 20px;
    }
    
    .lyrics-heading {
        font-size: 1.3rem;
    }
    
    .lyrics-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .campaign-section {
        padding: 16px 20px;
    }
    
    .section-title {
        font-size: 1rem;
    }
    
    .section-content {
        font-size: 0.85rem;
    }
}

/* ===========================================
   SUBPAGE STYLES (Featured Content, etc.)
   =========================================== */
.subpage-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 40px 60px;
    text-align: center;
}

.subpage-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: #000;
}

.subpage-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin: 0 0 40px;
}

.return-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.return-btn:hover {
    background: #333;
    transform: scale(1.05);
}

/* ===========================================
   SMALL MOBILE (max-width: 480px)
   =========================================== */
@media (max-width: 480px) {
    .campaign-header {
        padding: 12px 16px;
    }
    
    .site-logo {
        height: 32px;
    }
    
    .campaign-title {
        font-size: 1.5rem;
    }
    
    .campaign-main {
        padding: 0 12px 30px;
    }
    
    .lyrics-section {
        padding: 16px;
        border-radius: 8px;
    }
    
    .lyrics-text {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    
    .campaign-section {
        padding: 14px 16px;
        border-radius: 8px;
    }
    
    .artists-grid {
        gap: 12px;
    }
    
    .artist-image {
        max-width: 80px;
        height: 80px;
    }
    
    .artist-name {
        font-size: 0.8rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 10px 24px;
    }
    
    /* Subpage responsive */
    .subpage-content {
        padding: 30px 20px 50px;
    }
    
    .subpage-title {
        font-size: 1.8rem;
    }
    
    .subpage-subtitle {
        font-size: 1rem;
    }
}
