body {
    font-family: "Trebuchet MS", sans-serif;
    background-color: #456882;
}

.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    margin: 0;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #234C6A;
    color: #D2C1B6;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.5s ease, opacity 0.5s ease;
}
.nav-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.name {
    font-size: 3rem;
    font-weight: 600;
    color: #D2C1B6; 
}
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 90;
    color: #D2C1B6; 
    transition: color 0.9s;
    padding: 6px 14px;  
    border: 2px solid #D2C1B6;
    border-radius: 50px;         
}
.nav-links a:hover {
    color: #ffffff; 
}
.nav.hide {
  transform: translateY(-100%);
  opacity: 0;
}
header {
    text-align: center;
    align-items: center;
    gap: 20px;
    color: #D2C1B6 ; 
}
.profile {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #456882; 
}
:root {
    --navy-900: #1B3C53;
    --navy-800: #234C6A;
    --navy-600: #456882;
    --beige: #D2C1B6;
}

main {
    max-width: 700px;
    margin: 24px auto;
    padding: 0 16px;
}
.section-box {
    background-color: rgba(69, 104, 130, 0.25); 
    border: 1px solid rgba(210, 193, 182, 0.35); 
    border-radius: 18px; 
    padding: 24px;
    margin: 24px 0; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
    backdrop-filter: blur(8px); 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.section-box h2 {
    color: var(--beige);
    font-size: 1.5rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(210, 193, 182, 0.3);
    padding-bottom: 6px;
}
.section-box p {
    color: #f1f1f1;
    margin: 10px 0;
}
.section-box ul {
    margin: 12px 0 0 1.2rem;
    padding: 0;
    color: #f3f3f3;
}
.section-box a {
    color: #ffdf9b;
    text-decoration: none;
    font-weight: 600;
}
body {
    margin: 0;
    font-family: "Trebuchet MS", sans-serif;
    background-color: #456882; 
    color: #D2C1B6;
    line-height: 1.5;
}


.section-box a:hover {
    text-decoration: underline;
}

h1, h2, .resume { 
    font-family: "American Typewriter", serif; 
}

.resume {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.resume th,
.resume td {
    border: 1px solid #ddd;
    padding: 10px;
    vertical-align: top;
}

.resume th {
    background-color: #f5f5f5;
    text-align: left;
}

.resume ul {
    margin: 5px 0 0 15px;
    padding: 0;
}
.description {
    display: none;
    margin-top: 8px;
}

.resume-button {
    background-color: #e2e8ff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.resume-button:hover {
    background-color: #c7d2ff;
}
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    padding: 10px;
    border: 100px;
      align-items: start;
}
.actions {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 10px;
}
.field input,
.field textarea {
    width: 100%;
    background-color: #D2C1B6;
    border: 1px solid #456882;
    border-radius: 8px;
    color: #1B3C53;
    padding: 8px 10px;
    font-size: 14px;
}
.field label {
    display: block;
    font-weight: bold;
    color: #D2C1B6;
    margin-bottom: 6px;
    }
.btn {
    background-color: #234C6A;
    color: #D2C1B6;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover {
    background-color: white;
}
@media (max-width: 700px) {
    .contact-form {
     grid-template-columns: 1fr;
    }
}
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
footer {
    background-color: #234C6A; 
    color: #D2C1B6; 
    padding: 20px 0;
    margin-top: 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
footer small {
    font-size: 14px;
    opacity: 0.9;
}

.top-link {
    color: #D2C1B6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
button { background-color: #234C6A; 
    color: #D2C1B6; 
    border: none; padding: 10px 20px; 
    border-radius: 8px; 
    font-weight: bold;
    cursor: pointer; }