/* Global Styles */
:root {
    --primary-color: #1a365d;
    --secondary-color: #e53e3e;
    --accent-color: #f6ad55;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --light-gray: #e2e8f0;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Adding better text rendering for all browsers */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Optimized for image loading */
img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    display: block; /* Prevents image spacing issues */
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Breadcrumb navigation */
.breadcrumb {
    background-color: #f1f5f9;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.breadcrumb-nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb-nav li {
    display: inline;
    margin: 0;
    font-size: 0.9rem;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: "›";
    margin: 0 0.5rem;
    color: #718096;
}

.breadcrumb-nav a {
    color: #4a5568;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-nav li:last-child {
    color: #718096;
    font-weight: 600;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 0 0 2rem;
}

.nav-links a {
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background-color: #fff;
    text-align: center;
}

.hero-copy {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #555;
}

.hero-image {
    margin-top: 2rem;
}

/* Principal Photos */
.principals-photos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.principal-photo {
    text-align: center;
    max-width: 300px;
}

.principal-img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    border: 3px solid var(--primary-color);
    transition: var(--transition);
    object-fit: cover; /* Ensures image maintains aspect ratio */
}

.principal-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.principal-name {
    margin-top: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

.principals-combined {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.principals-combined .principal-img {
    width: 45%;
    height: auto;
}

.principal-caption {
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    color: #666;
}

.principals-image {
    text-align: center;
}

.new-principal-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 0 auto;
    display: block;
    object-fit: contain; /* Ensures the image maintains its aspect ratio */
    transition: transform 0.3s ease;
}

.new-principal-img:hover {
    transform: scale(1.02);
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
}

.principals-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.principal-content p {
    font-size: 1.05rem;
}

/* New problem list styling */
.problem-list {
    margin: 1.5rem 0 2rem 0;
    padding-left: 1.5rem;
    list-style-type: none;
}

.problem-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.problem-list li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Issues Section */
.issues-section {
    background-color: #fff;
}

.issue-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.issue-card h3 {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

.issue-card strong {
    color: var(--primary-color);
}

.issue-image {
    margin-top: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    text-align: left;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Conclusion Section */
.conclusion-section {
    background-color: var(--light-bg);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    cursor: pointer;
}

.primary-btn {
    background-color: var(--secondary-color);
    color: white;
}

.primary-btn:hover {
    background-color: #c53030;
    color: white;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fff;
    font-size: 0.9rem;
    color: #666;
}

.disclaimer-section p {
    max-width: 900px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin-bottom: 0.5rem;
}

footer p:last-child {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .principals-container {
        grid-template-columns: 1fr;
    }
    
    .principal-image {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .principal-image img {
        max-width: 200px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section,
    section {
        padding: 3rem 0;
    }
    
    .principals-photos {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .issue-card {
        padding: 1.5rem;
    }
    
    .principals-combined {
        flex-direction: column;
        align-items: center;
    }
    
    .principals-combined .principal-img {
        width: 80%;
        margin-bottom: 1rem;
    }
}

/* Print styles for better print experience */
@media print {
    body {
        font-size: 12pt;
        background: #fff;
        color: #000;
    }
    
    .hero-section, 
    .about-section, 
    .issues-section, 
    .testimonials-section, 
    .faq-section, 
    .conclusion-section, 
    .disclaimer-section {
        background: #fff;
        padding: 20pt 0;
        page-break-inside: avoid;
    }
    
    nav, 
    .cta-buttons, 
    .principal-img:hover {
        display: none;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    img {
        max-width: 300pt;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    footer {
        background: #fff;
        color: #000;
        border-top: 1pt solid #ccc;
    }
} 