* {
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif ;
}

* h1 {
    font-family: candara;
}

body {
    margin: 0;
    padding: 0;
    background:url("./images/lightbulbs_1920.jpg");
    background-size: cover;
    background-repeat: no-repeat;

}

.shop {
    display: flex;
    align-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}





@media (max-width: 1000px) {
    .shop {
        flex-direction: column;
            
    }
}


.hero {
    background-color: #0C2635;
    color: white;
    width: 30%;
    opacity: .9;
    font-size: 1.1rem;
    text-align: center;
    padding: 1cm;
    margin-top: 2cm;
    margin-bottom: 2cm;
    border-radius: 20%;
}


.hero:hover {
    opacity: 1;
}

.hero ul {
    text-align: left;
    line-height: .8cm;
}


.gallery {
    width: 200px;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
.gallery:hover {
    border: 1px solid white ;
    ;
  }
  
.gallery img {
    width: 100%;
    height: auto;
  }
  
.desc {
    padding: 15px;
    text-align: center;
    background-color: #0C2635;
    opacity: .75;
    color: white;
  }

.album {
    display: flex;
    width: 80%;
    margin-top: 3cm;
    margin-bottom: 3cm;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 1000px) {
    .album {
        flex-direction: column;
        gap: 1cm
    }
}


.navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    background-color: #0C2635;
    color: white;
    padding: .8cm .8cm;
    border-bottom: 3px solid #FDB44B;

}

span {
    color:#FDB44B ;
}

.current {
    background:#f5eff1;
}

.navbar .current {
    color: black;
}

.current ul a {
    color: black;
}

.logo {
    display: flex;
    align-items: center;
    gap: 2vh;
}

.logo img {
    width: 100px;
    height: 100px;
}

.brand-title {
    font-size: 2.6rem;
    margin: .5rem;
	font-family: candara;
}

.brand-title p {
    font-size: .8rem;
}

@media (max-width: 500px) {
    .brand-title {
        font-size: 1.9rem;
    }
}

.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: white;
    padding: 1rem;
	font-family: ebrima;
}

.navbar-links li:hover {
    background-color: #FDB44B;
    color: black;
}

.navbar-links li a:hover {
    color: black;
}

.toggle-button {
    position: absolute;
    top: .5cm;
    right: .5cm;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toggle-button {
        display: flex;
    }

    .navbar-links {
        display: none;
        width: 100%;
    }

    .navbar-links ul {
        width: 100%;
        flex-direction: column;
    }

    .navbar-links ul li {
        text-align: center;
    }

    .navbar-links ul li a {
        padding: .5rem 1rem;
    }

    .navbar-links.active {
        display: flex;
    }
}

.ads {
    display: flex;
    width: 70%;
    color: white;
    background: #0C2635;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2cm;
    text-align: left;
    opacity: 0.8;
    padding: 2cm;
    border-radius: 20%;
    justify-content: space-around;
}

.ads h1 {
    text-align: center;
}

@media (max-width: 1000px) {
    .ads {
        flex-direction: column;
        justify-content:center;
        gap: 1cm;
        width: 85%;
        padding: 1cm;

    }

    .adsbanner img {
        width: 200px;
        height: auto;
    }
}

.adsbanner {
    background:#0C2635;
    color:wheat;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1cm;
    margin-top: 2cm;
    margin-bottom: 2cm;
    border-radius: 20%;
}


.ads:hover {
    opacity: 1;
}

@media (max-width: 1000px) {
    .adsbanner {
        width: 80%;
    }
}

footer {
    background-color: #0C2635;
    opacity: .8;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: .2cm .5cm;
}

footer img {
    border: 1px solid white;
    padding: .2cm;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

footer a {
    color:#FDB44B ;
}

@media (max-width: 920px) {

.hero {
    width: 85%;
}


@media (max-width: 480px) {
	body {
		background:url("./images/bhvm_1920_master3.jpg");
        background-repeat: repeat-y;
        background-size:contain;
	}

}




