/* styles.css */
.navbar {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.navbar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
}

.navbar-link {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-link:hover {
    color: #111827;
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

.footer-section {
    background: #0f172a;
    color: #fff;
    padding: 3rem 0;
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fde047;
    margin-bottom: 1rem;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.7;
}

.footer-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    color: #cbd5e1;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: #fde047;
}

.footer-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-separator {
    height: 1px;
    background: #334155;
    margin-bottom: 2rem;
}

.footer-copyright {
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}


/* Hide links and show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }

    .navbar-toggle-icon {
        /*width: 30px;*/
        /*height: 10px;*/
        /*background: #333;*/
        /*display: block;*/
        /*margin: 6px 0;*/
        /*border-radius: 2px;*/
        /*box-shadow: 0 2px #333, 0 4px #333;*/
    }
}

@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}


.center-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5rem 0;
}

.custom-img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 0.75rem; /* optional */
}

.bio-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(30, 41, 59, 0.06);
}

.bio-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bio-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
    .bio-section {
        padding: 1rem;
    }

    .bio-title {
        font-size: 1.5rem;
    }

    .bio-text {
        font-size: 1rem;
    }
}

.footer-location {
    text-align: center;
    color: #fde047;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.footer-extra {
    text-align: center;
    margin: 0.5rem 0;
}

.footer-extra a {
    color: #fde047;
    text-decoration: underline;
    font-weight: 500;
}
