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

/* General styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    text-align: center; /* Center all text */
}

header {
    position: fixed;
    top: 0;
    
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 11px 0px 11px 0px;
    z-index: 1000;
	max-width: 1920px;
}

/* Hero Section */
.hero-image {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
}


/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 10px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 90%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 200px 0px 0px 0px;
	color: #ffffff;
	width: 95%;
}



.hero-text h1 {
    margin: 0px 10px 0px 10px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 40px;
	line-height: 30px;

}

.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 22px;
	line-height: 25px;
	margin: 10px;
}

/* About Fused Glass Section */
.about-fused-glass {
  padding: 0px 10px 0px 10px;
  text-align: center;
  background-color: #ffffff;
}

.about-fused-glass h1 {
  font-size: 36px;
  margin: 10px 0px 0px 0px;
  font-family: 'Alex Brush';
  line-height: 40px;  
	color: #000000;
}

.about-fused-glass p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  font-family: 'Noteworthy-Bold';
}

section#art-for-sale {
    padding: 20px 20px;
	 max-width: 550px;
	margin: 0px auto 50px auto;
}
	


#art-for-sale h1 {
	font-size: 40px;
  margin: 10px 0px 0px 0px;
  font-family: 'Alex Brush';
  line-height: 40px;  
	color: #000000;
	

}



.featured-art h2 {
    margin: 50px 0px 10px 0px;
    text-align: center; /* Center the headers */
	 font-family: 'Alex Brush';
	 font-size: 40px;
  line-height: 35px;
}




/* Gallery Item Styles */
.gallery-item p {
  margin: 10px 10px 10px 10px;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  font-family: 'Noteworthy-Bold';
}

.gallery-item {
    margin: 10px;
    transition: transform 0.3s;
    display: inline-block;
    cursor: pointer; /* Show that it's clickable */
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-thumbnail {
    width: 100%;
    height: auto;
    max-width: 600px; /* Default size for thumbnails */
}


.gallery-thumbnail {
    width: 100%;
    height: auto;
    max-width: 600px; /* Default size for thumbnails */
}

.lightbox-image {
    display: none; /* Hidden by default */
}

/* Lightbox Styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
	font-family: 'Noteworthy-Bold';
}



.lightbox-content-wrapper {
    max-width: 90vw; /* Responsive max width */
    max-height: 80vh; /* Responsive max height */
    text-align: center;
    position: relative; /* To position the close button */
}

.lightbox-content {
    max-width: 100%;
    max-height: 70vh;
    margin: 0 auto;
	
}

#caption {
    margin-top: 10px;
    color: #fff;
    font-size: 1.2rem;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    user-select: none; /* Prevent text selection */
}

.close:hover {
    color: #ddd; /* Optional: lighter color on hover */
}


/* Art For Sale Layout */
.featured-art, .other-pieces {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the gallery items */
}


.etsy-button {
    display: inline-block;
    padding: 5px;
    background-color: #0058AE;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #4AA5FF;
    transition: all 0.3s ease;
    border-radius: 5px;
	font-family: 'Noteworthy-Bold';
	font-size: 18px;
}

.etsy-button:hover {
    background-color: white;
    color: #000000;
    border-color: #0058AE;
}

.etsy-button:active {
    background-color: #ff3300;
    color: white;
    border-color: #ff3300;
}













@media (min-width: 1920px) {
	
	
.for_sale_page_container {
	margin: 0px auto 0px auto;
    padding: 0;
    background-color: #ffffff;
    color: #ffffff; /* Changed to white */
	max-width: 1920px;
	height: auto;
	border: 1px solid #000000;
		
}
	
	
	
	
	
   /* Hero Section */
.hero-image {
    height: 848px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
	background-image: url("../img/for_sale_page/hero_image_1920px.jpg");
	margin: 20px 0px 0px 0px;
}

	

	 
	/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 75%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 650px 0px 0px 0px;
	color: #ffffff;
	width: 75%;
}

	
.hero-text h1 {
    margin: 10px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 80px;
	line-height: 85px;

}

	
.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 50px;
	line-height: 40px;
	margin: 10px 0px 0px 0px;
}


.about-fused-glass h1 {
  font-size: 50px;
  margin: 40px 0px 10px 0px;
  font-family: 'Alex Brush';
  line-height: 30px;
}

.about-fused-glass p {
  max-width: 1920px;
  margin: 0px 250px 0px 250px;
  font-size: 22px;
  line-height: 28px;
  color: #00000;
  font-family: 'Noteworthy-Bold';
}

.featured-art h2 {
	margin: 30px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #000000;
	font-size: 50px;
	line-height: 40px;
	width: 1920px;
	padding: 10px;
		
}
	
section#art-for-sale {
    padding: 20px 20px;
	 max-width: 1920px;
	margin: 0px auto 30px auto;
		
}
	
	
#art-for-sale h1 {
	font-size: 50px;
  margin: 20px 0px 0px 0px;
  font-family: 'Alex Brush';
  line-height: 45px;  
	color: #000000;
	

}

	
}
	

	





	













@media (max-width: 1920px) {
   /* Hero Section */
.hero-image {
    height: 848px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
	background-image: url("../img/for_sale_page/hero_image_1920px.jpg");
	margin: 20px 0px 0px 0px;
}
	
	
	 
	/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 75%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 650px 0px 0px 0px;
	color: #ffffff;
	width: 75%;
}

	
.hero-text h1 {
    margin: 10px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 80px;
	line-height: 85px;

}

	
.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 50px;
	line-height: 40px;
	margin: 10px 0px 0px 0px;
}


.about-fused-glass h1 {
  font-size: 50px;
  margin: 40px 0px 10px 0px;
  font-family: 'Alex Brush';
  line-height: 30px;
}

.about-fused-glass p {
  max-width: 1920px;
  margin: 0px 250px 0px 250px;
  font-size: 22px;
  line-height: 28px;
  color: #00000;
  font-family: 'Noteworthy-Bold';
}

.featured-art h2 {
	margin: 30px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #000000;
	font-size: 50px;
	line-height: 40px;
	width: 1920px;
	padding: 10px;
		
}
	
section#art-for-sale {
    padding: 20px 20px;
	 max-width: 1920px;
	margin: 0px auto 30px auto;
		
}
	
	
#art-for-sale h1 {
	font-size: 50px;
  margin: 20px 0px 0px 0px;
  font-family: 'Alex Brush';
  line-height: 45px;  
	color: #000000;
	

}
	
		
#art-for-sale p {
	font-size: 18px;
  margin: 10px 0px 20px 0px;
  font-family: 'Noteworthy-Bold';
  line-height: 25px;  
	color: #000000;
	

}
	
.gallery-item p {
  margin: 10px 10px 10px 10px;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  font-family: 'Noteworthy-Bold';
}

	
}
	

	










@media (max-width: 1200px) {
   /* Hero Section */
.hero-image {
    height: 629px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
	background-image: url("../img/for_sale_page/hero_image_1200px.jpg");
	margin: 20px 0px 0px 0px;
}
	
	
	/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 90%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 450px 0px 0px 0px;
	color: #ffffff;
	width: 95%;
}

	
.hero-text h1 {
    margin: 10px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 60px;
	line-height: 55px;

}

	
.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 35px;
	line-height: 40px;
	margin: 10px 0px 0px 0px;
}


.about-fused-glass h1 {
  font-size: 50px;
  margin: 30px 0px 10px 0px;
  font-family: 'Alex Brush';
  line-height: 30px;
}

.about-fused-glass p {
  max-width: 1200px;
  margin: 0px 20px 0px 20px;
  font-size: 16px;
  line-height: 25px;
  color: #00000;
  font-family: 'Noteworthy-Bold';
}

.featured-art h2 {
	margin: 0px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #000000;
	font-size: 55px;
	line-height: 60px;
	width: 1200px;
	padding: 10px;
		
}
	
section#art-for-sale {
    padding: 20px 20px;
	 max-width: 1200px;
	margin: 0px auto 30px auto;
		
}
	
	
#art-for-sale h1 {
	font-size: 45px;
  margin: 10px 0px 0px 0px;
  font-family: 'Alex Brush';
  line-height: 45px;  
	color: #000000;
	

}

	
}


















@media (max-width: 768px) {
   /* Hero Section */
.hero-image {
    height: 722px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
	background-image: url("../img/for_sale_page/hero_image_768px.jpg");
	margin: 20px 0px 0px 0px;
}

	/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 90%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 500px 0px 0px 0px;
	color: #ffffff;
	width: 95%;
}

	
.hero-text h1 {
    margin: 10px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 60px;
	line-height: 55px;

}

	
.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 35px;
	line-height: 40px;
	margin: 10px 0px 0px 0px;
}


.about-fused-glass h1 {
  font-size: 50px;
  margin: 30px 0px 10px 0px;
  font-family: 'Alex Brush';
  line-height: 30px;
}

.about-fused-glass p {
  max-width: 1200px;
  margin: 0px 20px 0px 20px;
  font-size: 16px;
  line-height: 25px;
  color: #00000;
  font-family: 'Noteworthy-Bold';
}

.featured-art h2 {
	margin: 50px 0px 10px 0px;
	 font-family: 'Alex Brush';
	 color: #000000;
	font-size: 45px;
	line-height: 30px;
	width: 768px;
		
}
	
section#art-for-sale {
    padding: 20px 20px;
	 max-width: 768px;
	margin: 0px auto 30px auto;
		
}
	
	
#art-for-sale h1 {
	font-size: 45px;
  margin: 10px 0px 0px 0px;
  font-family: 'Alex Brush';
  line-height: 45px;  
	color: #000000;
	

}
	


	
}











@media (max-width: 480px) {
   /* Hero Section */
.hero-image {
    height: 471px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
	background-image: url("../img/for_sale_page/hero_image_480px.jpg");
	margin: 20px 0px 0px 0px;
}

	
	/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 90%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 230px 0px 0px 0px;
	color: #ffffff;
	width: 95%;
}

	
.hero-text h1 {
    margin: 10px 20px 0px 20px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 45px;
	line-height: 35px;

}

	
.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 25px;
	line-height: 25px;
	margin: 10px 0px 0px 0px;
}


.about-fused-glass h1 {
  font-size: 35px;
  margin: 20px 0px 10px 0px;
  font-family: 'Alex Brush';
  line-height: 30px;
}

.about-fused-glass p {
  max-width: 1200px;
  margin: 0px 0px 0px 0px;
  font-size: 15px;
  line-height: 20px;
  color: #00000;
  font-family: 'Noteworthy-Bold';
}

.featured-art h2 {
	margin: 50px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #000000;
	font-size: 30px;
	line-height: 30px;
		
}
	
	section#art-for-sale {
    padding: 20px 20px;
	 max-width: 480px;
	margin: 0px auto 30px auto;
}
	
	
	
}









@media (max-width: 300px) {
   /* Hero Section */
.hero-image {
    height: 411px; /* Adjust height as needed */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
	background-image: url("../img/for_sale_page/hero_image_300px.jpg");
	margin: 20px 0px 0px 0px;
}

	
	

	
	/* Hero Text */
.hero-text {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;  
	color: #ffffff;
	width: 90%;
	margin: 0px 0px 0px 0px;
	
	
}

.hero-text2 {
    position: relative;
    z-index: 1; /* Keep the text above the background image */
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 0px;
    border-radius: 8px;
    text-align: center;
	text-shadow: 2px 2px #000000;
	margin: 230px 0px 0px 0px;
	color: #ffffff;
	width: 95%;
}

	
.hero-text h1 {
    margin: 10px 10px 0px 10px;
	 font-family: 'Alex Brush';
	 color: #ffffff;
	font-size: 35px;
	line-height: 30px;

}

	
.hero-text2 h2 {
	font-family: 'Grand Rainbow Demo';
	color: #ffffff;
	font-size: 25px;
	line-height: 25px;
	margin: 10px 0px 0px 0px;
}


.about-fused-glass h1 {
  font-size: 35px;
  margin: 20px 0px 10px 0px;
  font-family: 'Alex Brush';
  line-height: 30px;
}

.about-fused-glass p {
  max-width: 1200px;
  margin: 0px 0px 0px 0px;
  font-size: 15px;
  line-height: 20px;
  color: #00000;
  font-family: 'Noteworthy-Bold';
}

.featured-art h2 {
	margin: 50px 0px 0px 0px;
	 font-family: 'Alex Brush';
	 color: #000000;
	font-size: 30px;
	line-height: 30px;
		
}
	
section#art-for-sale {
    padding: 20px 20px;
	 max-width: 550px;
	margin: 0px auto 20px auto;
}
	
    }
	



