@font-face {
    font-family: 'Raleway';
    src: url('Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Katanas';
    src: url('fonts/Katanas76MCv21.ttf') format('truetype'); 
    font-weight: normal; 
    font-style: normal;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: rgb(32, 32, 32);
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

h2 {
    font-size: 32px;
    font-family: 'Katanas';
    text-shadow: 2px 2px 4px black
}


header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(12, 12, 12, 0.733);
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

header.sticky {
    position: fixed;
    background-color: rgba(12, 12, 12, 0.884);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-wrapper {
    width: 100%;
    max-width: 1440px;
}

h1 {
    font-size: 48px;
    color: red;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin: 0 20px;
}

.header-content img {
    opacity: 0.85;
    width: 128px;
    height: 128px;
}

.section1 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url(img/Katanas70.jpg);
    background-repeat: none;
    background-position: center;
    background-size: cover;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img {
    width: 600px;
    height: 600px;
    opacity: 0.5;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 6px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(119, 119, 119, 0.507);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.burger-menu:hover {
    scale: 1.2;
    transition: ease-in-out 0.3s;
}

.burger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
    transition: 0.3s;
}

.overlay {
    position: fixed;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(12, 12, 12, 0.856);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.5s ease-in-out;
    z-index: 999;
}

.overlay a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    margin: 16px 0;
    transition: 0.3s;
}

.overlay a:hover {
    color: red;
}

.overlay.show {
    top: 0;
}

.section2 {
    position: relative;
    margin-top: 20px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(img/street-4676115_1280.jpg);
    background-size: cover;
    background-position: center;
    z-index: 1;
    color: white;
}

.section2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.section3 {
    position: relative;
    margin-top: 20px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
    background-image: url(img/gesture-6842769_1280.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    z-index: 1;
}

.section3::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.section4 {
    position: relative;
    margin-top: 20px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
    background-image: url(img/cross-66700_1280.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    z-index: 1;
}

.section4::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.section5 {
    position: relative;
    margin-top: 20px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: black;
    background-image: url(img/harley-davidson-3982351_1280.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.section5::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.section6 {
    position: relative;
    margin-top: 20px;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.637);
    z-index: 1;
    color: white;
}

.rip-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.rip-container img {
    object-fit: cover;
    border-radius: 5px;
    width: 300px;
    height: 300px;
    border: solid white 2px;
}

.rip-container-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: scroll;
    margin: 0 20px;
    scroll-behavior: smooth;
}

.rip-container-wrapper::-webkit-scrollbar {
    height: 6px; 
}

.rip-container-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.rip-container-wrapper::-webkit-scrollbar-thumb {
    background-color: #888; 
    border-radius: 3px; 
}

.rip-container-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #888 transparent;
}


.mc-rip,
.mc-directions {
    width: 100%;
    font-size: 20px;
    color: white;
    margin: 0 10px;
}

.mc-info,
.mc-charity,
.mc-contact {
    width: 100%;
    font-size: 20px;
    max-width: 600px;
    color: white;
    margin: 0 20px;
}

.mc-contact p {
    font-size: 16px;
}

.mc-charity img {
    margin-top: 20px;
}

.clubhouse {
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}

.clubhouse:hover {
    scale: 1.1;
    transition: ease-in-out 0.3s;
}

.clubhouse-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: black;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 40px;
}

#contact-form input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
}

#contact-form textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    height: 80px;
    width: 100%;
}

#contact-form a {
    text-decoration: none;
}

#contact-form button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #0077cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
}

#form-feedback {
    margin-top: 10px;
    font-weight: bold;
    color: green;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.back-to {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: white;
    background-color: rgba(12, 12, 12, 0.733);
    width: 60px;
    height: 60px;
    border: solid white 1px;
    border-radius: 100%;
    cursor: pointer;
}

.back-to a {
    text-decoration: none;
    color: white;
}

.back-to:hover {
    scale: 1.1;
    background-color: black;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: white;
}

.footer-links a:hover {
    color: red;
}

.imprint {
    text-align: center;
    background-color: rgb(204, 204, 204);
    padding-top: 200px;
    padding-bottom: 80px;
    max-width: 800px;
}

.imprint-wrapper {
    display: flex;
    justify-content: center;
    background-color: rgb(204, 204, 204);
}

.imprint h1,
.imprint h2 {
    font-family: 'Raleway' !important;
    text-shadow: unset !important;
    font-size: 24px;
}

.imprint p {
    margin: 0 20px;
}

label {
    font-size: 16px;
}

input {
    width: 20px;
    height: 20px;
}

@media (max-width:649px) {

    .hero img {
        width: 400px;
        height: 400px;
        margin-right: 40px;
    }

    .header-content {
        padding: 5px 0;
    }

    .header-content img {
        width: 72px;
        height: 72px;
    }

    .back-to {
        background-color: black;
    }
}

@media (max-width:1649px) {
    .rip-container-wrapper {
        justify-content: unset;
    }

}

@media (max-width:449px) {

    .hero img {
        width: 300px;
        height: 300px;
    }
}

@media (max-width:379px) {

    .hero img {
        width: 250px;
        height: 250px;
        margin-right: 20px;
    }
}