/*
Theme Name: My Custom Theme
Theme URI: http://example.com
Author: You
Description: A custom theme wrapper for my static site.
Version: 1.0
*/

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

:root {
    --primary-green: #10b981;
    --primary-dark: #059669;
    --accent-orange: #f59e0b;
    --warm-blue: #3b82f6;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    background: transparent;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Background Slider */
.background-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
}

/* Dual CTA Styles */
.dual-cta-container {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-option h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-option p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button.institutional {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    text-shadow: none;
}

.cta-button.institutional:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.cta-button.parental {
    background: linear-gradient(135deg, var(--warm-blue) 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    text-shadow: none;
}

.cta-button.parental:hover {
    background: linear-gradient(135deg, #2563eb 0%, var(--warm-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

/* Main Content */
.content-overlay {
    position: relative;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.content-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
}

.cta-button.primary {
    color: white;
    background: var(--primary-green);
    box-shadow: var(--shadow-medium);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-button.secondary {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.trust-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.parent-testimonial {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.parent-testimonial p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Features Section */
.features-section {
    position: relative;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    color: white;
}

.features-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.back-button {
    text-align: left;
    margin-bottom: 2rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.features-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
}

.steps-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.step-content h3 {
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.5;
}

.step-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .content-overlay h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .dual-cta-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-option {
        min-width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .cta-option h2 {
        font-size: 1.6rem;
    }
    
    .cta-button.institutional,
    .cta-button.parental {
        font-size: 1rem;
        padding: 0.9rem 1.8rem;
        width: 100%;
        max-width: 250px;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
    }
    
    .trust-indicators {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .parent-testimonial p {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }
    
    .features-section {
        padding: 6rem 1rem 4rem;
    }
    
    .features-section h1 {
        font-size: 2.5rem;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.8rem;
    }
    
    .step-content ul {
        text-align: left;
    }
    
    .step-content li {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-brand .brand-name {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .content-overlay h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .dual-cta-container {
        margin-top: 1.5rem;
    }
    
    .cta-option {
        min-width: 250px;
        padding: 1.5rem 1rem;
    }
    
    .cta-option h2 {
        font-size: 1.4rem;
    }
    
    .cta-option p {
        font-size: 0.9rem;
    }
}

/* Institutional Analytics Styles */
.institutional-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 10;
    position: relative;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-800);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

.target-institutions {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-800);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 4rem;
    backdrop-filter: blur(10px);
}

.target-institutions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

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

.institution-type {
    padding: 1.5rem;
    border-left: 4px solid var(--primary-green);
    background: rgba(16, 185, 129, 0.05);
    border-radius: 0 8px 8px 0;
}

.institution-type h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.institution-type ul {
    list-style: none;
    padding: 0;
}

.institution-type li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.institution-type li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.cta-section {
    text-align: center;
    background: rgba(16, 185, 129, 0.95);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(10px);
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Responsive adjustments for institutional page */
@media (max-width: 768px) {
    .institutional-content {
        padding: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .target-institutions {
        padding: 2rem 1rem;
    }
    
    .target-institutions h2 {
        font-size: 2rem;
    }
    
    .institution-types {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}