/* Variables and fonts now loaded from variables.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--text-color);
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 20% 20%, rgba(176, 11, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 90, 213, 0.1) 0%, transparent 50%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content h1 {
    font-family: var(--heading-font);
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(176, 11, 235, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-content .hero-text {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

/* Mission Section */
.mission-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--background-color);
    z-index: 1;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.95) 0%,
        rgba(176, 11, 235, 0.15) 30%,
        rgba(176, 11, 235, 0.1) 60%,
        rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.mission-box {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 200px;
}

.mission-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.mission-box.main-box {
    grid-column: 1 / -1;
    background: rgba(17, 24, 39, 0.8);
    min-height: 180px;
}

.mission-box.highlight-box {
    grid-column: 1 / -1;
    background: linear-gradient(45deg, rgba(176, 11, 235, 0.1), rgba(128, 90, 213, 0.1));
    border-color: var(--primary-color);
    min-height: 160px;
}

.mission-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.mission-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color-light);
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary-color), #805AD5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-color-light);
    font-weight: 500;
}

/* Story Section */
.story-section {
    position: relative;
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 30%,
        rgba(176, 11, 235, 0.1) 60%,
        rgba(176, 11, 235, 0.15) 100%);
    z-index: -1;
}

.story-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

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

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Team Section */
.team-section {
    position: relative;
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(176, 11, 235, 0.15) 0%,
        rgba(176, 11, 235, 0.1) 30%,
        rgba(0, 0, 0, 0.95) 60%,
        rgba(0, 0, 0, 1) 100%);
    z-index: -1;
}

.team-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.team-member {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-speed);
    margin-top: 4rem;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(176, 11, 235, 0.3);
    border-color: var(--primary-color);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.member-image:hover {
    transform: scale(1.05);
    border-color: var(--primary-hover);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.team-member .position {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-member .bio {
    font-size: 1.1rem;
    color: var(--text-color-light);
    line-height: 1.6;
    text-align: center;
}

/* Values Section */
.values-section {
    position: relative;
    padding: 80px 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.95) 30%,
        rgba(176, 11, 235, 0.1) 60%,
        rgba(176, 11, 235, 0.15) 100%);
    z-index: -1;
}

.values-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(176, 11, 235, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(176, 11, 235, 0.3);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2);
    color: var(--primary-hover);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.1rem;
    color: var(--text-color-light);
    line-height: 1.6;
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientMove {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .hero-text {
        font-size: 1.5rem;
    }
    
    .mission-section {
        padding: 60px 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .mission-box {
        padding: 1.25rem;
        min-height: auto;
    }

    .mission-box h2 {
        font-size: 2rem;
    }

    .mission-box p {
        font-size: 0.95rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
        min-height: 140px;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .story-text p {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 2.5rem;
    }
    
    .logo img {
        height: 50px;
    }
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 65px;
    width: auto;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
}

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    align-items: center;
    text-align: center;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
}

.footer-section p {
    color: var(--text-color-light);
    margin-bottom: 0.4rem;
    line-height: 1.4;
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-color-light);
    width: 100%;
    max-width: 900px;
    font-size: 0.95rem;
}

/* Footer Legal Links */
.footer-section.legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    align-items: center;
}

.legal-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    justify-items: center;
}

.legal-links-column {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    align-items: center;
}

.footer-section.legal-links a {
    color: var(--text-color-light);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    display: block;
    opacity: 0.8;
    width: 100%;
    text-align: center;
} 