/* 
main title font:  font-family: "Bevan", serif;
little blurb font:   font-family: "Red Hat Text", sans-serif;
color red: #a40000
color grey: #5e5e5e
*/




.navbar {
    transition: all 0.25s;
}

.navbar-brand img {
    height: clamp(120px, 11vw, 140px);
}

.navbar-scrolled {
    background-color: #5e5e5e;
    opacity: 98%;
    border-bottom: rgb(0, 0, 0) 5px solid;
}

.nav-link {
    color: white;
    font-family: "Red Hat Text", sans-serif;
    font-size: clamp(20px, 2vw, 35px);
    font-weight: 500;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: black;
    paint-order: stroke fill;
    margin-right: 15px;
    transition: .3s;

}

.nav-link:hover {
    color: rgb(255, 255, 255);
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: #a40000;
    paint-order: stroke fill;
    transition: .3s;
}

.nav-link:active {
    font-weight: 500;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgb(0, 0, 0);
    paint-order: stroke fill;
    margin-right: 15px;
    transition: .1s;
    font-family: "Red Hat Text", sans-serif;
    color: #a40000;
}

.nav-link:focus {
    color: rgb(255, 255, 255);
    font-family: "Kurale", serif;
    font-weight: 500;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: black;
    paint-order: stroke fill;
    margin-right: 15px;
    transition: .3s;
}

/*hamburger menu css*/

.navbar-toggler {
    width: 50px;
    height: 30px;
    position: relative;
    transition: all .25s;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: #a40000;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    top: 10px;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}

.navbar-toggler .top-bar {
    margin-top: 0px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    margin-top: 0px;
    transform: rotate(-135deg);
}

.navbar-toggler.collapsed .top-bar {
    margin-top: -20px;
    transform: rotate(0deg);
    background: white;
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    filter: alpha(opacity=100);
    background: white;
}

.navbar-toggler.collapsed .bottom-bar {
    margin-top: 20px;
    transform: rotate(0deg);
    background: white;
}

.img-header {
    display: grid;
    place-items: center;
    position: relative;
    height: 100svh;
    overflow-x: clip;
    padding-block: 7rem;
}

.the-image {
    grid-column: 1/-1;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    object-fit: cover;
    z-index: -1;
}

.header {
    background: #5e5e5e;
    border-radius: 50px;
    height: auto;
    width: clamp(350px, 50vw, 700px);
    opacity: 90%;
    padding: 20px;
    align-items: center;
    margin: 25px;
    box-shadow: 0px 1px 14px 7px rgba(0, 0, 0, 0.90);
    position: relative;
    top: 50px;
}

.name {
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: black;
    color: white;
    font-size: clamp(32px, 6vw, 52px);
    font-family: "Bevan", serif;
    paint-order: stroke fill;
    font-weight: 100;
    margin: auto 0;
}

.undertext {
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: black;
    paint-order: stroke fill;
    color: white;
    font-size: clamp(20px, 2vw, 25px);
    font-family: "Red Hat Text", sans-serif;
    font-weight: 100;
    position: relative;
}

.explore {
    background: #a40000;
    margin: 50px;
    border-radius: 10px;
    font-size: 30px;
    padding: 20px 100px;
    width: 80px;
    height: clamp(60px, 10svh, 70px);
    box-shadow: #000000 0px 4px 8px 0px, #000000 4px 4px 16px 0px;
    font-family: "Red Hat Text", sans-serif;
    font-weight: 100;
    color: white !important;
    transition: 0.5s;
    border: none !important;
}

.explore:hover {
    background: #a40000 !important;
    box-shadow: none;
    transform: scale(1.1);
    transition: 0.5s;
    cursor: pointer;
}

/* about css */

.about {
    background: #F5F5F5;
    height: 100svh;
    padding: clamp(50px, 10vw, 200px);
}

.row {
    width: 100%;
}

.about-row {
    box-shadow: #000000 0px 4px 8px 0px, #000000 4px 4px 16px 0px;
}

.about-image {
    background-image: url(images/store6.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 400px;
}

.about-description {
    height: 400px;
    background: #a40000;
}

@media screen and (min-width:1200px) {
    .header {
        height: 400px;
    }

    .about-image,
    .about-description {
        height: 500px;
    }
}

@media screen and (max-height:800px) {
    .img-header {
        height: 800px;
    }
}

.aboutustitle {
    font-family: "Bevan", serif;
    -webkit-text-stroke-width: 6px;
    -webkit-text-stroke-color: black;
    paint-order: stroke fill;
    color: white;
}

.aboutusblurb {
    font-family: "Red Hat Text", sans-serif;
    color: white;
    font-size: clamp(13px, 2vw, 20px);
}