@charset "UTF-8";
/* CSS Document */


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

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000000;
}

html {
    scroll-behavior: smooth;
}

/* Styling for the Back to Portfolio button */
.back-to-portfolio {
    position: fixed; /* Fix it to the page */
    top: 5px; /* Adjust distance from the top */
    left: 5px; /* Adjust distance from the right */
    z-index: 999; /* Ensure it's on top */
}

.back-button {
    background-color: #007bff; /* Blue color */
    color: white;
    padding: 5px 10px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    font-family: 'Noteworthy-bold';
}

.back-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Header Styling */
.header {
    text-align: center;
    padding: 30px 10px 20px 10px;
    background: linear-gradient(to top, #f0f8ff, #add8e6, #87ceeb, #4682b4, #1e3a5f);
}

/* Header Content */
.header-content h1 {
   color: #ffffff;
    font-family: 'Brullos';
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 1.00);
	background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
	padding: 5px;
	border-radius: 50px;
	
}

.header-content h2 {
    color: #ffffff;
	 font-family: 'Noteworthy-bold';
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 1.00);
}










.navigation {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.navigation ul {
    list-style-type: none;
}

.navigation ul li {
    display: inline-block;
    margin: 0 20px;
}

.navigation ul li a {
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    text-transform: uppercase;
}

.navigation ul li a:hover {
    color: #4682b4;
}









.banner {
	margin: 0px auto;
	padding: 0;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}






/* Gallery Introduction */

.gallery-introduction {
	
	padding: 0px 0px 20px 0px;
     background: linear-gradient(to bottom, #f0f8ff, #add8e6, #87ceeb, #4682b4, #1e3a5f);
    color: #000000;
	margin: -15px 0px 0px 0px;
	
}

.gallery-introduction h1 {
    padding: 10px;
    text-align: center;
	margin: 10px;
    font-family: 'Brullos';
    color: #ffffff;
	background: linear-gradient(to top, #4682b4, #1e3a5f, #002147, #000A1F);
}


/* Gallery Introduction */
.gallery-introduction p {
    padding: 10px;
	margin: 5px 15px;
    text-align: left;
	font-family: 'Noteworthy-bold';
	text-indent: 20px;
}


/* Thumbnail Gallery Styling */
.gallery {
    text-align: center;
    padding: 50px 20px;
}

.gallery h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.thumbnail-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin: 0px 0px 0px 0px;
	
}

.thumbnail {
    margin: 15px;
    transition: transform 0.3s ease;
}

.thumbnail:hover {
    transform: scale(1.05);
}

.thumbnail-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnail h4 {
    margin: 15px 0px;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
	font-family: 'Noteworthy-bold';
	text-align: center;
}


.thumbnail-box {
   background: black;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
	
}

/* Styling for the h4 title to look like a button */
.thumbnail-title {
    font-size: 12px; /* Adjust size as needed */
	line-height: 20px;
    font-weight: bold;
     background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effects */
    text-decoration: none; /* Remove default link styling */
}

/* Hover effects */
.thumbnail-title:hover {
    background: linear-gradient(to bottom, #87ceeb, #4682b4, #1e3a5f);
    color: white; /* Change text color */
    transform: scale(1.1); /* Slightly enlarge the button */
}

/* Active state for clicks */
.thumbnail-title:active {
    background-color: #e65c00; /* Darker shade on click */
    transform: scale(0.98); /* Slight shrink effect on click */
}

/* Make the title responsive */
@media (max-width: 768px) {
    .thumbnail-title {
        font-size: 1.2rem; /* Smaller font on smaller screens */
        padding: 8px 15px; /* Adjust padding */
    }
}

@media (max-width: 480px) {
    .thumbnail-title {
        font-size: 16px; /* Even smaller font on very small screens */
        padding: 6px 12px; /* Adjust padding */
    }
}



/* Lightbox Gallery */
.lightbox-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden; /* Prevent background from scrolling */
}

/* Lightbox Content */
.lightbox-content {
    background: #000000;
    padding: 0px;
    text-align: center;
    max-width: 95%;
    width: 1200px;
    max-height: 95vh;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.lightbox-content h4 {
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
	color: #ffffff;
	 font-family: Brullos;
	border-radius: 5px;
}

/* Lightbox Title */
.lightbox-content p {
    background: linear-gradient(to top, #4682b4, #1e3a5f);
    color: #ffffff;
    font-family: 'Noteworthy-bold';
    border-radius: 5px;
	letter-spacing: .5px;
	text-align: left;
	text-indent: 20px;
}


.large-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 5px 0px 10px 0px;
	
}

.gallery-navigation {
    margin: 0px;
}

.gallery-navigation button {
    background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    color: white;
    border: none;
    padding: 5px 10px;
    margin: 20px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
	font-family: 'Noteworthy-bold';
	
}

.gallery-navigation button:hover {
    background-color: #1e3a5f;
}

.close-button {
   background: linear-gradient(to top, #87ceeb, #4682b4, #1e3a5f);
    color: #ffffff;
    font-size: 35px;
	line-height: 30px;
    position: fixed;
    top: 10px; /* Adjusted to appear at top-left corner */
    left: 10px; /* Positioned correctly */
    cursor: pointer;
    z-index: 1001; /* Make sure it's above all other content */
	width: 25px;
	height: 25px;
	 border-radius: 20px;

}

.close-button:hover {
    color: #4682b4;
}

/* Animations for Hover and Transitions */
.thumbnail-image {
    transition: transform 0.3s ease;
}

.thumbnail-image:hover {
    transform: scale(1.05);
}











/* Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 1920px;
    background: black;
    color: white;
    text-align: center;
    padding: 0px 0px 15px 0px;
    margin: 0px auto 0px auto;
    height: 20px;
    font-family: Brullos;
    font-size: 14px;
    line-height: 20px;
}








@media screen and (min-width: 1920px) {
    .body_container {
        margin: 0px auto;
        padding: 0;
        background-color: #000000;
        color: #ffffff; /* Changed to white */
        max-width: 1920px;
        height: auto;
        border: 4px solid rgba(44,168,247,1.00);
 
    }
	
    .header-content h1 {
        font-size: 50px;
    	line-height: 50px;
		margin: 20px 0px 0px 0px;
    }

    .header-content h2 {
     font-size: 22px;
	line-height: 26px;
	margin: 0px 30px 10px 30px;
    }
	

    .gallery-introduction h1 {
        font-size: 32px;
    }
	
	.gallery-introduction p {
        font-size: 18px;
		  line-height: 22px;
		  margin: 10px 25px 10px 25px;
    }
	
.banner {
    height: 800px;
    background-image: url("../img/fine_arts_page/hero_image_1920px.jpg");
}
	
		.thumbnail {
    margin: 15px;
    max-width: 350px;
    
}


}



@media (max-width: 1920px) {
    .header-content h1 {
        font-size: 50px;
    	line-height: 50px;
		margin: 20px 0px 0px 0px;
    }

    .header-content h2 {
     font-size: 22px;
	line-height: 26px;
	margin: 0px 30px 10px 30px;
    }
	

    .gallery-introduction h1 {
        font-size: 32px;
    }
	
	.gallery-introduction p {
        font-size: 18px;
		  line-height: 22px;
		  margin: 10px 25px 10px 25px;
    }
	
.banner {
    height: 800px;
    background-image: url(../img/fine_arts_page/hero_image_1920px.jpg);
}
	
		.thumbnail {
    margin: 15px;
    max-width: 350px;
    
}
	
.lightbox-content h4 {
    margin: 0px 0px 10px 0px;
	padding: 10px 0px;
    font-size: 40px;
	line-height: 40px;
	
}


.lightbox-content p {
    padding: 10px 15px;
    font-size: 22px;
	line-height: 30px;
}
	
}

	
	









@media (max-width: 1200px) {
    
.header-content h1 {
        font-size: 45px;
    	line-height: 45px;
		margin: 20px 0px 0px 0px;
    }

.header-content h2 {
     font-size: 22px;
	line-height: 26px;
	margin: 0px 30px 10px 30px;
    }
	

 .gallery-introduction h1 {
        font-size: 30px;
    }
	
.gallery-introduction p {
        font-size: 18px;
		  line-height: 22px;
		  margin: 0px 25px 0px 25px;
    }
	
.banner {
    height: 500px;
    background-image: url("../img/fine_arts_page/hero_image_1200px.jpg");
}
	
.thumbnail {
    margin: 15px;
    max-width: 300px;
    
}
	
		.lightbox-content h4 {
    margin: 0px 0px 10px 0px;
	padding: 10px 0px;
    font-size: 35px;
	line-height: 35px;
	
}


.lightbox-content p {
    padding: 10px 15px;
    font-size: 20px;
	line-height: 24px;
}
	
}

	













@media (max-width: 768px) {
    .header-content h1 {
        font-size: 40px;
    	line-height: 40px;
		margin: 20px 0px 0px 0px;
    }

    .header-content h2 {
     font-size: 20px;
	line-height: 24px;
	margin: 10px 30px 10px 30px;
    }
	

   .gallery-introduction h1 {
        font-size: 30px;
    }
	
.gallery-introduction p {
        font-size: 16px;
		  line-height: 20px;
		  margin: 10px 15px 10px 15px;
    }
	
	
.banner {
    height: 850px;
    background-image: url("../img/fine_arts_page/hero_image_768px.jpg");
}
	
	.thumbnail {
    margin: 15px;
    max-width: 300px;
    
}
	
		.lightbox-content h4 {
    margin: 0px 0px 10px 0px;
	padding: 10px 0px;
    font-size: 34px;
	line-height: 34px;
	
}


.lightbox-content p {
    padding: 10px 15px;
    font-size: 18px;
	line-height: 24px;
}


}

	














@media (max-width: 480px) {
    .header-content h1 {
        font-size: 40px;
    	line-height: 40px;
		margin: 20px 0px 0px 0px;
    }

    .header-content h2 {
     font-size: 18px;
	line-height: 22px;
	margin: 0px 30px 10px 30px;
    }
	

   .gallery-introduction h1 {
        font-size: 28px;
    }
		  .gallery-introduction p {
        font-size: 16px;
		  line-height: 20px;
		  margin: 10px 15px 10px 15px;
    }
	
	
	
.banner {
    height: 550px;
   background-image: url(../img/fine_arts_page/hero_image_480px.jpg);
}
	
	.thumbnail {
    margin: 15px;
    max-width: 300px;
    
}
	
.lightbox-content h4 {
    margin: 0px 0px 10px 0px;
	padding: 5px 0px;
    font-size: 26px;
	line-height: 26px;
	
}


.lightbox-content p {
    padding: 5px 10px;
    font-size: 16px;
	line-height: 22px;
}


}














@media (max-width: 300px) {
	
.header-content h1 {
        font-size: 30px;
    	line-height: 35px;
		margin: 10px 0px 0px 10px;
    }

	
.header-content h2 {
     font-size: 16px;
	line-height: 18px;
	margin: 10px 0px 10px 0px;
    }
	

.gallery-introduction h1 {
        font-size: 24px;
    }
	
.gallery-introduction p {
        font-size: 16px;
		  line-height: 20px;
		  margin: 0px 10px 0px 10px;
    }
	
.banner {
    height: 350px;
    background-image: url(../img/fine_arts_page/hero_image_300px.jpg);
}
	
	
.thumbnail {
    margin: 15px;
    max-width: 275px;
    
}

.lightbox-content h4 {
    margin: 0px 0px 10px 0px;
	padding: 5px 0px;
    font-size: 26px;
	line-height: 26px;
	
}


.lightbox-content p {
    padding: 5px 10px;
    font-size: 16px;
	line-height: 22px;
}


}

	