/* Content Pages Specific Styles - For pages like Contact, EULA, etc. */
@import url('modern-style.css');

/* Override hero section for content pages - smaller */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
}

.hero_header {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content section styling */
.about {
    padding: 3rem 2rem;
    background-color: var(--background);
    border-radius: var(--border-radius);
    margin: 2rem 0;
    min-height: 400px;
}

.text_column {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

/* EULA specific styles */
.about h1 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.about p {
    margin-bottom: 1rem;
}

.about ul, .about ol {
    margin: 1rem 0 1rem 2rem;
}

.about li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Fix for nested lists */
.about ul ul, .about ol ol, .about ul ol, .about ol ul {
    margin-top: 0.5rem;
}

/* Links in content */
.about a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.about a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Classes from EULA page */
.c0, .c1, .c2, .c3, .c4, .c5 {
    margin: 0.5rem 0;
}

/* Remove team-member grid styling for these pages */
.team-member {
    display: block;
    background: none;
    padding: 0;
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero_header {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .about {
        padding: 2rem 1rem;
    }
}