/* ============================================
   QUIZ APP V2 - MAROON & OFF-WHITE THEME
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #1f3c88;
    --primary-blue-dark: #162d6b;
    --primary-blue-light: #2a4fa3;
    --secondary-red: #9e1c20;
    --secondary-red-dark: #7a1619;
    --accent-gold: #f4b41a;
    --accent-gold-dark: #d99d0f;
    --bg-cream: #fdf6e3;
    --bg-cream-dark: #f5ebd0;
    --text-dark: #222222;
    --text-light: #555555;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* ============================================
   HOME PAGE
   ============================================ */

.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Logo */
.logo-wrapper {
    display: inline-block;
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
}

/* Badge */
.badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Title */
.main-title {
    margin-bottom: 1.5rem;
}

.main-title .highlight {
    display: block;
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.main-title .subtitle {
    display: block;
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 600;
}

/* Banner */
.banner-wrapper {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.banner-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Organizer */
.organizer {
    margin-bottom: 2rem;
}

.presented-by {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.school-name {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.organizer-detail {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 180, 26, 0.3);
}

.btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 180, 26, 0.4);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--primary-blue-dark);
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    font-size: 0.875rem;
}

/* ============================================
   RULES PAGE
   ============================================ */

.page-container {
    min-height: 100vh;
    background: var(--off-white);
    padding: 2rem;
}

.page-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 4px solid var(--accent-gold);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
}

.page-subtitle {
    opacity: 0.9;
}

.content-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.round-list {
    list-style: none;
}

.round-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--off-white-dark);
}

.round-item:last-child {
    border-bottom: none;
}

.round-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.round-content h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.round-content p {
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1.6;
}

/* Rules Page - Big Font Styles */
.rules-card {
    padding: 2.5rem;
}

.rules-section-title {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.rules-item {
    padding: 0.75rem;
    gap: 1.5rem;
}

.rules-number-alt {
    background: var(--accent-gold) !important;
    color: var(--text-dark) !important;
}

.rules-number-star {
    background: var(--primary-blue-light) !important;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
}

/* ============================================
   ROUND PAGES
   ============================================ */

.round-container {
    min-height: 100vh;
    background: var(--off-white);
    padding: 1.5rem;
    position: relative;
}

.round-container::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.round-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
    border-bottom: 4px solid var(--accent-gold);
}

.round-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.round-nav {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Subject Grid */
.subject-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.subject-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(31, 60, 136, 0.1);
}

.subject-card:hover {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(31, 60, 136, 0.15);
}

.subject-card.completed {
    opacity: 0.5;
    background: var(--bg-cream);
    border-color: var(--text-light);
    cursor: not-allowed;
}

.subject-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subject-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.subject-status {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Question Number Grid */
.question-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.question-btn {
    aspect-ratio: 1;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 90px;
}

.question-btn:hover:not(:disabled) {
    border-color: var(--secondary-red);
    background: var(--secondary-red);
    color: var(--white);
}

.question-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--bg-cream-dark);
}

/* Question Display */
.question-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    position: relative;
    max-width: 1000px;
    min-height: 500px;
    margin: 0 auto;
    z-index: 1;
}

.question-logo {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    object-fit: contain;
    opacity: 0.3;
    z-index: 100;
}

.question-header-logo {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: -40px auto -20px;
}

.timer {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: background 0.3s ease;
}

.timer-value {
    font-size: 2.5rem;
    line-height: 1;
}

.timer-label {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.timer.warning-30 {
    background: #f39c12;
}

.timer.warning-20 {
    background: #e67e22;
}

.timer.warning-10 {
    background: #e74c3c;
}

/* Set Number Display */
.set-number-display {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-red);
    margin-bottom: 1rem;
}

/* Set Timer for Rapid Fire */
.set-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--maroon-primary);
    color: white;
    border-radius: var(--radius);
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    transition: background 0.3s ease;
}

.set-timer-value {
    font-size: 2rem;
    line-height: 1;
    font-family: 'Courier New', monospace;
}

.set-timer-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.subject-tag {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.question-number-display {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-red);
    margin-bottom: 0.5rem;
}

.question-text {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Vector notation - arrow above letters */
.vector {
    position: relative;
    display: inline-block;
}

.vector::before {
    content: "→";
    position: absolute;
    top: -0.6em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8em;
    font-weight: bold;
}

/* Matrix styling for 2x2 matrices */
.matrix-container {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    vertical-align: middle;
}

.matrix-bracket {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--text-dark);
}

.matrix-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.matrix-row {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

/* Complement bar styling for set notation */
.complement {
    position: relative;
    display: inline-block;
    padding-top: 0.35em;
}

.complement::before {
    content: "";
    position: absolute;
    top: 0.15em;
    left: 0;
    right: 0;
    height: 0.06em;
    background-color: currentColor;
}

/* Fraction styling for mathematical expressions */
.fraction {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    vertical-align: middle;
    font-size: 0.95em;
    margin: 0 0.2em;
}

.numerator {
    border-bottom: 1.5px solid currentColor;
    padding: 0 0.3em 0.1em;
    text-align: center;
}

.denominator {
    padding: 0.1em 0.3em 0;
    text-align: center;
}

/* Superscript styling for exponents */
sup {
    font-size: 0.75em;
    vertical-align: super;
    line-height: 0;
}

.media-container {
    margin-bottom: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
}

.media-container img,
.media-container video {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.answer-section {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.answer-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.answer-text {
    font-size: 2rem;
    color: var(--secondary-red);
    font-weight: 700;
}

.answer-hidden {
    display: none;
}

/* Time Up Modal */
.timeup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.timeup-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.timeup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.timeup-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.timeup-message {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.timeup-close-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeup-close-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Rapid Fire Specific */
.set-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.set-btn {
    aspect-ratio: 1;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: var(--radius);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 120px;
}

.set-btn:hover:not(:disabled) {
    border-color: var(--secondary-red);
    background: var(--secondary-red);
    color: var(--white);
}

.set-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.progress-bar {
    background: var(--bg-cream-dark);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    background: var(--accent-gold);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Review Section */
.review-list {
    space-y: 1rem;
}

.review-item {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-question {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.review-answer {
    color: var(--secondary-red);
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .main-title .highlight {
        font-size: 2rem;
    }
    
    .main-title .subtitle {
        font-size: 1.5rem;
    }
    
    .features {
        gap: 1rem;
    }
    
    .question-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .set-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .round-header {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .logo {
        width: 80px;
        height: 80px;
    }
    
    .main-title .highlight {
        font-size: 1.75rem;
    }
    
    .main-title .subtitle {
        font-size: 1.25rem;
    }
    
    .subject-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .question-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .question-btn {
        font-size: 1rem;
    }
    
    .timer {
        width: 50px;
        height: 50px;
        top: 1rem;
        right: 1rem;
    }
    
    .timer-value {
        font-size: 1.25rem;
    }
}

/* ============================================
   HOME PAGE - FULL WIDTH (NO CARD)
   ============================================ */

.home-full {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-cream-dark) 50%, var(--bg-cream) 100%);
    min-height: 100vh;
}

.home-full-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* Logo Section */
.home-logo-section {
    margin-bottom: 1.5rem;
}

.home-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: white;
    padding: 0.5rem;
}

/* Badge */
.home-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Title */
.home-title {
    margin-bottom: 1rem;
}

.home-title-main {
    display: block;
    color: var(--primary-blue);
    font-size: 3rem;
    font-weight: 800;
}

.home-title-sub {
    display: block;
    color: var(--primary-blue-light);
    font-size: 2rem;
    font-weight: 600;
}

/* Year */
.home-year {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(31, 60, 136, 0.15);
    margin-bottom: 1rem;
    line-height: 1;
}

/* School Logo */
.home-school-logo {
    margin-bottom: 1.5rem;
}

.home-school-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Banner */
.home-banner {
    width: 100vw;
    height: 100vh;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.home-banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: linear-gradient(135deg, #f5f0f0 0%, #e8e0e0 50%, #f0e8e8 100%);
}

/* Organizer */
.home-organizer {
    margin-bottom: 2rem;
}

.home-presented {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.home-organizer-logo {
    max-width: 300px;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.home-organizer-text {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Features */
.home-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.home-feature {
    text-align: center;
}

.home-feature-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.home-feature-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Button */
.home-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.home-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.4);
}

.home-cta svg {
    width: 24px;
    height: 24px;
}

/* CTA Button Overlay for Fullscreen Image */
.home-cta-overlay {
    position: fixed;
    bottom: 3rem;
    right: 5cm;
    left: auto;
    transform: none;
    z-index: 10;
}

/* Footer */
.home-footer {
    background: rgba(128, 0, 32, 0.1);
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .home-full-container {
        padding: 1.5rem;
    }
    
    .home-logo {
        width: 80px;
        height: 80px;
    }
    
    .home-title-main {
        font-size: 2rem;
    }
    
    .home-title-sub {
        font-size: 1.5rem;
    }
    
    .home-year {
        font-size: 3rem;
    }
    
    .home-banner img {
        max-height: 400px;
    }
    
    .home-school {
        font-size: 1.5rem;
    }
    
    .home-features {
        gap: 1.5rem;
    }
    
    .home-cta {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .home-title-main {
        font-size: 1.75rem;
    }
    
    .home-title-sub {
        font-size: 1.25rem;
    }
    
    .home-year {
        font-size: 2.5rem;
    }
    
    .home-banner img {
        max-height: 350px;
    }
    
    .home-features {
        flex-direction: column;
        gap: 1rem;
    }
}
