@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');
html, body {
    background-image: url('https://glamorwood.com/wp-content/uploads/2025/01/African-blackwood.webp');
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
}
a {
    color: #bb86fc;
    text-decoration: none;
}
a:hover {
    color: #ffffff;
}
header, footer {
    background-color: #1e1e1e;
    padding: 20px;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
nav ul li {
    margin: 0 15px;
}
.container {
    width: 90%;
    margin: 20px auto;
}
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pizza-card {
    background-color: #1e1e1e;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pizza-card img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
    margin-bottom: 10px;
}
.pizza-card h3 {
    margin: 10px 0;
}
.pizza-card p {
    margin: 5px 0;
}
.btn {
    background-color: #bb86fc;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin: 5px;
    display: inline-block;
    text-transform: uppercase;
}
.btn:hover {
    background-color: #9a68c9;
}
.table {
    width: 100%;
    border-collapse: collapse;
    background-color: #121212;
}
.table th, .table td {
    padding: 10px;
    border: 1px solid #333;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #f5f5f5;
    border-radius: 5px;
}

/* Styles for filter form */
.filter-form {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.filter-form input[type="text"],
.filter-form input[type="number"] {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #f5f5f5;
    padding: 8px;
    border-radius: 5px;
}
.filter-form select {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #f5f5f5;
    padding: 8px;
    border-radius: 5px;
}
.filter-form .btn {
    padding: 8px 16px;
    margin: 0;
}

/* Social icons in footer */
.social-icons {
    margin-top: 10px;
}
.social-icons a {
    display: inline-block;
    margin: 0 10px;
    font-size: 20px;
    color: #bb86fc;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #ffffff;
}