/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Patua+One&family=Lexend:wght@300;400&display=swap');

/* General Styling */
body {
    font-family: 'Lexend', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(circle, #FFDEE9, #B5FFFC); /* Brighter gradient */
}

h1, h2 {
    font-family: 'Patua One', cursive;
    margin: 10px 0;
    color: #333;
}

.navigation {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.navigation button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    font-family: 'Lexend', sans-serif;
}

.navigation button:hover {
    background-color: #555;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.section {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

/* Profile Image with Hover Effect */
.profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ddd;
    transition: transform 0.3s, box-shadow 0.3s;
}

.profile-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Gallery Images */
.gallery img {
    width: 100%;
    max-width: 150px;
    margin: 10px;
    border-radius: 10px;
    border: 2px solid #ddd;
    object-fit: cover;
}

/* Instagram Button with Hover Effect */
.social-button {
    display: inline-block; /* Ensure it behaves as an inline block */
    overflow: visible; /* Allow the image to overflow */
    padding: 5px; /* Add padding to create space around the image */
    border-radius: 5px; /* Optional: add border-radius for better aesthetics */
}

.social-button img {
    width: 50px;
    height: 50px;
    display: block; /* Remove any inline spacing */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; /* Ensure the image is positioned correctly */
}

.social-button img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Increase shadow blur and spread */
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    justify-content: center;
    align-items: center;
}
