/* Global CSS  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* setting default styles and setting font family */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Smooth scrolling behavior 
html {
    scroll-behavior: smooth;
}
*/

/* Body background image */
body {
	
	background-image: url("https://wallpapercave.com/w/wp2789179.jpg");
/*
	background-image: url("https://wallpapercave.com/w/wp10309717.jpg");

	background-image: url("https://wallpapercave.com/w/wp3644024.jpg");
	
	background-image: url("https://wallpapercave.com/w/wp12297971.jpg");
	
    background-image: url("https://wallpapercave.com/wp/wp2466618.jpg");
	*/
    background-size:contain;
    background-repeat: no-repeat;
}

/* Header */
header {
    background-position: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    text-align: center;
	box-shadow: 0 0 22px #202020;
}

header h1 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: gold;
    font-size: 120px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
  
}

header h2 {
	top: 10px;
	color: gold;
	padding: 5px;
	position: relative;
}

header p {
    font-size: 18px;
    margin: 0.5 rem 0;
    color: #fff;
}

.hello{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* explore button */
header a.explore {
    background-color: #f0f;
    color: #333;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 60px;
    margin-top: 1rem;
    transition: 0.6s;
    
}


header a.explore:hover {
    background-color: #333;
    color: #fff;
    cursor: pointer;
    border-radius: 20px;
    transition: .6s;
    transform: scale(1.1);
}

/*navigation bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    position: fixed;
    top: 0;
    width: 100%;
    flex-direction: row;
    transition: .6s;
    background: #202020;
}

nav:hover {
    backdrop-filter: blur(5px);
}

nav.sticky {
    background: #202020;
    height: 80px;
    transition: .6s;
    z-index: 1;
}

nav img {  
    height: 80px; 
    width: 10%;
    aspect-ratio: 4/3;
    object-fit: contain;
    mix-blend-mode: color-dodge;
    transition: .6s;
} 

nav ul {
    display: flex;
    list-style: none;
}

nav a {
    position: relative;
    font-size:1.1em;
    color: #fff;
    text-decoration: none;
    font-weight: 200;
    margin-left: 10px;
    margin-right: 5px;
    padding: 5px;
    top:20px;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height:3px;
    background: #fff;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}

nav a:hover::after {
    transform: scaleX(1);
}

/*
@-moz-keyframes moveText {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes moveText {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); 
 -webkit-transform: translateX(100%);
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); 
 -webkit-transform: translateX(-100%); 
 transform: translateX(-100%); 
 }
}

*/


/*
@keyframes moveText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes moveText {
    0% {
       -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

*/

.main-title{
    color: white;
    font-family: "Press Start 2P";
    font-size: 15px;
    white-space: nowrap;
/*    overflow: hidden;  */
  /*
    -moz-transform:translateX(100%);
    -webkit-transform:translateX(100%);	
    transform:translateX(100%);
 	
    -moz-animation: moveText 25s linear infinite;
    -webkit-animation: moveText 25s linear infinite;
    animation: moveText 25s linear infinite;
    */
 
 /*transform:translateX(100%);
    -webkit-animation: moveText 25s linear infinite;*/
}

div.title{
    background-color: blue;
}

/*  shop section */
.shop-section{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	background-color: #e2e7e6;
    padding-bottom: 15px;
}

/* Box  */
.box{
	border: 0px solid black ;
	height: 480px;
	width: 30%;
	background-color: white;
	padding: 20px 0px 15px;
	margin-top: 15px;
    transition: .6s;
}

.box:hover {
    transform: scale(1.01);
    transition: .6s;
}
.box-img{
	height: 273px;
	background-size: cover;
	margin-top: 1rem;
	margin-bottom: 1rem;
}

.box-content{
	margin-left: 1rem;
	margin-right: 1rem;
}

.box button{
    border : 2px solid black;
    border-radius: 15px;
    font-weight: 600;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: rgb(200, 198, 198);
    transition: 0.6s;
}
.box button:hover{
    font-weight: bolder;
    background-color: #0f1111;
    color: white;
    transition: .6s;
}


#prayer_time .box-content{
	padding-top: 50px;
}



/* about page  */
#about {
    padding: 50px 8%;
    line-height: 30px;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    display: flex;
    box-shadow: 0 0 22px #333;
    border-radius: 5%;
}

#about img {
    margin-top: 50px;
    width: 580px;
}

#about .matter {
    margin-left: 30px;
}

.matter .span {
    align-items: flex-end;
}


/* Footer  */
footer{
	margin-top: 15px;
}
.foot-panel1 a{
	text-decoration: none;
	color: black;
}

/* Footer panel 1*/
.foot-panel1{
    /* margin-top: 10px; */
	background-color: #ced3ca;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.85rem;
}

/* Footer panel 2*/
.foot-panel2{
	background-color: #fafaf2;
	color: #1a1a1a;
	height: 300px;
	display: flex;
	justify-content: space-evenly;
	align-items:center;
	padding: 20px;
}

/* Map */
.map {
    border:  2px solid #ced3ca;
    padding: 2px;
}
.map iframe{
    width:100% ;
    height: 100%;
}

/* Footer ul */
footer ul{
	margin-top: 10px;
}
footer ul a{
	display: block;
	font-size: 0.85rem;
	margin-top: 10px;
	color: #1a1a1a;
    text-decoration: none;
}

#foot-logo{
	height: 9em;
	width: 8em;
	background-image: url(Favicon.png);
	background-size: cover;
}

/* Footer box 3 */
.foot-box3{
	display: flex;
	flex-direction: column;
}
.Social{
	display: flex;
    justify-content: space-evenly;
}

.logosecond{
	background-image: url("Darbys-black.png");
	background-size: cover;
}

/* Footer panel 4 styles */
.foot-panel4{
	background-color: #0f1111;
	color: white;
	height: 80px;
	font-size: 0.7rem;
	text-align: center;
}

.pages{
	padding-top: 10px;
}

.copyright{
	padding-top: 5px ;
}