/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-nav {
    background-color: gold;
    padding: 10px 0;
    text-align: center;
}

.top-nav ul {
    list-style-type: none;
}

.top-nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.top-nav ul li a {
    color: black;
    font-size: 1.5rem;
}

header {
    background-color: #f8f8f8;
    padding: 20px;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.intro-text {
    text-align: left;
    flex-grow: 1;
    padding-left: 20px;
}

.profile-photo img {
    width: 200px;
    height: auto;
}

.intro-section {
    padding: 50px 0;
    text-align: center;
}

.scroll-down,
.arrow-down {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensure the button is above other content */
    cursor: pointer;
}
.scroll-down img,
.arrow-down img {
    width: 50px;
    height: 50px;
}


.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

#introduction {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

.intro-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-text {
    flex-grow: 1;
    text-align: left;
}

.photo-gallery {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.photos img {
    width: 2.5cm;
    height: 2.5cm;
    margin-bottom: 10px;
    cursor: pointer;
}

.big-image {
    display: none;
}

.big-image img {
    width: 6cm;
    height: 9cm;
}

.projects-section {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

.projects-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.project-title-text {
    flex-grow: 1;
    text-align: left;
}

.project {
    width: calc(33.33% - 20px); /* Adjust width as needed */
    margin: 10px; /* Adjust margin as needed */
    text-align: center;
}

.project img {
    width: 4cm;
    height: 5cm;
}

.project-description {
    margin-top: 10px;
}

.project-description h2 {
    font-size: 1.5rem;
}

.project-description p {
    font-size: 1rem;
}




.events-section {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

.events-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.event-title-text {
    flex-grow: 1;
    text-align: left;
}

.event {
    width: calc(33.33% - 20px); /* Adjust width as needed */
    margin: 10px; /* Adjust margin as needed */
    text-align: center;
}

.event img {
    width: 4cm;
    height: 5cm;
}

.event-description {
    margin-top: 10px;
}

.event-description h2 {
    font-size: 1.5rem;
}

.event-description p {
    font-size: 1rem;
}




.achievements-section {
    background-color: #f8f8f8;
    padding: 50px 0;
    text-align: center;
}

.achievements-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.achievement-title-text {
    flex-grow: 1;
    text-align: left;
}

.achievement {
    width: calc(33.33% - 20px); /* Adjust width as needed */
    margin: 10px; /* Adjust margin as needed */
    text-align: center;
}

.achievement img {
    width: 4cm;
    height: 5cm;
}

.achievement-description {
    margin-top: 10px;
}

.achievement-description h2 {
    font-size: 1.5rem;
}

.achievement-description p {
    font-size: 1rem;
}


.view-all-button {
    text-align: center;
    margin-top: 20px;
}

.view-all-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* or any color of your choice */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-all-button a:hover {
    background-color: #0056b3; /* slightly darker shade on hover */
}
