/* Heading Structure Styles */

/* Main H1 - Only one per page */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Logo text (formerly h1) */
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-bg);
    margin: 0;
}

/* Section titles (h2) */
h2.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-align: center;
}

/* Sub-section titles (h3) */
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

/* Footer headings (h4) */
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-bg);
    margin-bottom: 1rem;
}

/* Trump meme info section */
.trump-meme-info {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    line-height: 1.6;
}

.trump-meme-info p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Modal caption */
.modal-caption {
    padding: 1rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #eee;
}

.modal-caption p {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-text);
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2.section-title {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2.section-title {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}