@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    color: #222;
    background: #fff;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Navbar smaller */
.navbar {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    position: relative;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-links {
    display: none;
    align-items: center;
}

.nav-inner a {
    text-decoration: none;
    margin-left: 1.2rem;
    color: #333;
    transition: color 0.3s;
}

.nav-inner a:hover {
    color: #00BBD4;
}

.logo {
    background: linear-gradient(to right, #00F0B7, #01B2D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;

    /*height: 80px;*/
}

/* Hero full-cover */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: auto;
    z-index: -1;
    filter: brightness(60%);
}

.hero-content {
    animation: fadeIn 2s ease-in;
    padding: 0 2rem;
    margin-top: 60px;
    max-width: 800px;
}

.hero h2 {
    font-size: 2.5rem;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(to right, #00F0B7, #01B2D5);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* About bigger */
.container {
    max-width: 1100px;
    margin: 10px auto;
    padding: 5rem 2rem;
}

.about-inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
}
.about-inner img {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 20rem;
    width: auto;

}
.about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.about-text {
    max-width: 660px;
    padding-left: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.about-social {
    width: 100%;

}

.about-text p, .about-social p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text .lead, .about-social .load {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.about-text p:nth-child(2){
    font-size: 1.4rem;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
}
.about-social p{
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
    line-height: 1.5;
}
.about-text p:nth-child(3) {
    font-size: 1.3rem;
    font-weight: 600;
    color: #01B2D5;
    margin-top: 1.5rem;
    font-weight: 500;
}
.about-text p:nth-child(4) {
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
    line-height: 1.5;
}

.about-text br, .about-social br {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

.profile {
    width: 260px;
    border-radius: 12px;
    flex-shrink: 0;
}

/* Project sections */
.project-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 2rem 0;
}

.project-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 2rem 0;
}

.project-text {
    flex: 1;
    max-width: 45%;
}

.project-text h3 {
    font-size: 2.2rem;
    background: linear-gradient(to right, #00F0B7, #01B2D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.project-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

.project-image {
    flex: 1;
    width: 55%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-image:hover {
    transform: translateY(-5px);
}

.reverse .project-inner {
    flex-direction: row-reverse;
}

.achievement-list {
    margin: 1.5rem 0;
}

.achievement-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    .project-inner {
        gap: 3rem;
        padding: 0 2rem;
    }

    .project-text, .project-image {
        max-width: 100%;
        width: 100%;
    }

    .project-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .profile {
        margin: 0 auto;
        width: 100%;
        max-width: 300px;
        height: 350px;
    }

    .about-text > p:nth-child(-n+3) {
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .expertise-list {
        grid-template-columns: 1fr;
    }

    .project-inner {
        margin-bottom: 2rem;
        flex-direction: column-reverse;
    }

    .reverse .project-inner {
        flex-direction: column-reverse;
    }

    .speaking-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-signup {
        padding: 2rem;
    }

    .about-text .lead {
        font-size: 1.8rem;
    }

    .about-text p:nth-child(2) {
        font-size: 1.2rem;
    }

    .about-text p:nth-child(3) {
        font-size: 1.2rem;
    }
}

@media (max-width: 1000px) {
    .nav-links{
        display: none !important;
    }
    .nav-inner {
        position: relative;
    }

    .hero {
        min-height: 60vh;
        position: relative;
        overflow: hidden;
        padding: 2rem 0;
    }

    .hero-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        filter: brightness(60%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        margin-top: 2rem;
        padding: 0 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero p {
        display: none;
    }

    .hero-cta {
        margin-top: 2rem;
        gap: 1rem;
    }

    .hero-cta a:first-child {
        display: none;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    .about-text {
        padding-left: 0;
    }
}

/* Navbar links */
.nav-links {
    display: flex;
    align-items: center;
}

/* Notes */
.notes h2 {
    margin-bottom: 2rem;
}

.notes-list article {
    border-left: 4px solid #00F0B7;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 2rem 1rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer a {
    color: #01B2D5;
    margin-left: 1rem;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-about p {
    color: #666;
    margin-top: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
    color: #666;
}

/* Section enhancements */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.8;
}

.expertise-list {
    list-style: none;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.expertise-list li {
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
}

.expertise-list li::before {
    content: "•";
    color: #00F0B7;
    font-weight: bold;
    margin-right: 0.5rem;
}

.social-proof {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-link {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: #00BBD4;
}

.social-link i {
    font-size: 1.2rem;
}

.company-role {
    color: #666;
    font-size: 1.1rem;
    margin: 0.5rem 0 1rem;
}

.achievement-list {
    list-style: none;
    margin: 1.5rem 0;
}

.achievement-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.achievement-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #00BBD4;
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.speaking-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.speaking-item:hover {
    transform: translateY(-5px);
}

.speaking-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.speaking-item p {
    color: #666;
}

.newsletter-signup {
    background: linear-gradient(to right, #00F0B7, #01B2D5);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.newsletter-signup h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.newsletter-signup .btn {
    background: white;
    color: #01B2D5;
    margin-top: 1.5rem;
}

.newsletter-signup .btn:hover {
    background: rgba(255,255,255,0.9);
}

/* Animations */
.speaking-item, .project-inner, .featured-article {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
