:root {
	--main-color: #2e768f;
}

*{
	margin: 0;
	padding:0;
	/*font-family: 'Poppins', sans-serif;*/
	font-family: "Comfortaa", sans-serif;
	
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
	font-size: 62.5%;
}
body{
	/*background-color: #843f46;*/
	background-color: var(--main-color);
	background-size: cover;
	background-attachment: fixed;
}


/*.imagetext{
	width: 70%;
	margin: 4rem auto;
	height: auto;
	position: relative;

}*/



.mainbox{
	width: 100%;
	min-height:100vh;
	padding-bottom: 3rem;
	position: relative;
}

.gradientlayer{
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.0) 30%,rgba(0,23,149,0.5) 50%,rgba(255,0,0,0.6) 60%,rgba(0,23,149,0.6) 80%,rgba(0,0,0,0.0) 100%);
	/*background: linear-gradient(135deg, rgba(0,0,0,0.0) 0%,rgba(0,0,0,0.0) 40%,rgba(249,149,44,0.9) 50%,rgba(255,255,255,0.9) 60%,rgba(255,255,255,0.8) 70%,rgba(37,146,49,0.8) 80%,rgba(37,146,49,0.8) 90%,rgba(0,0,0,0.0) 100%);*/
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: 400% 400%;
	
	pointer-events: none;
	
	opacity: 0.8;
	animation-duration: 3s;
	animation-delay: 2s;
	animation-name: gradient;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;
	animation-play-state: running;
}

.mainbox:hover .gradientlayer{
	/*background-position: 100% 100%;*/
	animation-play-state: running;

}

@keyframes gradient{
	from{
		background-position: 0% 0%;	
	}
	to{
		background-position: 100% 100%;
	}
}

.container{
	width: 100%;
	min-height: 10vh;
	/*max-height: 40vh;*/
	
	background: var(--main-color);
	
	background-attachment: fixed;
	/*background: linear-gradient(rgba(0, 0, 0,0),rgba(0, 0, 0,0)),url(images/creme.jpg);*/
	/*background: linear-gradient(rgba(0, 0, 0,0.0),rgba(0, 0, 0,0.0)),url(images/white.jpg);*/
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	filter: drop-shadow(0px 4px 5px #1f1f1f);	
	position: relative;
	z-index: 100;
}


.navbar{
	width:95%;
	margin: auto;
	padding: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap:wrap;
	/*z-index: 5;*/
}

.fontgv{
	font-family: "Great Vibes", cursive;
	word-spacing: 1rem;
	
}

.navbar h1{
	font-size: 2.2rem;
	color: #eee;
	filter: drop-shadow(3px 3px 1px #2f2f2f);
	word-spacing: 0.8rem;
	line-height: 3.8rem;
	letter-spacing: 0.5px;
	font-weight: bold;
	transition: 0.5s ease;
	font-family: "Martel", serif;
}

.navbar h1:hover{
	cursor: pointer;
	color: #fff;
	transform: scale(102%);
	/*font-size: 3rem;*/

}

.rightalign{
	text-align: right;
}

.logotextmain{
	width: 18rem;
	display: none;
}
.navbar .logo{

	width:	11rem;
	height: 9.5rem;
	cursor: pointer;
	transition: 0.5s ease;
	color: #646548;
	filter: drop-shadow(5px 5px 20px #fff);
	
}

.logo:hover{
	transform: scale(105%);
	/*filter: brightness(300%);*/
	/*filter: blur(50);*/
	/*filter: drop-shadow(3px 3px 2px #2f2f2f);	*/
}

.navbar .strobert{
	width:	10rem;
	height: 10rem;
	cursor: pointer;
	transition: 0.5s ease;
	filter: drop-shadow(5px 5px 20px #fff);
	border-radius: 50%;
	border:2px solid #ddd;
}

.navbar .strobert:hover{
	transform: scale(105%);
}

/*carousel*/

		.carousel {

            position: relative;
            width: 100%;
            height: 75vh;
            margin: 0.5rem auto;
            background:var(--main-color);
            
            overflow: hidden;
        }

        .carousel-inner {
            display: flex;
            transition: transform 1s ease;
            width: 100%;
            height: 100%;
        }

        .carousel-item {
            min-width: 100%;
            height: 100%;
            position: relative;
            

        }


        .carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
            
        }

        

        .overlay {
		    position: absolute;
		    top: 0;
		    left: 0;
		    right: 0;
		    bottom: 0;
		    background-color: rgba(0, 0, 0, 0.0); /* Adjust opacity for darkness */
		    z-index: 1; /* Ensure it is above the image but below the text */
		}

        .carousel h3{
        	position: absolute; 
		    bottom: 0; 
		    left: 50%; 
		    background:rgba(46,118,143,0.7);
		    line-height: 4rem;
		    transform: translateX(-50%); 
		    color: #fff; 
		    z-index: 2;
		    overflow-wrap: break-word;
		    word-wrap: break-word;
		    white-space: normal;
		    opacity: 0;
		    font-size: 2.5rem;
		    width: 100%; /* Set width to a percentage */
		    text-align: center; /* Center the text */
		    
		   /* font-family: "Great Vibes", cursive;*/
			font-weight: normal;
			font-style: normal;
		    transition: opacity 0.9s;
		    animation: fadeIn 0.5s forwards; /* Fade in animation */
    		animation-delay: 1s; /* Delay before the animation starts */

		}

		@keyframes fadeIn {
    	to {
        	opacity: 1; /* Fully visible at the end of the animation */
    		}
		}
        .carousel button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 1rem 0 1rem 0;
            cursor: pointer;
            padding: 1rem;
            transition: 0.5s ease;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .carousel button:hover{
        	background-color: rgba(255, 255, 255, 0.5);
        }

/*=============*/


.content{
	width: 100%;

	/*position: absolute;*/
	margin-top: 1rem;
	text-align: center;
	color: #fff;
	align-items: center;
	justify-content: space-between;
	position: relative;

}



.content p{
	padding: 1.2rem;
	margin: 0;
	font-size: 1.9rem;
	word-spacing: 0.2rem;
	line-height: 3rem;
	color: #eee;
	text-align: center;
	font-family: "Comfortaa", sans-serif; 

}



.content .btnbox{
	width: 90%;
	margin: 1rem auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;

}



.btnbox button{

	width: 17rem;
	padding: 1.3rem 0;
	text-align: center;
	font-size: 1.5rem;
	margin: 3rem 1rem 2rem;
	border:none;
	border-radius: 0.5rem;
	font-weight: bold;
	color: #2f2f2f;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	z-index: 1;
	filter: drop-shadow(0px 5px 4px #ddd);
	transition: 0.5s ease;
}

.btnbox span{
	/*background: linear-gradient(rgba(0, 0, 0,0),rgba(0, 0, 0,0)),url(images/creme.jpg);*/
	background:#e5d6c7;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	transition: 0.3s ease;

}
.btnbox button:hover span{
	/*background:#e5d6c7;*/

}

.btnbox button:hover{
	border: none;
	/*filter: drop-shadow(0px 0px 0px #ddd);*/
	/*background:#eeca6b;*/
	color: var(--main-color);
	/*filter: drop-shadow(0px 2px 3px #fff);*/

}

/*magazine*/
.magazine-content{
	width: 95%;
	margin: 4rem auto;
	text-align: center;
}

.magazine-container{
	width: 100%%;
	height: 50rem;
	margin: 3rem auto;
	border: 2px solid #ccc;
	overflow: hidden;
}

.magazine-content h1{
	font-size: 4rem;
	margin: 3rem auto;
	font-family: "UnifrakturCook", cursive;
	color: #eee;
	font-weight: normal;
}

.magazine-container iframe{
	width: 100%;
	height: 100%;
	border: none;
}

.download-link-magazine{
	text-align: center;
	margin-top: 2rem;
}

.download-link-magazine a{
	text-decoration: none;
	font-size: 1.7rem;
	color: #fff;
	background-color: #9c424b;
	padding: 1rem 2rem;
	border-radius: 5px;
	transition: 0.3s;
}
.download-link-magazine a:hover{
	background-color: #3f3f3f;
}




/*history of srs*/
.historycontainer{
	width: 100%;
	background:url(images/vintage.jpeg);
	background-size: cover;
	background-position: center;
}

.historycontent{
	width: 80%;
	margin: 2rem auto;
	padding: 3rem 2rem;
	text-align: center;
}

.historycontent h1{
	margin: 3rem auto;
	font-size: 4.5rem;
	color: #452c2c;
	font-family: "UnifrakturCook", cursive;
}
.historycontent img{
	width: 40rem;
	transition: 0.5s ease;
	cursor: pointer;
	/*box-shadow: 6px 6px 7px #2f2f2f;*/
}
.historycontent img:hover{
	filter: saturate(1.9);
}
.historycontent p{
	font-size: 2.1rem;
	color: #000;
	margin: 2rem auto;
	text-align: justify;
	line-height: 2.2rem;
	font-family: "Special Elite", system-ui;
	word-spacing: 1rem;
}
.knowmorebtn{
	margin: 1rem auto;
	text-align: right;
}
.knowmorebtn a{
	text-decoration: none;
	color:#452c2c;
	transition: 0.3s ease;
}

.historycontent button:hover{
	color: #000;
}
.historycontent button{
	width: 17rem;
	padding: 1.3rem 0;
	/*float: right;*/
	text-align: center;
	font-size: 2.1rem;
	margin: 1rem auto;
	border:none;
	font-weight: bold;
	color: #452c2c;
	cursor: pointer;
	background:transparent;
	font-family: "Special Elite", system-ui;

	/*text-transform: uppercase;*/
	/*z-index: 1;*/
	
	transition: 0.4s ease;
}

/*best house and best class*/

.bestcontainer{
	background: linear-gradient(rgba(0, 0, 0,0.6),rgba(0, 0, 0,0.8)),url(images/hof.jpeg);
	width: 100%;
	margin: 1rem auto;
	padding: 1rem;
	background-attachment: fixed;
	background-size: cover;
}

.bestcontainer h1{
	font-family: "Cinzel", serif;
	color: #eeca6b;
	margin: 3rem auto;
	font-size: 3rem;
	word-spacing: 0.8rem;
	letter-spacing: 0.4rem;
	text-align: center;
}

.bestcontainer .bestbox{
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin: 4rem auto;
	text-align: center;
	flex-wrap: wrap;
	grid-gap: 4rem;
}

.bestbox .card{
	background: transparent;
	margin: 1rem auto;
	width: 37rem;
	border-radius: 0px 4rem 0 4rem;
	padding: 1rem;
	color: #ddd;
	border:8px solid #eeca6b;
	animation: scrolleffect ease-in-out both;
	animation-timeline: view();
	animation-range: entry 50% cover 50%;

}

@keyframes scrolleffect{
	from {
		opacity: 0;
		transform: translateY(10rem);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes scrolleffectside{
	from {
		opacity: 0;
		transform: translateX(-10rem);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes scrolleffectrightside{
	from {
		opacity: 0;
		transform: translateX(10rem);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.bestbox h3{
	font-size: 2.5rem;
	color: #fff;
	margin: 1rem auto;
	font-family: "Cinzel", serif;
}

.card i{
	font-size: 8rem;
	margin: 3rem auto;

}

.card h2{
	line-height: 3rem;
	font-size: 1.8rem;
	
	/*font-family: "Cinzel", serif;*/
}

.goldentext{
	color: #eeca6b;
}

.card img{
	width: 65%;
	margin: 1.5rem auto;
	border-radius: 50%;
	border:5px solid #eee;
}



.aboutcontainer{
	margin: 2rem auto;
	width: 100%;
	background:url("images/creme.jpg");
	padding: 2rem ;

}

.aboutcontainer .aboutbox{
	width: 95%;
	margin: 2rem auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	text-align: center;
	align-items: center;

}

.aboutbox .strobertpic{
	width: 40rem;
	animation: scrolleffect ease-in-out both;
	animation-timeline: view();
	animation-range: entry 50% cover 50%;

}

.aboutbox img{
	width: 100%;
	height: 40rem;
	border-radius: 50%;
}

.aboutbox .aboutcontent{
	width: 60rem;
	animation: scrolleffect ease-in-out both;
	animation-timeline: view();
	animation-range: entry 50% cover 50%;
}

.aboutcontent h2{
	font-family: "UnifrakturCook", cursive;
	font-weight: 700;
	color: #452d2a;
	font-size: 4rem;
	margin: 1rem auto;
}

.aboutcontent p{
	color: #2f2f2f;
	font-weight: bold;
	font-size: 2.8rem;
	margin-bottom: 3rem;

}

.aboutcontent h3{
	color: #1f1f1f;
	font-size: 2.5rem;

}

.maroonbg{
	width: 100%;
	margin: 0 auto;
	background:url("images/creme.jpg");
	padding: 1rem;
}

.infobox{
	max-width: 17rem;
	/*height: auto;*/
	margin: 1rem auto;
	background: var(--main-color);
	padding: 0.2rem;
	/*border-radius: 5rem;*/
	/*border:1px solid #ccc;*/
	cursor: pointer;
	box-shadow: 5px 5px 3px #3f3f3f;
	transition: 0.5s ease;
}

.infobox:hover{
	box-shadow: none;
}

.visitorbox{

	padding: 1rem;
	color: #eee;
	text-align: center;
	text-transform: uppercase;
	
}

.maroonbg a{
	text-decoration: none;
	color: #eee;
}
.visitorbox h2{
	text-align: center;	
	font-size: 1.3rem;
	

}


.copyright{
	
	text-align: center;
	padding: 2rem;
}

.footer p{
	font-size: 1.3rem;
	line-height: 2rem;
	color: #ddd;

}

.footer hr{
	width: 90%;
	margin: 0 auto;
}



/* ---------------------------------------------------------*/
/* ----------------------tab-----------------------------------*/
/* ---------------media queries-----------------*/

@media screen and (max-width: 980px) {
		.html{
			font-size: 55%;
		}

		.navbar{
			width: 95%;
			padding:2rem;
		}

		.navbar h1{
			font-size: 1.7rem;
			word-spacing: normal;
		}
		
		.carousel {

            height: 40vh;
            
        }
		.carousel h3{
        	font-size: 1.8rem;
        	line-height: 2.5rem;
        	word-spacing: 0.1rem;
        	letter-spacing: 0.1rem;
        }

		.historycontent{
			width: 90%;
			padding: 1rem 1rem;
		}
		


}

		
/* ---------------------------------------------------------*/
/* ----------------------tab-----------------------------------*/
/* ---------------media queries-----------------*/

@media screen and (max-width: 750px) {

		.html{
			font-size: 50%;
		}

		
		.navbar h1{
			font-size: 2.2rem;
			word-spacing: 0.5rem;
			line-height: 3rem;
			letter-spacing: 0.4px;

		}
		
		.navbar h1:hover{
			transform: scale(105%);
		}


		#admaoira{
			display: none;
		}

		.historycontent{
			width: 95%;
			padding: 1rem 1rem;
		}
		.historycontent img{
			width: 28rem;
			
		}
		.historycontent p{
			font-size: 1.8rem;
		}
		
		
}


/* ---------------------------------------------------------*/
/* ----------------------tab-----------------------------------*/
/* ---------------media queries-----------------*/

@media screen and (max-width: 600px) {

		.html{
			font-size: 40%;
		}

		.navbar{
			width: 95%;
			padding:2rem;
		}
		.navbar h1{
			font-size: 2rem;
			word-spacing: 0.4rem;
			line-height: 3rem;
			letter-spacing: 0.3px;
		}
		
		.navbar h1:hover{
			transform: scale(105%);
		}
		.carousel {

            height: 30vh;
            
        }
        .strobert{
			display: none;
		}
		
		/*.content .banner{
			
			margin: 0.3rem auto;

		}*/
}
		
/* ---------------------------------------------------------*/
/* -----------------------mobile----------------------------------*/
/* ---------------media queries-----------------*/

@media screen and (max-width: 480px) {

		.html{
			font-size: 30%;
		}

		#logotextmain{
			display: inline-flex;
			margin: 0.4rem auto;
			
			transition: 0.3s ease;
		}
		.navbar{
			width:90%;
			padding: 1rem;
			justify-content: space-between;
		}
		#logotextmain:hover{
			transform: scale(100%);
		}

		.navbar .logo{

			width:	8.5rem;
			height: 7rem;
		}

		.navbar h1{
			display: none;
		}

		.navbar h1:hover{
			transform: scale(105%);
			font-weight: 700;
		}

		.carousel {

            height: 21vh;
            

        }
        .carousel h3{
        	bottom: 0rem;
        	font-size: 1.1rem;
        	line-height: 1.6rem;
        	word-spacing: 0.1rem;
        	letter-spacing: normal;
        }
		
		.content .btnbox{
			justify-content: space-around;

		}

		.btnbox button{
			width: 13rem;
			font-size: 1.3rem;
		}

		.aboutbox img{
			
			height: 32rem;
		
		}
		
}

		