/* GLOBAL */
body {
    font-family: Arial, sans-serif;
    background-color: #061f14; /* your dark background */
    color: #e6e6e6; /* soft light text */
    margin: 0;
    padding: 0;
}

.branding {
    position: absolute;
    top: 20px;
    left: 100px;
    z-index: 3; 
}

.branding img {
    height: 90px; 
    width: auto;
}


/* NAV BAR */
.top-nav {
    background-color: #111;
    padding: 40px 20px;
}

.top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
     background: rgba(6, 7, 6, 0.95);
    border: 1px solid #4c4f4e;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.top-nav a:hover {
    text-decoration: underline;
    
}

/* ABOUT CONTENT */
.about-container {
    max-width: 600px;
    height: 500px;
    margin: 50px auto;
    background: rgba(255, 255, 255, 0.06); /* soft translucent panel */
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(7, 6, 6, 0.1);
}

/* TITLE */
.about-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.about-photo {
    width: 110px;
    height: 180px;
}
