/* Curriculum Alignment Page Styles */

/* Header Styling */
header {
    background: white !important;
    backdrop-filter: none;
}

header nav a {
    color: var(--gray-800);
}

header nav a:hover {
    color: var(--primary-color);
}

header nav a.active {
    color: var(--primary-color);
}

/* Header Logo Styling */
.logo img {
    width: auto;
    height: 25px;
    margin-top: 7.5px;
}



/* Hero Section */
.curriculum-hero {
    background: linear-gradient(140deg, rgb(53, 133, 238) 15%, rgb(46, 113, 215) 65%, rgb(37, 99, 235) 100%);
    padding: 14rem 0 8rem;
    min-height: 600px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.curriculum-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: -3rem auto 0;
    padding: 0 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-badge i {
    font-size: 1rem;
    color: #10b981;
}

.curriculum-hero h1 {
    color: white;
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.curriculum-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-feature-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
    min-width: 100%;
}

/* Content Section */
.curriculum-content {
    padding: 5rem 0 4rem;
    background: #fff;
    margin-top: -1px; /* Overlap with wave for seamless transition */
    position: relative;
    z-index: 2;
}

.curriculum-content .container {
    max-width: 1300px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 3rem;
    margin-top: -4rem;
    font-size: 0.9rem;
    padding: 0 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    color: var(--gray-600);
    align-items: center;
}

.breadcrumb-nav ol li {
    display: inline;
}

.breadcrumb-nav ol li:not(:last-child)::after {
    content: none;
}

.breadcrumb-nav ol li:nth-child(2) {
    color: var(--gray-400);
    margin: 0 0.25rem;
}

.breadcrumb-nav ol li:last-child {
    color: var(--gray-800);
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Blog Article Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-intro {
    margin-bottom: 3rem;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--gray-800);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.article-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-section {
    margin-bottom: 4rem;
}

.article-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    line-height: 1.3;
}

.article-section h2:first-of-type {
    margin-top: 0;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.article-section p strong {
    color: var(--gray-900);
    font-weight: 600;
}

.process-explanation {
    margin-top: 2rem;
}

.process-explanation h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.process-explanation h3:first-child {
    margin-top: 0;
}

.process-explanation p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}


/* NCEA Levels Inline Style */
.levels-inline {
    margin-top: 2.5rem;
}

.level-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--gray-200);
}

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

.level-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: white;
}

.level-badge.level-1 {
    background: linear-gradient(135deg, #10b981, #059669);
}

.level-badge.level-2 {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.level-badge.level-3 {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.level-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.level-item p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin: 0;
}

/* Article Conclusion */
.article-conclusion {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--gray-200);
}

.article-conclusion h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.article-conclusion p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

/* Feedback Section */
.feedback-section {
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.05), rgba(66, 133, 244, 0.05));
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.feedback-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.feedback-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.feedback-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feedback-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

.feedback-content .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
}

.feedback-content .btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    .logo img {
        height: 18px !important;
        margin-top: 4px;
    }

    .curriculum-hero {
        padding: 7rem 0 5rem;
    }

    .curriculum-hero h1 {
        font-size: 2.5rem;
    }

    .curriculum-hero .hero-subtitle {
        font-size: 1.15rem;
        padding: 0;
        margin-bottom: 2rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-feature-item {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .curriculum-content {
        padding: 3rem 0;
    }

    .blog-article {
        padding: 0 0.5rem;
    }

    .article-lead {
        font-size: 1.15rem;
    }

    .article-section {
        margin-bottom: 3rem;
    }

    .article-section h2 {
        font-size: 1.75rem;
        margin-top: 2rem;
    }

    .article-section p {
        font-size: 1.05rem;
    }

    .process-explanation h3 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .level-item {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .article-conclusion {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .feedback-section {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .feedback-content i {
        font-size: 2.5rem;
    }

    .feedback-content h2 {
        font-size: 1.5rem;
    }

    .feedback-content p {
        font-size: 1rem;
    }

    .feedback-content .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 16px !important;
        margin-top: 3px;
    }

    .curriculum-hero {
        padding: 10rem 0 4rem;
    }

    .curriculum-hero h1 {
        font-size: 2rem;
    }

    .curriculum-hero .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
        margin-bottom: 1.25rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .hero-feature-item {
        justify-content: center;
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .article-section p {
        font-size: 1rem;
    }

    .process-explanation h3 {
        font-size: 1.2rem;
    }

    .level-item h3 {
        font-size: 1.3rem;
    }

    .feedback-section {
        margin-top: 2.5rem;
        padding: 1.5rem 1rem;
    }

    .feedback-content i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feedback-content h2 {
        font-size: 1.3rem;
    }

    .feedback-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .feedback-content .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }
}

