/* ===== BASE STYLES ===== */

/* Reset and base styles already in header.css */
/* This file will contain main content styles */

/* Temporary main content placeholder */
main {
    padding: 40px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

main::before {
    content: 'Header Section Complete ✓';
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    main::before {
        font-size: 2rem;
    }
}