/* 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/wp3644038.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: 100vh;
    text-align: center;
}

header h2 {
	top: 10px;
	color: gold;
	padding: 5px;
	position: relative;
}

/*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);
}



/*  shop section */
.shop-section{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	background-color: #e2e7e6;
    padding-bottom: 15px;
}

/* Box  */
.box{
	border: 1px solid black ;
	height: 480px;
	width: 25%;
	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;
}


/* 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 ;
}