/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #0a0a0a;
  color: #e0e0e0;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ccc;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e63946;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #fff;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('pics/pic_2.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(10, 10, 10, 1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #e63946;
  margin-bottom: 40px;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.6), 0 0 40px rgba(230, 57, 70, 0.3);
  animation: taglineFadeIn 1.5s ease 0.5s both;
  border-top: 1px solid rgba(230, 57, 70, 0.4);
  border-bottom: 1px solid rgba(230, 57, 70, 0.4);
  padding: 12px 30px;
  display: inline-block;
}

@keyframes taglineFadeIn {
  from {
    opacity: 0;
    letter-spacing: 15px;
  }
  to {
    opacity: 1;
    letter-spacing: 6px;
  }
}

.btn-primary {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 40px;
  border: 2px solid #e63946;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #e63946;
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 15px auto 0;
}

/* ===== About ===== */
.about {
  background: #111;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #bbb;
}

.about-text p:last-child {
  color: #e63946;
  font-weight: 600;
  font-size: 1.15rem;
}

/* ===== Gallery ===== */
.gallery {
  background: #0a0a0a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ===== Contact ===== */
.contact {
  background: #111;
}

.contact-card {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #bbb;
}

.contact-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.contact-email {
  margin-top: 15px;
}

.contact-email a {
  color: #e63946;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-email a:hover {
  border-color: #e63946;
}

/* ===== Impressum ===== */
.impressum {
  background: #0a0a0a;
}

.impressum-toggle {
  max-width: 800px;
  margin: 0 auto;
}

.impressum-summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.impressum-summary::-webkit-details-marker {
  display: none;
}

.toggle-icon {
  font-size: 0.7em;
  transition: transform 0.3s ease;
  display: inline-block;
  margin-left: 8px;
}

details[open] .toggle-icon {
  transform: rotate(180deg);
}

.impressum-content {
  margin-top: 30px;
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.8;
}

.impressum-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 35px;
  margin-bottom: 10px;
}

.impressum-content h3:first-child {
  margin-top: 0;
}

.impressum-content p {
  margin-bottom: 12px;
}

.impressum-content a {
  color: #e63946;
  transition: opacity 0.3s ease;
}

.impressum-content a:hover {
  opacity: 0.8;
}

/* ===== Footer ===== */
.footer {
  background: #0a0a0a;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.social-links a {
  color: #888;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #e63946;
  transform: translateY(-3px);
}

.copyright {
  color: #555;
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    letter-spacing: 3px;
  }
}
