html, body {
    height: 100%;
}

body {
    font-family: Arial;
    background: #e2e2e2;
    color: #000;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1;
}


h1, h2, h3, p {
    margin: 5px 0;
}

section {
    padding: 10px 0;
}


.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}


header {
    background: #222;
    color: white;
    padding: 10px;
}

.logo {
    font-size: 22px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.menu li a {
    color: white;
    text-decoration: none;
}

.menu li a:hover {
    color: red;
}


.hero {
    background: url("img/Supra.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px 10px;
    color: white;
    text-align: center;
}

.btn {
    background: red;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
}


.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.card {
    background: white;
    border: 1px solid #bbb;
    width: 280px;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card h3,
.card p {
    padding: 10px;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.gallery-item {
    background: white;
    border: 1px solid #bbb;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 10px;
    font-weight: bold;
}


.table-section table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table-section th,
.table-section td {
    border: 1px solid #aaa;
    padding: 8px;
}

.table-section th {
    background: red;
    color: white;
}


.lists-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.lists-wrapper div {
    background: white;
    padding: 15px;
    border: 1px solid #bbb;
    width: 260px;
}


.media-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.media-text,
.media-sounds {
    background: white;
    padding: 15px;
    border: 1px solid #bbb;
    width: 300px;
}

.form-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-form {
    background: white;
    padding: 15px;
    border: 1px solid #bbb;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    padding: 8px;
    border: 1px solid #bbb;
    width: 100%;
}

.contact-form input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
}

.contact-form button {
    background: red;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background: #a61f1f;
}


footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: auto;
}


@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
    }

    .cards,
    .lists-wrapper,
    .media-box {
        flex-direction: column;
    }

    .gallery {
        grid-template-columns: 1fr;
    }
}
