/* style.css */

/* General Reset and Base Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #2d3436;
    background-color: #f1f2f6;
    margin: 0;
    padding: 0;
}

/* Header with Revolutionary Theme Colors */
header {
    background: linear-gradient(135deg, #002395, #ed2939, #ffcc00);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 8px solid #2d3436;
}

header h1 {
    margin: 0;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

header h2 {
    font-weight: 300;
    margin-top: 15px;
    color: #f1f2f6;
    letter-spacing: 2px;
}

header h4 {
    max-width: 800px;
    margin: 30px auto 0;
    font-style: italic;
    font-weight: 300;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
}

/* Main Container */
main {
    max-width: 950px;
    margin: -50px auto 50px; /* Overlap header for depth */
    padding: 50px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
}

/* Section Headings */
h2 {
    color: #002395;
    font-size: 2.2rem;
    border-bottom: 3px solid #ed2939;
    padding-bottom: 10px;
    margin-top: 60px;
    text-transform: uppercase;
}

h3 {
    color: #ed2939;
    font-size: 1.6rem;
    margin-top: 35px;
}

p {
    margin-bottom: 25px;
    text-align: justify;
}

/* Image Presentation */
img {
    display: block;
    margin: 45px auto;
    border: 10px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

/* Student Perspectives Callouts */
#perspectives div {
    background: #f8f9fa;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 8px solid #002395;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.05);
}

#perspectives h3 {
    margin-top: 0;
    color: #002395;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Conclusion/Punch Styling */
#punch {
    background-color: #2d3436;
    color: #dfe6e9;
    padding: 50px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
}

#punch h2 {
    color: #ffcc00;
    border-bottom: none;
    margin-top: 0;
}

#punch p {
    font-size: 1.2rem;
    text-align: center;
}

/* Responsive Logic */
@media (max-width: 768px) {
    main {
        margin: 0;
        padding: 20px;
        border-radius: 0;
    }
    header h1 {
        font-size: 2.2rem;
    }
}