/* Auxiliary Pages Styles */

/* Main Content Layout */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.page-header h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #b8bcc8;
    font-size: 1.1rem;
    margin: 0;
}

/* Content Blocks */
.content-block {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1b3a 100%);
    border: 1px solid rgba(233, 30, 99, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.content-block h2 {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(233, 30, 99, 0.3);
    padding-bottom: 0.5rem;
}

.content-block p {
    color: #b8bcc8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

/* Section Images */
.section-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

/* Empty Content Placeholder */
.empty-content {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2c2c 0%, rgba(233, 30, 99, 0.1) 100%);
    border: 2px dashed rgba(233, 30, 99, 0.3);
}

.placeholder-text {
    color: #b8bcc8;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .main-content {
        margin-top: 70px;
        padding: 1rem 0;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .empty-content {
        min-height: 200px;
    }
    
    .placeholder-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .section-image {
        height: 200px;
    }
}

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

.content-text {
    flex: 1;
}

.content-image {
    flex: 1;
}

.svg-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.svg-illustration svg {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for content with images */
@media (max-width: 768px) {
    .content-with-image,
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .svg-illustration {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .content-block {
        padding: 1.5rem 1rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-block h2 {
        font-size: 1.3rem;
    }
    
    .section-image {
        height: 180px;
    }
}