/* Global styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #2e2e30;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 3px
    );
    color: #bdc3c7;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #1f1f20;
}
.navbar-logo {
    text-decoration: none;
    color: inherit;  /* keeps the white text */
}

.navbar-logo h1 {
    margin: 0;       /* keep same spacing */
}

.navbar h1 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ecf0f1;
}

.content {
    display: flex;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    height: calc(100vh - 60px); /* full screen minus navbar height (adjust if navbar is taller) */
    margin-top: 0;             /* override previous 100px top margin */
}


.content h1 {
    color: #ecf0f1;
}

.content p {
    color: #bdc3c7;
}

.about-text {
    text-align: center;
    max-width: 600px;
    color: #bdc3c7;
}

.about-text h1 {
    color: #ecf0f1;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-text {
    text-align: center;
    max-width: 600px;
    color: #bdc3c7;
}

.contact-text h1 {
    color: #ecf0f1;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.contact-text a {
    color: #ecf0f1;
    text-decoration: underline;
    font-weight: bold;
}

.contact-text a:hover {
    color: #ffffff;
}
