/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #121418;
    color: #F2EDE9;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background-color: rgba(18, 20, 24, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(122, 58, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
}

.header-brand a {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F2EDE9;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: #A0A0A0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #22E6A8;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 400px);
}

.page-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(122, 58, 255, 0.1) 0%, transparent 50%);
}

.page-hero h1 {
    margin-bottom: 16px;
    background: linear-gradient(135deg, #F2EDE9, #22E6A8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #A0A0A0;
}

.content-section {
    padding: 40px 0;
}

.content-section.alt {
    background: rgba(122, 58, 255, 0.02);
}

.content-card {
    background: rgba(242, 237, 233, 0.03);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(122, 58, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.content-card h2 {
    color: #F2EDE9;
    margin-bottom: 24px;
}

.content-card p {
    color: #A0A0A0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.placeholder-text {
    color: #7A3AFF;
    font-style: italic;
    text-align: center;
    padding: 40px 0;
    font-size: 1.2rem;
}

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

.about-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-content.reverse .about-visual {
    order: -1;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(122, 58, 255, 0.2);
}

.about-svg {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    background: rgba(18, 20, 24, 0.5);
    border: 1px solid rgba(122, 58, 255, 0.2);
    padding: 20px;
}

/* Footer */
.footer {
    background: rgba(18, 20, 24, 0.8);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(122, 58, 255, 0.1);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

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

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #F2EDE9;
}

.footer-brand p {
    color: #A0A0A0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    color: #F2EDE9;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #22E6A8;
}

.footer-bottom {
    border-top: 1px solid rgba(122, 58, 255, 0.1);
    padding-top: 32px;
    text-align: center;
}

.footer-copyright p {
    color: #A0A0A0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .about-content.reverse .about-visual {
        order: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 24px;
    }
    
    .content-card {
        padding: 32px 24px;
    }
    
    .about-image,
    .about-svg {
        height: 200px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .page-hero {
        padding: 60px 0 30px;
    }
    
    h1 { font-size: 2rem; }
    
    .content-card {
        padding: 24px 16px;
    }
    
    .about-image,
    .about-svg {
        height: 180px;
    }
}