/* Web font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;700&display=swap');

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background-color: #1a1a1a;
    color: white;
}

/* HEADER */
header {
    background: #000000;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    margin: 0 10px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

header nav a:hover {
    color: rgb(84, 5, 5);
}

/* LOGO */
.logo {
    height: 60px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
}

/* GRID SECTIONS */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.card {
    background: #590101;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

/* GALLERY */
.gallery img {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* CONTACT FORM */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    border-radius: 8px;
    border: none;
}

.required {
    color: #ff3333;
}

button {
    padding: 12px;
    background: #b30000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #000000;
}

.socials a {
    color: #ff4d4d;
    margin: 0 8px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
    }

    header nav {
        margin-top: 10px;
    }
}
