/* static/css/reset.css */
@font-face {
    font-family: 'Articulat CF';
    src: url('/static/fonts/ArticulatCF-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'FigTree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #070C34;
    background-color: #F4EEEA;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Articulat CF';
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.5rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #EB670E;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* static/css/main.css */
/* Special/Highlight Text */
.prata-text, .hero-title-accent {
    font-family: 'Prata', serif;
}

/* Colors */
:root {
    --primary-dark: #070C34;
    --secondary-blue: #2A3582;
    --accent-orange: #EB670E;
    --bg-light: #F4EEEA;
    --gradient-primary: linear-gradient(135deg, #EB670E, #2A3582);
    --gradient-hover: linear-gradient(135deg, #d4560c, #1e2770);
    --shadow-sm: 0 2px 4px rgba(7, 12, 52, 0.1);
    --shadow-md: 0 4px 6px rgba(7, 12, 52, 0.1);
    --shadow-lg: 0 10px 15px rgba(7, 12, 52, 0.1);
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #F4EEEA;
    box-shadow: var(--shadow-sm);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #070C34;
    letter-spacing: 1px;
}

.logo-subtext {
    font-size: 0.7rem;
    font-weight: 500;
    color: #2A3582;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'FigTree', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #070C34;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #070C34;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(7, 12, 52, 0.9), rgba(42, 53, 130, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-title-accent {
    display: block;
    font-family: 'Prata', serif;
    font-size: 2.5rem;
    color: #EB670E;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: 'FigTree', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #EB670E;
    color: white;
}

.btn-primary:hover {
    background: #d4560c;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: white;
    color: #070C34;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #EB670E;
    border: 2px solid #EB670E;
}

.btn-outline:hover {
    background: #EB670E;
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #070C34;
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #2A3582;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Prata', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #EB670E;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #2A3582;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #070C34;
    margin-bottom: 1rem;
}

.service-description {
    color: #2A3582;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    font-weight: 600;
    color: #EB670E;
    position: relative;
}

.service-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    border-left: 3px solid #EB670E;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #070C34;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #2A3582;
    line-height: 1.7;
}

/* Certifications */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.certification-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.certification-name {
    font-family: 'Prata', serif;
    font-size: 1.5rem;
    color: #EB670E;
    margin-bottom: 0.5rem;
}

.certification-desc {
    color: #2A3582;
    font-weight: 500;
}

/* Internship Highlight */
.internship-highlight {
    background: var(--gradient-primary);
    color: white;
}

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

.internship-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.internship-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.internship-features span {
    font-weight: 500;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #070C34;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid rgba(42, 53, 130, 0.1);
    padding-top: 1rem;
}

.testimonial-author strong {
    display: block;
    color: #070C34;
    font-size: 1.125rem;
}

.testimonial-author span {
    display: block;
    color: #2A3582;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Newsletter */
.newsletter {
    background: white;
}

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

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-text {
    color: #2A3582;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(42, 53, 130, 0.2);
    border-radius: 4px;
    font-family: 'FigTree', sans-serif;
}

.newsletter-input:focus {
    border-color: #EB670E;
    box-shadow: 0 0 0 3px rgba(235, 103, 14, 0.1);
}

.newsletter-message {
    min-height: 1.5rem;
}

.newsletter-message.success {
    color: #2A3582;
}

.newsletter-message.error {
    color: #EB670E;
}

/* Contact Page */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #070C34;
    margin-bottom: 0.5rem;
}

.info-text {
    color: #2A3582;
    line-height: 1.8;
}

.info-text a {
    color: #EB670E;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #2A3582;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #070C34;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(42, 53, 130, 0.2);
    border-radius: 4px;
    font-family: 'FigTree', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #EB670E;
    box-shadow: 0 0 0 3px rgba(235, 103, 14, 0.1);
}

.form-message {
    margin-top: 1rem;
    min-height: 1.5rem;
}

.form-message.success {
    color: #2A3582;
}

.form-message.error {
    color: #EB670E;
}

/* Footer */
.footer {
    background: #070C34;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: #EB670E;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #EB670E;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}