@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}
.parallax{
    background-image: url('../Images/BlackParallax.png');
    max-height: 2000px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10%;
    padding-top: 15%;
    padding-bottom: 20%;
}
.navbar {
    background-color: #030303d3;
    padding: 10px 0;
    position: relative;
    display: flex;
    position: fixed;
    align-items: center;
    height: 80px;
    max-height: 100px;
    width: 100%;
    z-index: 1000;
}
.navbar .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.navbar .logo img {
    height: 80px;
    display: block;
}
.nav-links {
    margin-left: auto;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
    vertical-align: middle;
}
.navbarblank{
    height: 100px;
    background-color: #000000;
}
.carousel {
    position: relative;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.carousel-item img {
    width: 100%;
    vertical-align: middle;
    max-height: 578px;
    object-fit: cover;
}
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    margin: 50px;
    text-align: left;
    box-sizing: border-box;
    border-radius: 20px;
}
.carousel-caption h1 {
    margin: 0 0 10px 0;
    font-size: 3em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.carousel-caption h2 {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.5;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.shop-section {
    text-align: center;
}
.shop-button{
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: white;
    background-color: #0e1013;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    margin: 20px;
}
.footer {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 20px 0;
    height: 200px;
}
.footer p {
    margin: 0;
    padding-bottom: 10px;
}
.footer a{
    color: #ffffff;
    text-decoration: underline;
}