/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
}

.header-content h1 {
    font-size: 1.5rem;
    color: #333;
    display: inline-block;
    margin-left: 12px;
}

.header-content p {
    font-size: 0.9rem;
    color: #777;
    display: inline-block;
    margin-left: 20px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.header-content {
    animation: fadeIn 2s ease forwards;
}
.fa-solid {
	font-size: 25px;
	color: #80D8DA;
	margin-left: 20px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Section */
main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    flex-wrap: wrap;
}

.profile {
    flex: 1;
    text-align: center;
    margin-bottom: 100px;
}

.profile img {
    width: 500px;
    height: 550px;
    border-radius: 50%;
    object-fit: cover;
}

.bio {
    flex: 1;
    padding-left: 40px;
}

.bio h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.bio p {
    font-size: 1rem;
    line-height: 1.5;
}
.profile, .bio {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.5s; 
}

.bio p, .buttons {
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s; 
}
/*.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 40px 0;
    margin: 10px;
    text-decoration: none;
    font-size: 13px;
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid brown;
    text-align: center;
}*/
.buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.button {
	
	display: inline-block;
    padding: 46px 26px;
    margin: 10px;
    text-decoration: none;
    font-size: 17px;
    color: #000;
    font-weight: 800;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    border: 1px solid brown;
    text-align: center;
    align-items: center;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Make shadow more noticeable */
    line-height: 1.2; 
}


.button h1 {
    font-family: "Arima", system-ui;
    font-size: 14px; /* Adjust font size to fit well */
    font-weight: 800; /* Bold font weight */
    color: inherit; /* Inherits button color */
    margin: 0; /* Remove extra margin */
    padding: 0;
    white-space: nowrap; /* Prevent text wrapping */
    line-height: 1; /* Avoid extra spacing */
}
.resume { background-color: rgba(168, 204, 73, 0.8); } /* Light green */
.research { background-color: rgba(255, 152, 0, 0.8); } /* Orange */
.outreach { background-color: rgba(0, 188, 212, 0.8); } /* Cyan */
.personal { background-color: rgba(158, 158, 158, 0.8); } /* Grey */
.tech { background-color: rgba(142, 68, 173, 0.8); } /* Purple */


.button:hover {
    background-color: rgba(255, 255, 255, 0.9); 
    color: black;
    transform: scale(1.1);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #666;
}

@media (max-width: 425px) {
    .buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two buttons per row */
        gap: 10px;
    }

    .button {
        width: 100%;
        height: 100px;
    }

}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 700

/*.button h1 {
  font-family: "Arima", system-ui;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.resume { background-color: #a8cc49; }
.research { background-color: #ff9800; }
.outreach { background-color: #00bcd4; }
.personal { background-color: #9e9e9e; }
.tech { background-color: #8e44ad; }

.button:hover {
    opacity: 0.8;
}*/


footer {
    padding: 20px;
    text-align: center;
    background-color: white;
    border-top: 1px solid #ddd;
    margin-top: 50px;
	 animation: fadeIn 3s ease forwards;
    animation-delay: 3.2s;
}

footer a {
    color: #333;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer .contact-info {
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-content h1 {
        font-size: 1.2rem;
        margin-left: 0;
    }

    .header-content p {
        font-size: 0.8rem;
        margin-left: 0;
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }

    main {
        flex-direction: column;
        padding: 20px;
    }

    .bio {
        padding-left: 0;
    }

    .bio h2 {
        font-size: 1.5rem;
    }

    .bio p {
        font-size: 0.9rem;
    }

    .profile img {
        width: 200px;
        height: 200px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 80px;
        height: 80px;
        padding: 24px 12px;
    }

    footer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two buttons per row */
        gap: 10px;
    }

    .button {
        width: 100%;
        height: 100px;
    }
}
@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1rem;
            color: white;

    }

    .header-content p {
        font-size: 0.7rem;
            color: white;

    }

    .bio h2 {
        font-size: 1.3rem;
    }

    .bio p {
        font-size: 0.8rem;
    }

    .profile img {
        width: 150px;
        height: 150px;
    }	
	
	
	body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    color:white;
}

nav {
    background-color: #444;
    overflow: hidden;
}

nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 1.1em;
}

nav a:hover {
    background-color: #ddd;
    color: black;
}

main {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
}

main h2 {
    margin-top: 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    margin: 0;
}

}
