/* ========================================
   ST. ZOE SECONDARY & VOCATIONAL SCHOOL
   COMPLETE STYLESHEET - SCHOOL COLORS: DARK BLUE, YELLOW, WHITE
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a1c3a;        /* Dark Blue */
    --secondary-color: #f3b229;      /* Yellow/Gold */
    --accent-color: #c0392b;          /* Keeping red for accents */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --error: #e74c3c;
    --border-color: #e9ecef;
    --shadow: 0 5px 20px rgba(0,0,0,0.05);
    --hover-shadow: 0 8px 25px rgba(0,0,0,0.1);
    --red-stripe: rgba(192, 57, 43, 0.15);
    --yellow-light: rgba(243, 178, 41, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.5;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--light-bg);
    font-size: 15px;
    font-weight: 400;
    padding-top: 70px;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY - STANDARDIZED SIZES
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-center { text-align: center; }
.text-small { font-size: 0.85rem; }
.text-large { font-size: 1.1rem; }

/* ========================================
   NAVIGATION - COMPLETE MENU
   ======================================== */
.navbar {
    background: var(--white);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    border-bottom: 3px solid var(--secondary-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
    max-width: 300px;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text h1 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    font-weight: 700;
}

.logo-text span {
    font-size: 0.65rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    align-items: center;
}

.nav-menu > li {
    position: relative;
    flex-shrink: 0;
}

.nav-menu > li > a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 1.5rem 0.6rem;
    transition: all 0.2s ease;
    display: block;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    background: rgba(243, 178, 41, 0.03);
}

/* Dropdown Menu */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--primary-color);
    padding: 0.7rem 1.2rem;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: var(--secondary-color);
    color: var(--white);
    padding-left: 1.5rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive Navigation */
@media (min-width: 1200px) and (max-width: 1299px) {
    .nav-menu > li > a {
        padding: 1.5rem 0.5rem;
        font-size: 0.75rem;
    }
    .logo-text h1 {
        font-size: 0.9rem;
    }
}

@media (min-width: 1300px) and (max-width: 1399px) {
    .nav-menu > li > a {
        padding: 1.5rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1400px) and (max-width: 1499px) {
    .nav-menu > li > a {
        padding: 1.5rem 0.7rem;
        font-size: 0.82rem;
    }
}

@media (min-width: 1500px) {
    .nav-menu > li > a {
        padding: 1.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #e0a41f;
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1c3a 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(243, 178, 41, 0.05) 8px,
        rgba(243, 178, 41, 0.05) 16px
    );
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero-stat .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--hover-shadow);
    border: 4px solid rgba(255,255,255,0.1);
}

/* ========================================
   CONTENT AREA - 85% WIDTH
   ======================================== */
.content-wrapper {
    background: var(--light-bg);
    position: relative;
    width: 100%;
    padding: 0;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(243, 178, 41, 0.02) 20px,
        rgba(243, 178, 41, 0.02) 40px
    );
    pointer-events: none;
    z-index: 0;
}

.content-wrapper section {
    position: relative;
    z-index: 1;
}

.content-container {
    width: 85% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.content-container .features-section,
.content-container .about-preview,
.content-container .programs-section,
.content-container .cta-section {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(243, 178, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */
.about-preview {
    padding: 3.5rem 0;
    background: var(--light-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-stat-item {
    background: var(--white);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-stat-item .number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
}

.about-stat-item .label {
    font-size: 0.8rem;
    color: #666;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.about-image .experience-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--primary-color);
}

.experience-badge .text {
    font-size: 0.65rem;
    opacity: 0.9;
    color: var(--primary-color);
}

/* ========================================
   PROGRAMS SECTION
   ======================================== */
.programs-section {
    padding: 3.5rem 0;
    background: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.program-card-new {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
}

.program-card-new:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
}

.program-image {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card-new:hover .program-image img {
    transform: scale(1.05);
}

.program-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.program-content {
    padding: 1.2rem;
}

.program-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.program-content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.program-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--secondary-color), #e0a41f);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.cta-section h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: var(--primary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: #0a1c3a;
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-section .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   FOOTER WITH SOCIAL MEDIA
   ======================================== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}


/* ========================================
   SOCIAL MEDIA LINKS STYLES
   ======================================== */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #000000;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}




/* ========================================
   APPLICATION FORM
   ======================================== */
.application-page {
    background: var(--light-bg);
    min-height: 100vh;
    padding: 3rem 0;
    position: relative;
}

.application-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 6px,
        rgba(243, 178, 41, 0.05) 6px,
        rgba(243, 178, 41, 0.05) 12px
    );
    pointer-events: none;
    z-index: 0;
}

.application-container {
    width: 75%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--hover-shadow);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.application-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.application-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 6px,
        rgba(243, 178, 41, 0.1) 6px,
        rgba(243, 178, 41, 0.1) 12px
    );
    animation: moveStripes 30s linear infinite;
}

@keyframes moveStripes {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(20px, 20px) rotate(0deg); }
}

.application-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.application-header p {
    font-size: 0.95rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.application-form-new {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: var(--white);
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(243, 178, 41, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.85rem;
}

.submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn:hover {
    background: #e0a41f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ========================================
   ALUMNI PAGE
   ======================================== */
.alumni-page {
    background: var(--light-bg);
    min-height: 100vh;
    padding: 3rem 0;
    position: relative;
}

.alumni-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 6px,
        rgba(243, 178, 41, 0.05) 6px,
        rgba(243, 178, 41, 0.05) 12px
    );
    pointer-events: none;
    z-index: 0;
}

.alumni-container {
    width: 75%;
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--hover-shadow);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.alumni-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.alumni-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 2;
}

.alumni-form-new {
    padding: 2rem;
    background: var(--white);
    position: relative;
    z-index: 2;
}

/* ========================================
   TABBED CONTENT STYLES
   ======================================== */
.tabs-container {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--light-bg);
    padding: 0 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.tab-btn.active {
    color: var(--secondary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ========================================
   HEAD TEACHER MESSAGE PAGE
   ======================================== */
.headteacher-page {
    padding: 2rem 0 4rem;
    background: var(--light-bg);
    position: relative;
}

.headteacher-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(243,178,41,0.02) 8px, rgba(243,178,41,0.02) 16px);
    pointer-events: none;
}

.headteacher-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--hover-shadow);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.headteacher-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.headteacher-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(243,178,41,0.1) 8px, rgba(243,178,41,0.1) 16px);
    animation: moveStripes 30s linear infinite;
}

.headteacher-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.headteacher-content {
    padding: 3rem;
}

.teacher-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    align-items: center;
}

.teacher-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teacher-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.teacher-title {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.teacher-qualification {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.message-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.message-box p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.signature {
    font-family: cursive;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 1rem;
}

.quote-box {
    background: linear-gradient(135deg, var(--primary-color), #0a1c3a);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
}

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 0;
    color: white;
}

.quote-box p::before {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-color);
}

.quote-box p::after {
    content: '"';
    font-size: 2rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .teacher-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .teacher-image {
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1199px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
        transition: 0.3s;
        padding: 1rem 0;
        display: block;
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
        white-space: normal;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        background: var(--light-bg);
        margin: 0;
        border: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding-left: 3rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .hero .container,
    .about-grid,
    .features-grid,
    .programs-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .application-container,
    .alumni-container {
        width: 90%;
    }
    
    .content-container {
        width: 90% !important;
    }
}

@media (max-width: 992px) {
    .content-container {
        width: 90% !important;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
    }
    
    .content-container {
        width: 95% !important;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .application-container,
    .alumni-container {
        width: 95%;
    }
    
    .application-header h2,
    .alumni-header h2 {
        font-size: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-image .experience-badge {
        width: 70px;
        height: 70px;
        padding: 0.8rem;
        bottom: -10px;
        right: -10px;
    }
    
    .experience-badge .years {
        font-size: 1.1rem;
    }
    
    .experience-badge .text {
        font-size: 0.55rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .hero-buttons,
    .btn,
    .hamburger,
    .footer,
    .application-page::before,
    .alumni-page::before,
    .content-wrapper::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        padding-top: 0;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
}