@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --primary-color: #ff4500;
    --background-color: #f0f8ff;
    --text-color: #333;
    --secondary-text-color: #666;
}

/* Hide the scrollbar */
body::-webkit-scrollbar {
    width: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.logo {
    width: auto;
    height: 25px;

}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    margin-left: 20px;
    /* Add some space between the toggle button and the nav */
}







/* Add dark mode styles */
body.dark-mode {
    --background-color: #111111;
    --text-color: #f0f8ff;
    --secondary-text-color: #bbb;
}

body.dark-mode .cta-button {
    background-color: #f0f8ff;
    --text-color: #f0f8ff;
    color: var(--background-color);
}

body.dark-mode .cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}


body.dark-mode .profile-circle {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

main {
    display: flex;
    margin-top: 16vh;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.content {
    flex: 1;
    padding-right: 50px;
    min-width: 300px;
    order: 1;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-out;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1  span {
    color: var(--primary-color);
}


p {
    color: var(--secondary-text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.cta-button {
    background-color: var(--text-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.profile-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    order: 2;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.profile-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #ffa500;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.profile-circle:hover {
    transform: scale(1.05);
}

.profile-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-links {
    margin-top: 30px;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.social-links a {
    margin: 0 7px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        align-items: center;
    }

    nav {
        margin-top: 0;
    }

    nav ul {
        flex-direction: row;
        justify-content: flex-end;
        text-align: right;
    }

    nav ul li {
        margin-left: 20px;
        margin-bottom: 0;
    }

    main {
        display: flex;
        margin-top: 1px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .profile-image {
        order: 1;
        margin-bottom: 30px;
    }

    main {
        flex-direction: column;
    }

    .profile-image {
        margin-top: 10px;
    }

    


}