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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

/* Profile Button */
.profile {
    position: absolute;
    top: 20px;
    left: 20px;
}

.profile a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    background: #2ecc71; /* Lime Green */
    padding: 15px 25px;
    font-size: 1.2rem;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.profile a:hover {
    transform: scale(1.1);
    background: #27ae60; /* Slightly darker lime green */
}

/* Navigation Menu */
.navigation {
    position: absolute;
    top: 20px;
    right: 20px;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

.navigation ul li a {
    text-decoration: none;
    color: #fff;
    background: #27ae60; /* Lime Green */
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.navigation ul li a:hover {
    transform: scale(1.1);
    background: #16a085; /* Slightly darker green */
}


/* Gallery Section */
.gallery {
    margin-top: 100px;
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 Columns */
    gap: 20px;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border: 5px solid #2ecc71; /* Lime Green Border */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
