@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

.extend-bottom {
    padding-bottom: 900px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

:root {
    --main-color: #121212;
    --accent-color: #BB86FC;
    --second-accent: #03DAC5;
    --text-color-1: #E0E0E0;
    --text-highlights: #CF6679;
}




/* original color palatte
:root {
    --main-color: #121212;
    --accent-color: #BB86FC;
    --second-accent: #03DAC5;
    --text-color-1: #E0E0E0;
    --text-highlights: #CF6679;
}


simple changes
:root {
    --main-color: #121212;
    --accent-color: #B39DDB;
    --second-accent: #9575CD;
    --text-color-1: #E0E0E0;
    --text-highlights: #F06292; 
}

green
:root {
    --main-color: #2D3436;
    --accent-color: #27AE60;
    --second-accent: #1E8449; 
    --text-color-1: #BDC3C7; 
    --text-highlights: #E67E22; 
}

:root {
    --main-color: #2D3436; 
    --accent-color: #F4A300; 
    --second-accent: #D4E157; 
    --text-color-1: #F5F5F5; 
    --text-highlights: #FF7043; 
}

:root {
    --main-color: #263238; 
    --accent-color: #C8E6C9; 
    --second-accent: #A5D6A7; 
    --text-color-1: #FAFAFA; 
    --text-highlights: #81C784; 
}

*/

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--text-color-1) !important;
}

h5 {
    font-size: 20px;
}

li {
    list-style: none;
}

nav {
    background-color: var(--main-color);
    position: sticky;
    top: 0;
    padding: 0 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    box-shadow: 0 5px 80px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav .logo img {
    width: 40px;
    height: 40px;
}

nav .logo,
footer .logo {
    display: flex;
    align-items: center;
}


/* github button */
nav .logo a,
footer .logo a {
    margin-left: 8px;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

nav ul,
footer .top ul {
    display: flex;
    gap: 40px;
}

/* "Nav" button (purple background, outline and text color) */
nav button {
    color: var(--accent-color); /* Purple text color */
    background-color: transparent; /* Clear background */
    border-color: var(--accent-color); /* Purple outline color */
    padding: 12px 16px;
    border-radius: 5px;
    border: 2px solid var(--accent-color); /* Slightly thicker border for visibility */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Add hover effects */
nav button:hover {
    background-color: var(--accent-color); /* Purple background on hover */
    border-color: var(--accent-color); /* Border matches the background */
    color: var(--main-color); /* Text color changes to dark on hover */
    transform: scale(1.05); /* Slight hover scale effect */
}

/* Menu Button Styling */
nav button#menuButton {
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    padding: 7px;
}


.main {
    background-color: var(--main-color);
    padding: 90px 85px; /* This controls top and bottom padding */
    display: flex;
    flex-wrap: wrap; /* Allow text and image to wrap on smaller screens */
    align-items: center;
    justify-content: space-between;
    padding-left: 10%; /* Add more space on the left */
    padding-right: 10%; /* Add more space on the right */
    /*gap: 30px; /* Space between the text and image */
}

.main .left h3 {
    margin-top: 10px;
    font-weight: bold;
    font-size: 52px;
    line-height: 1.2;
}

.main .left h3 span {
    color: var(--text-highlights);
}

.main .left p {
    color: var(--accent-color);
    font-size: 26px;
    /*margin-top: 20px;*/
    line-height: 1.6; /* Adjust this value to increase or decrease the space between lines */
}

/* "My Projects" button (clear background, outline and text color) */
.main .work-btn {
    background-color: transparent; /* Clear background */
    border-color: #FFF; /* Outline color */
    color: #FFF; /* Text color */
    padding: 14px 24px;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-width: 2px; /* Slightly thicker border for visibility */
}

/* Add hover effects */
.main .work-btn:hover {
    background-color: var(--accent-color); /* Background changes to accent color */
    border-color: var(--accent-color); /* Border matches the background */
    color: var(--main-color); /* Text color changes to light */
    transform: scale(1.05); /* Make the button bigger when hovered */
}


/* "Get In Touch" button (clear background, outline and text color) */
.main .contact-btn {
    background-color: transparent; /* Clear background */
    border-color: var(--text-highlights); /* Outline color */
    color: var(--text-highlights); /* Text color */
    font-size: 17px;
    font-weight: bold;
    padding: 16px 28px;
    box-shadow: none; /* Remove box shadow */
    transition: 0.3s ease;
    border-width: 2px; /* Slightly thicker border */
}

/* Add hover effects */
.main .contact-btn:hover {
    background-color: var(--text-highlights); /* Background changes to accent color */
    border-color: var(--text-highlights); /* Border matches the background */
    color: var(--main-color); /* Text color changes to the main color */
    transform: scale(1.05); /* Slight hover scale effect */
}

/* Button container (flex row, keeping buttons inline) */
.main .button-container {
    display: flex;
    gap: 20px; /* Space between the buttons */
    justify-content: flex-start; /* Align buttons to the left */
}

.main .work-btn,
.main .contact-btn {
    padding: 14px 24px; /* Ensure equal padding for both buttons */
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    margin: 0; /* Remove margin so the buttons align correctly */
}

.main .left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px; /* Adds space between the items in the left column */
}

.main .right img {
    width: 500px;
    border-radius: 15px;
}


/* Styles for medium screens (tablet portrait and larger phones) */
@media screen and (max-width: 1400px) {
    .main {
        padding: 60px 40px; /* Adjust padding for smaller devices */
    }

    .main .left h3 {
        font-size: 40px; /* Slightly smaller text for tablets */
    }

    .main .left p {
        font-size: 20px;
    }

    .main .right img {
        width: 300px; /* Adjust image size */
        
        margin-top: 20px; /* More space above the image */
    }

    .main .left {
        align-items: center; /* Center the text on smaller screens */
        text-align: center; /* Center the text */
    }

    .main .button-container {
        justify-content: center; /* Center buttons on tablets */
    }
}

/* Styles for medium screens (tablet portrait and larger phones) */
@media screen and (max-width: 900px) {
    .main {
        padding: 60px 40px; /* Adjust padding for smaller devices */
    }

    .main .left h3 {
        font-size: 40px; /* Slightly smaller text for tablets */
    }

    .main .left p {
        font-size: 20px;
    }

    .main .right img {
        width: 00px; /* Adjust image size */
        
        margin-top: 20px; /* More space above the image */
    }

    .main .left {
        align-items: center; /* Center the text on smaller screens */
        text-align: center; /* Center the text */
    }

    .main .button-container {
        justify-content: center; /* Center buttons on tablets */
    }
}


/* Medium screens (tablet portrait and larger phones) */
@media screen and (max-width: 1400px) {
    .main {
        padding: 60px 40px;
    }

    .main .left h3 {
        font-size: 40px;
    }

    .main .left p {
        font-size: 20px;
    }

    .main .right img {
        width: 300px;
        margin-top: 20px;
    }

    .main .left {
        align-items: center;
        text-align: center;
    }

    .main .button-container {
        justify-content: center;
    }
}

/* Medium screens (tablets and smaller phones) */
@media screen and (max-width: 900px) {
    .main {
        padding: 60px 40px;
    }

    .main .left h3 {
        font-size: 40px;
    }

    .main .left p {
        font-size: 20px;
    }

    .main .right img {
        width: 250px;
        margin-top: 20px;
    }

    .main .left {
        align-items: center;
        text-align: center;
    }

    .main .button-container {
        justify-content: center;
    }
}

/* Small screens (phones and smaller tablets) */
@media screen and (max-width: 768px) {
    .main .left h3 {
        font-size: 35px;
    }

    .main .left p {
        font-size: 18px;
    }

    .main .right img {
        width: 300px;
        margin-bottom: 40px;
    }

    .main .left {
        align-items: center;
        text-align: center;
    }

    .main .button-container {
        justify-content: center;
    }
}

/* Very small screens (under 480px) */
@media screen and (max-width: 480px) {
    .main .left h3 {
        font-size: 30px;
    }

    .main .left p {
        font-size: 16px;
    }

    .main .right img {
        width: 250px;
    }
}

/* Forces text at top to be white */
.main .left h3,
.main .left h5,
.about .right h3 {
    color: var(--text-color-1) !important;
}

















/* Expertise Section */
#expertise {
    padding: 50px 20px;
    background-color: var(--main-color);
    text-align: center;
}

/* Expertise Section - Title */
#expertise h2 {
    font-size: 2.2rem; /* Slightly larger for prominence */
    font-weight: 500; /* Medium weight for clarity */
    color: var(--accent-color); /* Accent color for title */
    margin-bottom: 40px; /* Space below title */
    letter-spacing: 1px; /* Slight letter spacing for neatness */
}

/* Container for skills (cards in rows) */
.skills-container {
    display: grid;
    grid-template-columns: repeat(5, 165px); /* Fixed width for each column */
    grid-column-gap: 30px; /* Reduced column gap between cards */
    grid-row-gap: 25px; /* Keep row gap as it was */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Skill Cards */
.skill-card {
    background: #333; /* Dark grey background */
    border: 2px solid #444; /* Slightly lighter grey border */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 10px; /* Reduced padding for thinner and taller cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 220px; /* Fixed height for consistency */
    width: 165px; /* Fixed width for consistency */
}

/* Hover effect on skill cards */
.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    background-color: #444; /* Darker grey background on hover */
}

.skill-card img {
    width: 80px; /* Icon size */
    height: 80px; /* Icon size */
    margin-bottom: 30px;
}

.skill-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #ddd; /* Lighter text color for contrast */
}

/* Mobile responsiveness (combine two rows into 3x3 grid) */
@media (max-width: 786px) {
    .skills-container {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row on mobile */
        gap: 15px; /* Adjust gap for better mobile layout */
        padding: 0 10px; /* Adjust padding for mobile */
    }

    .skill-card {
        width: 130px; /* Adjust card width for mobile */
        height: 160px; /* Adjust card height for mobile */
    }
}

/* For very small screens (optional tweak for even smaller devices) */
@media (max-width: 480px) {
    .skills-container {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row on very small screens */
        gap: 15px; /* Even smaller gap for tiny devices */
        padding: 0 10%; /* Even padding on both sides */
    }

    .skill-card {
        width: 110px; /* Adjust width for small screens */
        height: 140px; /* Adjust height for small screens */
    }

    .skill-card img {
        width: 60px; /* Adjust icon size for small screens */
        height: 60px; /* Adjust icon size for small screens */
    }
}

/* Desktop version - apply bottom row margin here */
@media (min-width: 786px) {
    .skills-container .skill-card:nth-child(6),
    .skills-container .skill-card:nth-child(7),
    .skills-container .skill-card:nth-child(8),
    .skills-container .skill-card:nth-child(9) {
        margin-left: 100px; /* Move bottom row cards slightly to the right */
    }
}



















/* Frameworks Section */
#frameworks {
    padding: 0px 20px;
    background-color: var(--main-color);
    text-align: center;
}

/* Frameworks Section - Title */
#frameworks h2 {
    font-size: 2.2rem; /* Consistent size */
    font-weight: 500; /* Medium weight */
    color: var(--accent-color); /* Accent color */
    margin-top: 20px;
    margin-bottom: 30px; /* Space below title */
    letter-spacing: 1px; /* Slight letter spacing */
}

.frameworks-container {
    display: grid;
    grid-template-columns: repeat(5, 140px); /* Decreased width of cards */
    gap: 20px; /* Reduced gap to bring items closer */
    justify-content: center; /* Center-align the grid */
    align-items: center; /* Vertically center items */
    padding: 20px;
}

.framework-card {
    background: #333; /* Dark grey background */
    border: 2px solid #444; /* Slightly lighter grey border */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px 10px; /* Reduced padding for thinner and taller cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 180px; /* Slightly reduced height */
    width: 140px; /* Slightly reduced width */
    flex-grow: 1; /* Ensure the cards grow equally */
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    background-color: #444; /* Darker grey background on hover */
}

.framework-card img {
    width: 70px; /* Slightly reduced icon size */
    height: 70px; /* Slightly reduced icon size */
    margin-bottom: 20px; /* Adjusted margin */
    background-color: transparent;
    display: block;
    border: none;
}

.framework-card p {
    font-size: 1rem;
    font-weight: 500;
    color: #ddd; /* Lighter text color for contrast */
}

/* Responsiveness */
@media (max-width: 600px) {
    .frameworks-container {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); /* Auto-fit with adjusted min-width */
        gap: 15px; /* Adjusted gap between items (both horizontal and vertical) */
        padding: 40px; /* Adjusted padding for smaller screens */
        justify-items: center; /* Ensures items are centered within the container */
    }

    /* Targeting the 4th and 5th items (bottom row) */
    .frameworks-container .framework-card:nth-child(4),
    .frameworks-container .framework-card:nth-child(5) {
        margin-left: 55%; /* Pushes the cards to the right */
        margin-right: auto; /* Centers the cards horizontally */
    }

    .framework-card {
        height: 140px; /* Adjusted card height */
        width: 110px; /* Adjusted card width */
    }

    .framework-card img {
        width: 60px; /* Adjusted icon size */
        height: 60px; /* Adjusted icon size */
    }

    /* Adding vertical gap adjustment */
    .frameworks-container {
        row-gap: 20px; /* Increase or decrease this value to adjust space between top and bottom of cards */
    }
}
















/* Portfolio Section */
.portfolio {
    padding: 50px 0;
    background-color: var(--main-color);
    color: #E0E0E0;
    text-align: center;
}

.portfolio h3 {
    font-size: 2.5rem;
    color: var(--text-color-1);
    margin-bottom: 40px;
}

/* Portfolio Items */
.portfolio-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio Item */
.item {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    background-color: var(--main-color); /* Initial background color */
    overflow: hidden;
    transition: background-color 0.5s ease; /* Smooth background transition */
}

.item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

/* Front side of the card (image) */
.item img {
    width: 100%;
    height: 100%; /* Set height to 100% to maintain alignment */
    object-fit: cover; /* Ensure all images cover the space without distortion */
    transition: opacity 0.5s ease;
}

/* Back side of the card (info) */
.item .info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 44, 44, 0.85); /* Semi-transparent dark background */
    color: var(--text-color-1);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Info text styles */
.item .info h4 {
    font-size: 1.75rem; /* Slightly larger font for the title */
    margin-bottom: 10px;
    color: var(--accent-color);
    text-align: center; /* Center the heading */
    font-weight: bold; /* Make the title bold */
}

.item .info p {
    font-size: 1.125rem; /* Slightly larger paragraph text */
    color: var(--text-color-1);
    text-align: center; /* Center the text */
    line-height: 1.5; /* Increase line height for better readability */
    margin-top: 10px; /* Add some space between the heading and paragraph */
    max-width: 80%; /* Limit width for better text flow */
}

/* Show info on hover */
.item:hover {
    background-color: rgba(44, 44, 44, 0.9); /* Darker background on hover */
}

.item:hover .info {
    opacity: 1; /* Make the info visible */
}

/* View More Button */
.view-more {
    margin-top: 40px;
}

.view-more .btn {
    padding: 15px 30px;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-more .btn:hover {
    background-color: var(--text-color-1); /* Darken the background on hover */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .portfolio-items {
        grid-template-columns: repeat(2, 1fr); /* Two cards per row */
        justify-items: center; /* Center the cards horizontally */
        gap: 15px; /* Adjust the gap between cards */
    }

    .item {
        width: 90%; /* Reduce the size of the cards */
        height: 300px; /* Adjust height if needed */
    }
}

@media (max-width: 480px) {
    .portfolio-items {
        grid-template-columns: 1fr; /* One card per row for smaller mobile screens */
        justify-items: center; /* Center the card horizontally */
    }

    .item {
        width: 90%; /* Reduce the size of the cards */
        height: 250px; /* Adjust height for smaller screens */
    }
}




/* Portfolio Section */
.portfolio {
    padding: 50px 0;
    background-color: var(--main-color);
    color: #E0E0E0;
    text-align: center;
}

.portfolio h3 {
    font-size: 2.5rem;
    color: var(--text-color-1);
    margin-bottom: 40px;
}

/* Portfolio Items */
.portfolio-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Portfolio Item */
.item {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for consistency */
    background-color: var(--main-color); /* Initial background color */
    overflow: hidden;
    transition: background-color 0.5s ease; /* Smooth background transition */
}

.item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

/* Front side of the card (image) */
.item img {
    width: 100%;
    height: 100%; /* Set height to 100% to maintain alignment */
    object-fit: cover; /* Ensure all images cover the space without distortion */
    transition: opacity 0.5s ease;
}

/* Back side of the card (info) */
.item .info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 44, 44, 0.85); /* Semi-transparent dark background */
    color: var(--text-color-1);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Info text styles */
.item .info h4 {
    font-size: 1.75rem; /* Slightly larger font for the title */
    margin-bottom: 10px;
    color: var(--accent-color);
    text-align: center; /* Center the heading */
    font-weight: bold; /* Make the title bold */
}

.item .info p {
    font-size: 1.125rem; /* Slightly larger paragraph text */
    color: var(--text-color-1);
    text-align: center; /* Center the text */
    line-height: 1.5; /* Increase line height for better readability */
    margin-top: 10px; /* Add some space between the heading and paragraph */
    max-width: 80%; /* Limit width for better text flow */
}

/* Show info on hover */
.item:hover {
    background-color: rgba(44, 44, 44, 0.9); /* Darker background on hover */
}

.item:hover .info {
    opacity: 1; /* Make the info visible */
}

/* "View More" button (purple background, outline and text color) */
.portfolio .view-more-btn {
    background-color: transparent; /* Clear background */
    border-color: var(--accent-color); /* Purple outline color */
    color: var(--accent-color); /* Purple text color */
    padding: 14px 24px;
    font-size: 17px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 40px; /* Space between portfolio and button */
    border-width: 2px; /* Slightly thicker border for visibility */
}

/* Add hover effects */
.portfolio .view-more-btn:hover {
    background-color: var(--accent-color); /* Purple background on hover */
    border-color: var(--accent-color); /* Border matches the background */
    color: var(--main-color); /* Text color changes to dark on hover */
    transform: scale(1.05); /* Slight hover scale effect */
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .portfolio-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-items {
        grid-template-columns: 1fr;
    }
}





  

  








/* Ensure the body background is set */
body {
    background-color: var(--main-color);
}


footer {
    padding: 40px 85px;
    background-color: var(--second-accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

footer .top .social-links {
    display: flex;
    gap: 20px;
}

footer .top .social-links a {
    color: #fff;
    transition: color 0.3s ease;
}

footer .top .social-links a:hover {
    color: var(--text-color-1);
}

footer p {
    color: #fff;
}






/* Style for the divider */
.divider {
    width: 75%; /* Adjust the width to your preference */
    height: 1px; /* Height of the line */
    background-color: var(--accent-color); /* Color of the divider line */
    margin: 50px auto; /* Space around the divider */
    opacity: 0.6; /* Subtle effect */
}







/* changes for mobile stuff */
@media screen and (max-width: 768px) {
    nav {
        padding: 0 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    nav ul {
        display: none;
    }

    nav button#menuButton {
        display: none;
    }

    nav .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: auto;
    }

    nav .logo a {
        margin-left: 10px;
    }
    

    nav .logo,
    nav ul,
    nav button#menuButton {
        width: auto;
    }

    .main {
        flex-direction: column;
        padding: 20px;
    }

    .main .left,
    .main .right {
        width: 100%;
        text-align: center;
    }

    .main .right img {
        width: 80%;
        max-width: 400px;
        margin: 20px 0;
    }

    .resume .skill-items {
        flex-direction: column;
    }

    .resume .skill-items .item {
        width: 100%;
        margin-bottom: 20px;
    }

    .portfolio .portfolio-items {
        flex-direction: column;
        align-items: center;
    }

    .portfolio .portfolio-items .item {
        width: 90%;
        max-width: 300px;
    }

    .about {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .about .left img {
        width: 80%;
        max-width: 400px;
    }

    .about .right {
        margin-top: 20px;
    }

    nav ul .github-link {
        display: none;
    }
}




/* Contact Section */
.contact {
    padding: 40px 0;
    text-align: center;
    background-color: var(--main-color); /* Same as your main section background */
    color: #E0E0E0;
}

.contact h3 {
    font-size: 2rem;
    color: var(--text-color-1);
    margin-bottom: 15px;
}

.contact p {
    font-size: 1.125rem;
    margin-bottom: 30px;
    color: var(--text-color-1);
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.info-item {
    font-size: 1.125rem;
    color: var(--text-color-1);
}

.info-item h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.info-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

/* Button styles (optional) */
.contact-btn {
    background-color: transparent;
    border: 2px solid var(--text-highlights);
    color: var(--text-highlights);
    font-size: 17px;
    font-weight: bold;
    padding: 12px 24px;
    margin-top: 30px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--text-highlights);
    color: var(--main-color);
    transform: scale(1.05); /* Subtle hover effect */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-info {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 15px;
    }
}


/*
COLOR PALATTE NEW
Light Theme
Background: D9E8CB
Secondary Background: bfc8a3
586350
Interior: F7FAEF
Interior Boxes: F2F5EA
Interior button color: 404936
Interior Button Hover: 3F6E27
*/


/*
change photo to be rounded
fix the blue colors
pop ups for "my projects" section
*/





.about-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    gap: 30px;
}

.about-page .left img {
    width: 300px; /* Adjust size */
    border-radius: 50%; /* Make it rounded */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

.about-page .right {
    max-width: 600px;
}

.about-page h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.about-page p {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Mobile Responsive for smaller screens (max-width: 480px) */
@media screen and (max-width: 480px) {
    .about-page {
        flex-direction: column;
        text-align: center;
        padding: 20px; /* Reduced padding */
    }

    .about-page .left img {
        width: 180px; /* Reduced size for better fit */
        height: 180px; /* Ensure image stays circular */
    }

    .about-page .right {
        max-width: 90%; /* Reduced width for better spacing */
        padding: 0 15px; /* Added padding inside */
    }

    .about-page p {
        font-size: 1rem; /* Smaller text size */
        line-height: 1.5; /* Adjust line height */
        margin: 0 10px; /* Add margin for more space on the edges */
    }
}



