@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    /* background-color: #12151c; */
    background:#0a0e18;
    color: beige;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    height: 100dvh;
    margin: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    min-height: 100dvh;
}

.title {
    font-weight: 400;
    margin-bottom: 0;
}
.slogan {
    font-weight: 350;
    margin-top: 0;
    color: #bbbbbb;
}

.about-container {
    max-width: 900px;
    margin: 100px auto;
    padding: 40px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 100%;
}

.content-block {
    padding: 20px;
}

.content-block h2 {
    color: #4e8ac2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(245, 245, 220, 0.8);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-container {
        margin: 60px auto;
    }
}

h1 { font-size: clamp(2.5rem, 4vw + 1rem, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem); }

footer {
    margin-top: auto;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: auto;
}

footer a {
    color: #F5F5DC;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

footer a:hover {
    border-bottom: 1px solid #F5F5DC;
}

.navbar {
    position: fixed;
    z-index: 1;
    box-sizing: border-box;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    background: rgba(10, 14, 24, 0.8); /* Semi-transparent to match background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px); /* Adds a premium frosted glass effect */
    margin-bottom: -50px;
}

.nav-links {
    display: flex;
    gap: clamp(1rem, 5vw, 2rem);
}

.nav-links a {
    color: #F5F5DC;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}