* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #780b0b;
    color: white;
}

.banner {
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('banner-image.jpg');
    height: 100vh;
    background-size: cover; 
    background-position: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 0 3rem;
}

.banner img {
    max-width: min(360px, 70%);
    margin: 40px auto;
}

.banner h1 {
    font-family: 'Righteous', cursive; 
    font-size: 5rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); 
}

.banner p {
    font-family: 'Righteous', cursive;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); 
}

.about, .contact, .shop, .social-media {
    margin-bottom: 40px;
    text-align: center;
    color: #eee;
    padding: 2rem;
}

.contact h2 {
    font-family: 'Righteous', cursive;
    font-size: 2.6rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}
.contact p {
    font-family: 'Righteous', cursive; 
    max-width: 600px;
    margin: 0 auto 1.2rem auto;
    font-size: 1.6rem;
}

.contact a {
    text-decoration: none;
    color: #ffbaba;
 }

 .contact a:hover {
    color: #fff;
 }

.about p {
    font-family: 'Righteous', cursive;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: center;
    font-size: 1.2rem;
}

.about img {
    max-width: min(400px,70%);
    display: block;
    margin: 2rem auto;
}

.shop {
    background-color: #222;
}

.shop p {
    font-family: 'Righteous', cursive; 
    max-width: 600px;
    margin: 0 auto 1.2rem auto;
    font-size: 1.6rem;
}

.shop-button {
    margin-top: 1rem;
    padding: 15px 25px;
    background-color: #b22b2b; 
    color: white; 
    border: none; 
    border-radius: 5px;
    font-size: 16px; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

.shop-button:hover {
    background-color: #780b0b; 
}

a {
    text-decoration: none; 
}

.social-media {
    margin: 4rem;
}

.social-media a {
    color: #ffbaba;
    margin: 1rem;
    font-size: 4rem;
}

.social-media a:hover {
    color: #fff;
}

.partners img {
    display: block;
    max-width: 120px;
    margin: 0 auto 1rem auto;
}

footer {
    font-family: 'Righteous', cursive; 
    text-align: center;
    padding: 30px 0;
    background-color: #222;
}
