:root {
    --primary-color: #00C2CB; 
    --secondary-color: #6200EA; 
    --accent-color: #FF007F; 
    --text-color: #FFFFFF; 
    --background-color: #000000; 
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.navbar {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .nav-link {
    color: var(--text-color); /* Default white text */
    text-transform: uppercase; /* Optional: Makes the text uppercase */
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
    border-radius: 5px; /* Optional: Add rounded corners on hover */
}

.navbar .nav-link:hover {
    color: var(--primary-color); /* Highlight color on hover */
    background-color: rgba(255, 255, 255, 0.1); /* Light transparent background */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Styling for the artist portrait image */
.artist-portrait {
    display: block; /* Ensures the image is block-level */
    max-width: 200px; /* Adjust the thumbnail width */
    height: auto; /* Maintain aspect ratio */
    width: 200px;
    border-radius: 10px; /* Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: Add shadow */
    margin: 0 auto 20px; /* Center the image and add bottom margin */
    border: 3px solid var(--primary-color); /* Optional: Add border */
    object-fit: cover; /* Ensures the image fits neatly */
}

/* Add some spacing and alignment for the biography section */
.biography-section {
    text-align: center; /* Centers all text */
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Optional: Semi-transparent background */
    border-radius: 10px;
}

.biography-section h2 {
    margin-bottom: 20px;
    color: var(--primary-color); /* Highlight the title */
}

.biography-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #e1e1e1; /* Slightly brighter text */
}

details {
    margin-top: 10px;
    text-align: left; /* Aligns the "More on My Artistic Journey" text */

}
.title {
    text-align: center; /* Centers the title */
    color: var(--primary-color); /* Set title color to your primary color */
    font-size: 2.5em; /* Adjust the font size as desired */
    margin-top: 20px;
}

/* Masonry Grid Layout */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Smaller column size */
    grid-auto-rows: 150px; /* Smaller row size */
    gap: 10px; /* Reduced gap for better spacing */
    padding: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Rounded corners */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item img:hover {
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Shadow effect */
}

/* Custom sizes for tall and wide items */
.grid-item.tall {
    grid-row: span 2; /* Tall items span 2 rows */
}

.grid-item.wide {
    grid-column: span 2; /* Wide items span 2 columns */
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Individual Social Icon */
.social-icon {
    font-size: 2em;
    color: #e3cb11;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effects */
.social-icon:hover {
    color: #00C2CB; /* Change to your desired hover color */
    transform: scale(1.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
    .carousel-thumbnails {
          /* Allow thumbnails to wrap on mobile */
        justify-content: center;  /* Center the thumbnails */
    }
    .thumbnail {
        width: 200px;
        height: 250px;
    }

    .carousel-thumbnails {
        bottom: 90px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .thumbnail {
        width: 250px;
        height: 300px;
    }

    .carousel-thumbnails {
        bottom: 110px;
    }
}

/* Large Screens */
@media (min-width: 1024px) {
    .thumbnail {
        width: 300px;
        height: 350px;
    }

    .carousel-thumbnails {
        bottom: 140px;
    }
}

/* Footer */
footer {
    padding: 1rem;
    background-color: transparent;
    color: var(--text-color);
    text-align: center;
    margin-top: 20px;
}
