/* Hero Section */
.hero {
    background-color: #0066cc;
    color: white;
    padding: 40px 20px;
    text-align: center;
    .hero-content{
        margin: 0;
        h1, h3 {
            color: white;
        }
    }
    .portrait{
        /* Width height should match for circle */
        width: 200px;
        height: 200px; 
        border-radius: 50%; 
        object-fit: cover; 
        border: 4px solid #555; 
        margin-top: 20px; 
    }
    p {
        font-size: 1.2rem;
        margin-top: 10px;
    }
}

.cta-btn {
    background-color: #ff9900;
    padding: 12px 30px;
    font-size: 1rem;
    color: white;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #cc7a00;
}

/* About Section */
.about {
    padding: 40px 20px;
    background-color: white;
    text-align: center;
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    p {
        text-align: left; 
        font-size: 1.1rem;
        max-width: 800px;
        margin: 1rem auto;
        line-height: 1.6;
    }

    .about-logo{
        display: block;
        margin: 0 auto;
        max-width: 200px; 
    }
}

/* Projects Section */
.projects {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.projects h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.project-card {
    background-color: white;
    padding: 20px;
    margin: 20px;
    display: inline-block;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;

    h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    p {
        font-size: 1rem;
    }

    a {
        display: block;
        background: #007bff;
        color: white;
        padding: 8px;
        text-decoration: none;
        border-radius: 5px;
        margin-top: 10px;
        text-align: center;
    }

    a:hover {
        background: #0056b3;
    }

    .btn {
        background-color: #0066cc;
        padding: 8px 20px;
        font-size: 1rem;
        color: white;
        border-radius: 5px;
        margin-top: 10px;
        display: inline-block;
    }

    .btn:hover {
        background-color: #004b8c;
    }

    img {
        width: 100%;        /* Make the image fill the card width */
        height: 180px;      /* Set a fixed height */
        object-fit: cover;  /* Crop to fill the space without stretching */
        border-radius: 5px;
    }
}