/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #27ae60;
    --text-color: #333;
    --font-heading: 'Alice', serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin: 0.5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation Styles */


.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    border-radius: 4px;
    background: white;
    margin: 1em;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hamburger {
    background: none;
    border: none;
    padding: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.menu-items {
    display: none;
    flex-direction: column;
    background: white;
    padding: 10px;
}

.menu-items a {
    padding: 12px;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.menu-items a:hover {
    background: #f5f5f5;
}

.menu-items.show {
    display: flex;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.desktop-nav a {
    color: white;
    text-decoration: none;
    padding: 1rem;
    transition: color 0.3s ease;
}

.desktop-nav a:hover {
    color: var(--secondary-color);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;
}

.sticky-cta .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.sticky-cta .btn:hover {
    transform: translateY(-2px);
}

/* Header Section */
.header {
    margin-top: 2rem;
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.title-container h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.title-container h2 {
    font-size: 1.4rem;
    color: #666;
    margin: 0.5rem 0;
}

.affiliation {
    color: #666;
    font-size: 1rem;
}

/* Content Sections */
.section {
    margin: 3rem 0;
    scroll-margin-top: 100px;
}

.section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.content-box {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 1rem 0;
}

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

.expertise-card {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.expertise-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expertise-card i {
    color: var(--secondary-color);
}

.contact-info p {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn i {
    font-size: 1rem;
}

.download {
    background: var(--accent-color);
    color: white;
}

.download:hover {
    background: #219a52;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .profile-header {
        padding: 1rem 0;
    }
    
    .title-container h1 {
        font-size: 1.7rem;
    }
    
    .title-container h2 {
        font-size: 1.2rem;
    }
    
    .section h3 {
        font-size: 1.5rem;
    }
    
    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .sticky-cta .btn {
        width: 45px;
        height: 45px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
}



.sticky-cta{
    justify-self: anchor-center;

    border-radius: 0px;
}

a.btn.call {
    background: green;
    color: white;
}
button.btn.contact {
    background: #040ca2;
    color: white;
    width: 200px;
    border-radius: 4px;
    font-family: 'Alice';
    font-size: 18px;
}
button.btn.share {
    background: #eed837;
}

.download {
    background: green;
    color: white;
    border-radius: 4px;
    font-family: 'Alice';
    font-size: 18px;
}
img.profile-img {
    border-radius: 0px;
    border: none;
    width: 250px;
    height: auto;
    margin-bottom: -0.5em;
    margin-top: -2.3em;
}
.profile-header {
        padding: 0;
    }
