/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* .funnel-sans-intro {
    font-family: "Funnel Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.quantico-regular {
    font-family: "Quantico", sans-serif;
    font-weight: 400;
    font-style: normal;
  } */

html {
    scroll-behavior: smooth;
}

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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding-left: 0px; /* To account for sidebar width */
}

/* Full-screen centered Intro section without visible box */
#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;    /* Center text vertically */
    align-items: flex-start;    /* Left-align text */
    text-align: left;
    height: 100vh;              /* Full viewport height */
    padding-left: 2vw;          /* Slight left padding for positioning */
    padding-right: 8vw;         /* Right padding to center text within viewport */
    margin: 0 auto;             /* Centers the section horizontally */
    background: none;           /* Removes any background */
    border: none;               /* Removes any borders */
    box-shadow: none;           /* Removes any shadow */
    position: relative;         /* Allows absolute positioning for the text */
    z-index: 1;
}

/* Additional text adjustments */
.intro-text {
    font-size: 1em;
    color: #555;
    margin: 0;
    position: absolute;         /* Allows for precise positioning */
    top: 40%;                  /* Vertically center the text */
    left: 10%;                 /* Left-aligned with slight padding */
    transform: translateY(-50%); /* Center vertically based on text height */
}

.intro-text {
    font-size: 1em;
    color: #555;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center the text vertically */
    align-items: flex-start; /* Left-align the text */
    height: 100%; /* Make sure the height is correct */
    padding-left: 10%; /* Adjust the left padding if needed */
}

.intro-name {
    font-size: 2em;
    font-family: "Quantico", sans-serif;
    color: rgb(27, 209, 63);
    font-weight: 700;
    margin: 0.1em 0;
    line-height: 1.2em;
}

.intro-headline {
    font-size: 5em;
    color: #444;
    margin: 0; 
    font-weight: 600;
    line-height: 1.2em;
    margin-left: -7px;
    margin: 0 0 0em;
    
}

.intro-description {
    font-size: 1.25em;
    color: rgb(119, 117, 117);
    line-height: 1.2em;
    margin-top: 0.5em;
}

/* Adjust font sizes for mobile */
@media (max-width: 768px) {
    .intro-name {
        font-size: 2.2em;
    }

    .intro-headline {
        font-size: 1.4em;
    }

    .intro-description {
        font-size: 0.9em;
    }
}


/* Navigation Bar */
nav ul {
    display: flex;
    list-style: none;
    background-color: #333;
    padding: 1rem;
    justify-content: center;
    gap: 20px;
    justify-content: flex-end; /* Aligns items to the right */
    margin-right: 20px;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: white;
    font-family: "Quantico", sans-serif;
    text-decoration: none;
    font-size: 16px;
}

.resume-btn {
    padding: 5px 15px;
    border: 1px solid white;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.resume-btn:hover {
    background-color: white;
    color: #333;
}

/* Section Styling */
section {
    padding: 20px;
    margin: 20px 40px 20px 70px; /* Adds space to the left for the sidebar */
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#home {
    text-align: center;
    background: #f4f4f4;
}

h1, h2 {
    color: #333;
}

/* Project Cards */
.project-card {
    background-color: #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Sidebar Styling */
.sidebar {
    position: fixed;
    top: 65%; /* Lower position so it's more in the bottom half */
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10; /* Higher than intro */
}

/* Styling for each icon link */
.icon {
    text-decoration: none;
    color: #333;
    font-size: 24px;
    transition: color 0.3s;
}

/* Hover effect for icons */
.icon:hover {
    color: #007acc;
}

/* Custom colors for each social icon */
.icon.github:hover { color: rgb(189, 9, 221); }
.icon.instagram:hover { color: #E1306C; }
.icon.email:hover { color: #01aa58; }
.icon.substack:hover { color: #FF6700; }
.icon.linkedin:hover { color: #0077B5; }
