/* Auxiliary Pages Styles */

/* About Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content.reverse {
    direction: rtl;
}

.about-content.reverse > * {
    direction: ltr;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.15);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.tech-illustration,
.vision-illustration {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.3));
}

.vision-section {
    text-align: center;
    padding: 3rem 0;
}

.vision-text {
    max-width: 800px;
    margin: 2rem auto 0;
}

.vision-text h2 {
    margin-bottom: 2rem;
    color: #00ffff;
}

/* Main Content Layout */
.main-content {
    min-height: 80vh;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 255, 255, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Content Sections */
.content-section {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.content-section h2 {
    color: #00ffff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-left: 4px solid #00ffff;
    padding-left: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Placeholder Content */
.placeholder-content {
    background: rgba(0, 255, 255, 0.05);
    border: 2px dashed rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

.placeholder-content p {
    font-size: 1.2rem;
    color: #00ffff;
    font-style: italic;
}

/* Navigation in Header */
.header .nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 0 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-brand {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content.reverse {
        direction: ltr;
    }
    
    .about-image {
        border-radius: 8px;
    }
}