body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}
main {
  padding-bottom: 160px;
}

/* Header */
.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.5rem 2rem;
  background: linear-gradient(90deg, #d32f2f, #ff9800, #ffeb3b),
              repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 8px);
  background-blend-mode: overlay;
  position: sticky;
  top: 0;
  z-index: 100;
  letter-spacing: 0.05em;
}
.logo img {
  height: 60px;
  width: auto;
  background: transparent;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  position: relative;
}
.nav-links a:visited {
  color: red;
}
.nav-links a:hover {
  color: yellow;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: yellow;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.tagline {
  margin-top: 0.5rem;
  text-align: center;
  color: black;
  font-style: italic;
  font-size: 0.9rem;
}

/* Carousel */
.carousel {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
}
.slides {
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slides img {
  max-height: 350px;
  width: auto;
  border-radius: 10px;
  display: none;
}
.slides img.active {
  display: block;
}
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  font-size: 1.5rem;
  color: #fff;
  padding: 0.5rem;
  cursor: pointer;
}
#prev { left: 1rem; }
#next { right: 1rem; }

/* Profile */
.profile {
  width: 80%;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

/* Contact Form */
.contact-form {
  width: 80%;
  max-width: 400px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #fff;
}
.contact-form button {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  background: linear-gradient(90deg, red, orange, yellow);
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.9);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cookie-banner.show {
  transform: translateY(0);
}

/* Footer */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  z-index: 100;
}
.footer-nav {
  margin-bottom: 1rem;
}
.footer-nav a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-icons a {
  color: #fff;
  margin-left: 0.5rem;
  font-size: 1.2rem;
}
.footer-icons a:hover {
  color: orange;
}