/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation Bar */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-bottom: 4px solid black;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Space between logo and links */
}

.navbar-content {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Divider line */
.divider {
    width: 100%;
    max-width: 900px;
    height: 4px;
    background-color: black;
    margin: 20px 0;
}

/* Nav link styling */
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #007acc;
    border-bottom: 2px solid #007acc;
}


.logo {
    max-width: 80px;
    height: auto;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    max-width: 60px;
}

.logo h1 {
    font-size: 2rem;
    margin-top: 15px;
}

.divider {
    height: 4px;
    background-color: black;
    margin: 20px 0;
}

.welcome, .work-showcase {
    text-align: center;
    margin: 20px 0; /* Adjust this value for more or less space */
    margin-bottom: 20px; /* Increase this value as needed */
}

.welcome h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

body {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease; /* Smooth fade-out transition */
}

/* Invisible starting state for initial load */

/* Fade-In effect */
body.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease; /* Controls fade-out timing */
}

/* Fade-Out effect for navigation */
body.fade-out {
    opacity: 0; /* Invisible */
}

.welcome-text {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    max-width: 648px;
    margin: 0 auto;
    padding: 20px;
}

/* Centered heart icon styling */
.heart-icon {
    text-align: center;
    margin-top: 20px;
}

.heart-icon img {
    width: 60px;
    height: auto;
}

/* Footer Section */
.footer {
    background-color: #ffffff;
    padding: 0px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007acc;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.footer-divider {
    width: 2px;
    height: 60px;
    background-color: #333;
}

.footer-hosting {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.content-divider {
    height: 4px; /* Match the thickness of the navbar line */
    background-color: black; /* Match the color of the navbar line */
    margin: 0px 0 20px 0; /* Add extra space above */
}





