/* public/css/formstyle.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f8fafc;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Header Section - White with Sky Blue Accents */
.header {
    background: white;
    color: #2D3748;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #87CEEB;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #87CEEB, #00BFFF, #1E90FF);
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #2D3748;
}

.tagline {
    font-size: 1.1rem;
    color: #4A5568;
    margin-bottom: 30px;
}

.main-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2D3748;
}

.subtitle {
    font-size: 1.3rem;
    color: #4A5568;
    margin-bottom: 20px;
}

.highlight-badge {
    background: linear-gradient(90deg, #87CEEB, #00BFFF);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Stats Section - Sky Blue */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    background: linear-gradient(90deg, #E0F7FA, #B2EBF2);
    border-bottom: 3px solid #00BFFF;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #008B8B;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #2D3748;
    font-weight: 500;
    margin-top: 5px;
}
.capstone {
    background: linear-gradient(135deg, #87CEEB 0%, #00BFFF 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.capstone-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.capstone-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.capstone p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.capstone-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.capstone-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    text-align: left;
}

.capstone-feature h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.capstone-feature p {
    font-size: 0.9rem;
    opacity: 0.9;
}
.month-section {
margin-bottom: 50px;
border: 2px solid #E2E8F0;
border-radius: 15px;
overflow: hidden;
background: white;
}

.month-header {
background: linear-gradient(90deg, #2D3748, #4A5568);
color: white;
padding: 30px;
text-align: center;
}

.month-title {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 10px;
}

.month-subtitle {
font-size: 1.2rem;
opacity: 0.9;
font-style: italic;
}

.month-description {
background: #F8FAFC;
padding: 25px;
font-size: 1rem;
color: #4A5568;
text-align: center;
border-bottom: 1px solid #E2E8F0;
}
/* Content Sections */
.content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #87CEEB;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Week Cards - White with Sky Blue Accents */
.week-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    border-left: 5px solid #87CEEB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.week-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.week-number {
    background: #87CEEB;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.week-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D3748;
    flex: 1;
    margin-left: 15px;
}

.week-theme {
    background: linear-gradient(90deg, #87CEEB, #00BFFF);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.week-description {
    color: #4A5568;
    margin-bottom: 20px;
    font-size: 1rem;
}

.skills-section {
    margin-bottom: 20px;
}

.skills-title {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 10px;
    font-size: 1rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(90deg, #87CEEB, #00BFFF);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.projects-section {
    background: #F8FAFC;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid #E2E8F0;
}

.projects-title {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.project-item {
    color: #4A5568;
    font-size: 0.9rem;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.project-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #87CEEB;
    font-weight: bold;
}

/* Special Features Section - Light Sky Blue */
.special-features {
    background: #E0F7FA;
    color: #2D3748;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
    border: 1px solid #B2EBF2;
}

.special-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #008B8B;
}

.special-subtitle {
    font-size: 1.2rem;
    color: #4A5568;
    margin-bottom: 25px;
}

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

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: #00BFFF;
}

.feature-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #2D3748;
}

.feature-item p {
    font-size: 0.9rem;
    color: #4A5568;
}

/* AI Focus Section - Sky Blue Gradient */
.ai-focus {
    background: linear-gradient(135deg, #87CEEB 0%, #00BFFF 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.ai-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.ai-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.ai-feature {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.ai-feature h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.ai-feature p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Tools Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-category {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #87CEEB;
    border: 1px solid #E2E8F0;
}

.tool-category h4 {
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 10px;
}

.tool-list {
    color: #4A5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* CTA Section - Dark Blue */
.cta {
    background: #2D3748;
    color: white;
    padding: 40px;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #87CEEB;
}

.benefit h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.benefit p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.apply-btn {
    background: linear-gradient(90deg, #87CEEB, #00BFFF);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.4);
}

/* Footer - Black */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 30px;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E2E8F0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0;
    }

    .header,
    .stats,
    .content,
    .footer {
        padding: 20px;
    }

    .logo {
        font-size: 2rem;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .stats {
        flex-direction: column;
    }

    .stat {
        margin-bottom: 20px;
    }

    .features-grid,
    .ai-features,
    .cta-benefits {
        grid-template-columns: 1fr;
    }

    .week-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .week-title {
        margin-left: 0;
        margin-top: 10px;
    }

    .week-theme {
        margin-top: 10px;
    }

    .contact-info li {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info li .icon {
        margin-bottom: 5px;
    }

    .apply-btn {
        width: 100%;
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: #fff;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .container {
        box-shadow: none;
        overflow: visible;
        width: auto;
        max-width: none;
    }

    .header,
    .stats,
    .content,
    .footer {
        padding: 15px;
    }

    .header {
        border-bottom: 2px solid #87CEEB;
    }

    .header::before {
        display: none;
    }

    .highlight-badge,
    .apply-btn {
        background: #87CEEB !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .week-card {
        border: 1px solid #E2E8F0;
        box-shadow: none;
        page-break-inside: avoid;
        margin-bottom: 20px;
    }

    .section-title {
        border-bottom: 2px solid #87CEEB;
    }

    .cta {
        background: #2D3748 !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .cta-benefits .benefit {
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    /* Hide elements not needed in print */
    .footer .social-icons,
    .footer .footer-links {
        display: none;
    }

    /* Ensure text is black for readability */
    p,
    li,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: #000 !important;
    }

    .stat-number,
    .stat-label,
    .week-title,
    .week-description,
    .skills-title,
    .projects-title,
    .project-item,
    .skill-tag {
        color: #000 !important;
    }

    .week-number {
        background: #87CEEB !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .week-theme {
        background: #00BFFF !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .ai-focus {
        background: #E0F7FA !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .ai-focus .ai-title,
    .ai-focus .ai-subtitle,
    .ai-focus p,
    .ai-focus h4,
    .ai-focus .ai-feature p {
        color: #000 !important;
    }

    .special-features {
        background: #E0F7FA !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .special-features .special-title,
    .special-features .special-subtitle,
    .special-features p,
    .special-features h4 {
        color: #000 !important;
    }

    .contact-info li span {
        color: #000 !important;
    }
}
@media print {
    .week-card,
    .special-features,
    .feature-item,
    .cta,
    .tool-category,
    .ai-feature {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    .container {
        overflow: visible !important;
    }

    .page-break {
        page-break-before: always;
    }
}
