@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');


:root {
    --primary-beige: #F5F5DC;
    --dark-beige: #E8E5D7;
    --accent-brown: #8B7355;
    --text-dark: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --nav-height: 70px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}


.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: var(--nav-height);
    background: rgba(245, 245, 220, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    flex: 0 0 auto;
}

.nav-logo img {
    height: 35px;
    width: auto;
    transition: var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-main {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}

.nav-right {
    flex: 0 0 auto;
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-brown);
    background-color: rgba(139, 115, 85, 0.1);
    transform: translateY(-1px);
}


.introduction {
    margin-top: var(--nav-height);
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(
        to bottom,
        var(--primary-beige),
        var(--white)
    );
}

.introname h3 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    animation: fadeInDown 0.8s ease;
}

.studentfindme {
    max-width: 800px;
    margin: 2rem auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.studentfindme h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.studentfindme p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: var(--accent-brown);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

.secondary-button {
    background: transparent;
    color: var(--accent-brown);
    border: 2px solid var(--accent-brown);
}

.cta-button:hover {
    transform: translateY(-2px);
}

.primary-button:hover {
    background: #7A6548;
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.secondary-button:hover {
    background: rgba(139, 115, 85, 0.1);
}


.Working {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 4rem 2rem;
    background: var(--primary-beige);
}

.job, .awardssection {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.job:hover, .awardssection:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.job h1, .awardssection h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.job h1:after, .awardssection h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-brown);
}

.Working ul {
    list-style: none;
}

.Working ul li {
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(245, 245, 220, 0.5);
    border-radius: 8px;
    transition: var(--transition);
}

.Working ul li:hover {
    background: rgba(245, 245, 220, 0.8);
    transform: translateX(5px);
}

.Working a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    transition: var(--transition);
}

.Working a:hover {
    color: var(--accent-brown);
}


.ThingsIDO {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    background: var(--white);
}

.finance, .writing {
    text-align: center;
    transition: var(--transition);
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.finance:hover, .writing:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ThingsIDO h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.ThingsIDO img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ThingsIDO img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

ThingsIDO p {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}


.quote {
    background: var(--dark-beige);
    padding: 4rem 2rem;
    text-align: center;
}

.quoteeeuta h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding: 2rem;
}

.quoteeeuta h3:before,
.quoteeeuta h3:after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-brown);
    opacity: 0.2;
    position: absolute;
}

.quoteeeuta h3:before {
    top: -1rem;
    left: 0;
}

.quoteeeuta h3:after {
    bottom: -2rem;
    right: 0;
}


.semi-footer {
    background: var(--accent-brown);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.semi-footer ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
    list-style: none;
    margin-bottom: 2rem;
}

.semi-footer a {
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.semi-footer a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.BYE {
    padding: 1.5rem;
    background: var(--accent-brown);
    color: var(--white);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
}

    
@media (max-width: 1024px) {
    :root {
        --nav-height: 60px;
    }
    
    .Working, .ThingsIDO {
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .job, .awardssection {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .mobile-menu-button {
        display: block;
    }

    .container .main-menu,
    .container .right-menu {
        display: none;
    }
    
    .main-menu.active,
    .right-menu.active {
        display: flex;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(245, 245, 220, 0.98);
        padding: 1rem;
        animation: slideDown 0.3s ease;
    }
    
    .Working, .ThingsIDO {
        grid-template-columns: 1fr;
    }
    
    .introduction {
        padding: 3rem 1rem;
    }
    
    .introname h3 {
        font-size: 2.5rem;
    }
    
    .button {
        flex-direction: column;
        align-items: center;
    }
    
    .button a {
        width: 200px;
        text-align: center;
    }
    
    .semi-footer ul {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .introname h3 {
        font-size: 2rem;
    }
    
    .studentfindme h3 {
        font-size: 1.3rem;
    }
    
    .job h1, .awardssection h1 {
        font-size: 1.5rem;
    }
    
    .Working ul li {
        padding: 0.8rem;
    }
    
    .quote {
        padding: 2rem 1rem;
    }
    
    .quoteeeuta h3 {
        font-size: 1.5rem;
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Navigation Styles */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-menu-button:hover {
    color: var(--accent-brown);
}

/* Mobile Menu Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Update your media queries */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .mobile-menu-button {
        display: block;
        z-index: 1001;
    }

    .nav-main, .nav-right {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(245, 245, 220, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 1000;
    }

    .nav-main.active, .nav-right.active {
        display: flex;
        animation: slideIn 0.3s ease forwards;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .nav-right {
        position: fixed;
        bottom: 2rem;
        top: auto;
        height: auto;
        flex-direction: row;
        background: none;
        justify-content: center;
    }
}