@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html body * {
  box-sizing: border-box;
  font-family: Lato;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000000
}

.flexbox{
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100vw;
}

.grid-sizer {
 width: 25%;
}


.grid-item {
    width: 25%;
    padding: 10px;
}


.imgstyles {
    height: auto;
    object-fit: fill;
    width: 25%;
    margin-bottom: 2px;
}

.flexbox img:hover {
    transform: scale(1.02);
}

.grid img:hover {
    transform: scale(1.02);
}

/* Category bars */

.section-card {
    padding: 3px 10px;
    width: 100%;
    background-color: #000000;
    margin-bottom: 10px;
    margin-top: 10px;
}

.section-t{
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    background-color: ##000000;
}

/* nagivation bar */

.nav-bar {
    background-color:  #000000;
    box-shadow: 1px 1px 5px 0px #0f0f0f;
    position: relative;
    top: 0;
    width: 100%;

}

.nav{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #050505;
    overflow: hidden;
    z-index: 2;

}
.menu a{
    display: block;
    padding: 20px;
    color: #ffc800;
    text-decoration: none;
}
.menu a:hover{
    background-color: #000000
}

.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}


ul{
    list-style: none;
}

.logo {
    display: inline-block;
    color: #ffc800;
    font-size: 30px;
    margin-left: 25px;
}

.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}/* Style label tag */

.hamb-line {
    background: #ffc800;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: #ffc800;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
}

/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
}

.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}

.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}

.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}


/* On me section styling */

.biz-card {
    background-color: #000000;
    overflow: auto;
    padding: 10px;
}

.biz-card-photo {
    float: left;
    margin: 2px;
    margin-right: 30px;
    height: auto;
    object-fit: fill;
    width: 35%;
}

.biz-card p {
    margin: 0px;
    font-size: 15px;
    color: #ffffff;
    background-color: #000000;
    text-indent: 0px;
}

.t-container {
    padding: 10px;
    background-color: #000000;
}

.t-container h3 {
    color:#ffffff;
    font-size: 25px;
    margin: 0px;
    background-color: #000000;
}

.biz-card h4 {
    color:#ffffff;
    font-size: 15px;
    margin: 0px;
    background-color: #000000;
}

/* media checks, code stuff */

@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: #ffea9e

    }

    .hamb{
        display: none;
    }
}


@media screen and (max-width: 768px) {
    .grid { display: block
    }

   .grid-item {
    width: 100%;
    height: auto;
}
    .imgstyles {
        width: 100%;
    }

    .left {float:none}
    .right{float:none}

    .flexbox {
        display: block;
        width: 100%;
    }
} 

/* data for zoom js */

[data-zoom-backdrop] {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 900;
	background-color: rgba(255, 255, 255, 1);
	opacity: 0;
	transition: opacity 400ms ease;
	pointer-events: none;
}

[data-zoom-backdrop='active'] {
	opacity: 1;
	pointer-events: auto;
}

[data-zoom-image] {
	position: relative;
	z-index: 800;
	transform: none;
	transition: transform 400ms ease;
	cursor: zoom-in;
}

[data-zoom-image='active'] {
	z-index: 1000;
	cursor: zoom-out;
}
