body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: white;
  color: #111;
}
header {
  background: url('/img/logo.png') no-repeat center/contain;
  height: 200px;
  width: 100%;
  background-position: center top;
}
.menu-toggle {
  display: none;
  font-size: 2rem;
  background-color: rgba(0,0,0,0.7);
  color: white;
  border: none;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 10;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #000;
}
nav a {
  color: white;
  padding: 15px 20px;
  text-decoration: none;
  background: linear-gradient(to right, #000, #222);
  margin: 5px;
  border-radius: 5px;
  box-shadow: inset -5px 0px 15px rgba(255,255,255,0.1);
}
nav a:hover {
  background: #440000;
}
nav a.active {
  background: #6b0000;
}
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    align-items: center;
  }
  nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
.content {
  text-align: center;
  padding: 2rem;
}
.highlight {
  color: #6b0000;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}
.gallery img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
footer {
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(0,0,0,1)), url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  background-color: #000;
  background-repeat: repeat;
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media(min-width: 600px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
  }
}
.footer-left, .footer-right {
  flex: 1;
  text-align: center;
}
.footer-center {
  flex: 1;
  text-align: center;
}
form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
input, textarea {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}
button[type="submit"] {
  background-color: #6b0000;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}
a {
  color: #6b0000;
  text-decoration: underline;
}
a:hover {
  color: #bbb;
}
button {
  padding: 0.5rem 1rem;
  border: none;
  background: #111;
  color: white;
  cursor: pointer;
}
button:hover {
  background: #6b0000;
}
form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
input, textarea {
  padding: 0.5rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}
button[type="submit"] {
  background-color: #6b0000;
  color: white;
  border: none;
  padding: 0.5rem;
  border-radius: 5px;
  cursor: pointer;
}