@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');


body, html {
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
}

body {
	background: url('assets/homepage-books.jpg') no-repeat center center fixed;
	 font-family: "Rubik", sans-serif;
	background-size: cover;
	display: flex;
	flex-direction: column;
}

	#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* White with 85% opacity */
    backdrop-filter: blur(5px);           /* This creates the "blur" effect */
    z-index: 9999;                        /* Stay on top */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;        /* Smooth fade out */
}


.loader-content {
    text-align: center;
    font-family: "Jost", sans-serif;
}

.loader-logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
    animation: pulse 1.5s infinite ease-in-out;
}

.card-text{
	font-size: 0.8rem !important;
	line-height: normal;
	text-align: center; 
	color: #fff !important;
}
		
.gallery-block{
	margin-left: 50px;
	margin-right: 50px;
	padding-bottom: 80px;
	padding-top: 80px;
	
}

.gallery-block .heading{
    margin-bottom: 50px;
    text-align: center;
}

.gallery-block .heading h2{
    font-weight: 500;
    font-style: normal;
    font-size: 1.6rem;
    
}

.glow-line {
  border-bottom: 0px solid #000; /* White text looks best with colored glows */
  box-shadow:
    0 0 0px #fff,    /* Inner white glow */
    0 0 10px #fff,   /* Soft white glow */
    0 0 20px #fff, /* Primary neon color (blue) */
    0 0 0px #fff, /* Larger spread */
    0 0 0px #fff; /* Farthest soft glow */
}

.glow2 {
  color: #fff; /* White text looks best with colored glows */
  text-shadow:
    0 0 5px #fff,    /* Inner white glow */
    0 0 10px #fff,   /* Soft white glow */
    0 0 20px #0073e6, /* Primary neon color (blue) */
    0 0 40px #0073e6, /* Larger spread */
    0 0 80px #0073e6; /* Farthest soft glow */
}

.gallery-block.cards-gallery h6 {
  font-size: 16px;
  font-weight: bold; 
  text-align: center;
}


.gallery-block.cards-gallery .card{
  transition: 0.4s ease; 
}


.gallery-block.cards-gallery .card img {
  border-radius: 4px;
  max-width: 92% !important;
  margin-top: 10px;    
}



.card{
	border: 1px solid #6B5D50 !important;
	
	border-radius: 7px;
    /* Gradient: Light at the top, dark at the bottom */
	background: linear-gradient(
		to bottom, 
		rgba(107, 93, 80, 0.7) 0%, 
		rgba(0, 0, 0, 0) 10%, 
		rgba(34, 30, 25, 1) 100%
	);
	transition: opacity 0.4s ease;
	
}

/* This targets the image inside the link during hover */
	.book-1-link:hover .book-1-img {
		content: url("assets/book-1a.jpg");
	} 

	.book-1-link:hover { 
        transform: rotateX(0deg) scale(1.1) translateY(0px); 
        z-index: 10;
    }
	
	.book-1-link:hover::after {
        opacity: 0.5;
    }

/* This targets the image inside the link during hover */
	.book-2-link:hover .book-2-img {
		content: url("assets/book-2a.jpg");
	} 

	.book-2-link:hover { 
        transform: rotateX(0deg) scale(1.1) translateY(0px);
        z-index: 10;
    }
	
	.book-2-link:hover::after {
        opacity: 0.5;
    }


/* This targets the image inside the link during hover */
	.book-3-link:hover .book-3-img {
		content: url("assets/book-0a.jpg");
	} 

	.book-3-link:hover { 
         transform: rotateX(0deg) scale(1.1) translateY(0px);
        z-index: 10;
    }
	
	.book-3-link:hover::after {
        opacity: 0.5;
    }
	
	/* This targets the image inside the link during hover */
	.book-4-link:hover .book-4-img {
		content: url("assets/book-4a.jpg");
	} 

	.book-4-link:hover { 
         transform: rotateX(0deg) scale(1.1) translateY(0px);
        z-index: 10;
    }
	
	.book-4-link:hover::after {
        opacity: 0.5;
    }
	

.lightbox{
	text-align: center !important;	
	}
	
.gallery-block.cards-gallery .card-body {
  text-align: center; 
  
}

.gallery-block.cards-gallery .card-body p {
  font-size: 15px; 
}

.gallery-block.cards-gallery a {
  color: #212529; 
}

.gallery-block.cards-gallery a:hover {
  text-decoration: none; 
}

.gallery-block.cards-gallery .card {
  margin-bottom: 30px; 
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
 
@media (min-width: 576px) {

	.gallery-block .transform-on-hover:hover {
	    transform: translateY(-10px) scale(1.02);
	    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15) !important; 
	}
}