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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    text-align: center;
    padding: 30px 20px;
}

header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.tagline {
    color: #aaa;
    margin-top: 10px;
    margin-bottom: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: red;
}


.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
}

.card {
    position: relative;
    overflow: hidden;
}

.card img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
    font-size: 1.2rem;
}

.card:hover .overlay {
    opacity: 100;
}

.items-container {
    padding: 20px;
}

.item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.item img {
    width: 200px;
}

.item h2 {
    margin-bottom: 10px;
}

.item p {
    color: #ccc;
    margin-bottom: 5px;
}

.about {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    line-height: 1.6;
    color: #ccc;
}

.form-container {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 10px;
    border: none;
    outline: none;
}

button {
    padding: 10px;
    background: #111;
    color: #fff;
    border: 1px solid #fff;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: red;
    border-color: red;
}