/* About Page Styles - Dark Theme Matching Color Page */
* {
    box-sizing: border-box;
}

body.dark-theme {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: #111111;
    color: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-pattern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 204, 0.05) 50%, rgba(0, 255, 255, 0.1) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.6;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
    color: #A9A9A9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Journey Section */
.journey-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.2rem;
    color: #A9A9A9;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0, 255, 255, 0.25);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 3px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1), 0 0 0 1px rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.timeline-letter {
    font-size: 2rem;
    font-weight: 800;
    color: #00FFFF;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-content {
    flex: 1;
    padding: 0 50px;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
}

.timeline-year {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00FFFF;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
}

.timeline-description {
    font-size: 1rem;
    color: #CCCCCC;
    margin: 0;
    line-height: 1.7;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: #111111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1), 0 0 0 1px rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.25), 0 0 0 1px rgba(0, 255, 255, 0.3);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15) 0%, rgba(0, 204, 204, 0.15) 100%);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #00FFFF;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.25) 0%, rgba(0, 204, 204, 0.25) 100%);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border-color: #00FFFF;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.value-card p {
    font-size: 1rem;
    color: #CCCCCC;
    margin: 0;
    line-height: 1.7;
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: #111111;
    position: relative;
}

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

.join-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.join-subtitle {
    font-size: 1.2rem;
    color: #A9A9A9;
    margin: 0 0 50px 0;
    line-height: 1.7;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.join-button {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.join-button.primary {
    background: #00FFFF;
    color: #000000;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

.join-button.primary:hover {
    background: #00CCCC;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

.join-button.secondary {
    background: transparent;
    color: #00FFFF;
    border: 2px solid rgba(0, 255, 255, 0.4);
}

.join-button.secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
    border-color: #00FFFF;
}

/* Footer */
.footer {
    background: #111111;
    color: #FFFFFF;
    padding: 60px 0 0;
    border-top: 1px solid rgba(0, 255, 255, 0.25);
}

.footer ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.footer a {
    text-decoration: none;
    color: #CCCCCC;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #00FFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 50px;
    padding-bottom: 40px;
}

.footer-brand .brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-brand .brand-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00FFFF;
    display: inline-block;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-brand .brand-name {
    font-weight: 800;
    font-size: 20px;
    color: #FFFFFF;
}

.footer-brand .brand-tagline {
    color: #A9A9A9;
    margin: 0;
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links li {
    margin-bottom: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
}

.footer-divider {
    border-top: 1px solid rgba(0, 255, 255, 0.25);
    margin: 0;
}

.footer-bottom {
    padding: 30px 0;
    color: #A9A9A9;
    font-size: 0.9rem;
    text-align: center;
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-section {
        min-height: 500px;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .journey-section,
    .mission-section,
    .join-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 800px;
    }
    
    .value-card {
        padding: 40px 35px;
    }
    
    .join-title {
        font-size: 3rem;
    }
    
    .join-subtitle {
        font-size: 1.1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-section {
        min-height: 450px;
        padding-top: 70px;
        height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .journey-section,
    .mission-section,
    .join-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-title,
    .join-title {
        font-size: 2.3rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .timeline {
        padding: 30px 0;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
        margin-bottom: 50px;
    }
    
    .timeline-item:last-child {
        margin-bottom: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        width: 70px;
        height: 70px;
    }
    
    .timeline-letter {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 0;
    }
    
    .timeline-heading {
        font-size: 1.3rem;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 5px 14px;
    }
    
    .timeline-description {
        font-size: 0.95rem;
    }
    
    .values-grid {
        gap: 25px;
    }
    
    .value-card {
        padding: 35px 25px;
        border-radius: 16px;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .value-card p {
        font-size: 0.95rem;
    }
    
    .join-content {
        padding: 0 10px;
    }
    
    .join-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .join-button {
        width: 100%;
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        min-height: 400px;
        padding-top: 60px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .journey-section,
    .mission-section,
    .join-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title,
    .join-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    
    .section-description {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .timeline {
        padding: 25px 0;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 80px;
        margin-bottom: 40px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        left: 0;
    }
    
    .timeline-letter {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        padding: 0;
    }
    
    .timeline-heading {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-year {
        font-size: 0.95rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .value-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .join-content {
        padding: 0;
    }
    
    .join-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }
    
    .join-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }
    
    .join-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        gap: 25px;
        padding-bottom: 25px;
    }
    
    .footer-brand .brand-name {
        font-size: 18px;
    }
    
    .footer-brand .brand-tagline {
        font-size: 0.9rem;
    }
    
    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 25px 0;
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-section {
        min-height: 350px;
        padding-top: 50px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .journey-section,
    .mission-section,
    .join-section {
        padding: 40px 0;
    }
    
    .section-title,
    .join-title {
        font-size: 1.7rem;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-icon {
        width: 55px;
        height: 55px;
    }
    
    .timeline-letter {
        font-size: 1.3rem;
    }
    
    .timeline-heading {
        font-size: 1.1rem;
    }
    
    .value-card {
        padding: 25px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.85rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Prevent horizontal scroll */
body.dark-theme {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Ensure containers don't overflow */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Touch-friendly targets for mobile */
@media (max-width: 768px) {
    .join-button {
        min-height: 44px;
    }
    
    .timeline-icon {
        min-width: 44px;
        min-height: 44px;
    }
}
