/* Auxiliary Pages Styles */

/* Main content for auxiliary pages */
.auxiliary-main {
    min-height: calc(100vh - 200px);
    padding-top: 120px;
    padding-bottom: 3rem;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #4fd1c7 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 400;
}

/* Content Blocks */
.content-blocks {
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #e0e7ff;
    background: linear-gradient(135deg, #4fd1c7, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.content-block p:last-child {
    margin-bottom: 0;
}

/* Values Grid (About page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: rgba(79, 209, 199, 0.05);
    border: 1px solid rgba(79, 209, 199, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    border-color: rgba(79, 209, 199, 0.3);
    box-shadow: 0 15px 30px rgba(79, 209, 199, 0.1);
}

.value-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4fd1c7;
}

.value-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 0;
}

/* Empty Content Placeholder */
.empty-content {
    text-align: center;
    padding: 4rem 2.5rem;
    border-style: dashed;
    border-color: rgba(255, 107, 107, 0.2);
}

.placeholder-text {
    font-size: 1.2rem;
    color: #94a3b8;
    font-style: italic;
    margin-bottom: 0;
}

/* Content with Images */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse .content-text,
.content-with-image.reverse .content-image {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid rgba(79, 209, 199, 0.2);
}

/* Values Section Enhancements */
.values-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.values-illustration {
    filter: drop-shadow(0 0 20px rgba(79, 209, 199, 0.3));
}

.value-icon {
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(79, 209, 199, 0.2));
}

/* Technology and Community Sections */
.tech-content,
.community-content {
    text-align: center;
}

.tech-illustration,
.community-illustration {
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.2));
}

/* Header links for auxiliary pages */
.logo-container a {
    text-decoration: none;
}

.logo-container a:hover .brand-name {
    opacity: 0.8;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .auxiliary-main {
        padding-top: 100px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-block {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-with-image.reverse {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.6rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .empty-content {
        padding: 3rem 1.5rem;
    }
    
    .placeholder-text {
        font-size: 1.1rem;
    }
    
    .content-image img {
        height: 200px;
    }
}