/* styles.css */

:root {
  --background-color: #121212;
  --surface-color: #1e1e1e;
  --text-color: #e0e0e0;
  --accent-color: #b34242;
  --link-hover: #e56b6b;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: var(--surface-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1em 0;
  border-bottom: 1px solid #333;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--accent-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--link-hover);
}

.hero {
  position: relative;
  height: auto;
  max-height: 600px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.5);
  transform: scale(1.1);
}

.hero-foreground {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.hero-text h1 {
  font-size: 2.5em;
  margin: 0.2em 0;
}

.hero-text p {
  font-size: 1.2em;
  margin: 0;
}

.slideshow {
  background: #181818;
  padding: 2em 0;
}

.slideshow-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.slide {
  display: none;
  width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.fade {
  animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.content {
  background: var(--surface-color);
  padding: 2em 1em;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}

.left, .right {
  flex: 1;
  min-width: 280px;
}

.site-footer {
  background: #101010;
  color: #aaa;
  text-align: center;
  padding: 1.5em 0;
  font-size: 0.9em;
  border-top: 1px solid #333;
  position: sticky;
  bottom: 0;
  width: 100%;
}

@media (max-width: 768px) and (orientation: portrait) {
  .hero-text h1 {
    font-size: 1.8em;
  }
  .hero-text p {
    font-size: 1em;
  }
  .two-column {
    flex-direction: column;
  }
  .site-header .container {
    flex-direction: column;
    gap: 0.5em;
    align-items: center;
  }
  .logo {
    width: 100%;
    text-align: center;
  }
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding-top: 0.5em;
  }
}

@media (max-width: 480px) {
  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1em;
  }
  .logo {
    font-size: 1.2em;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .site-footer {
    position: static;
  }
  .site-header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    text-align: left;
    width: auto;
  }
  .nav-links {
    width: auto;
    justify-content: flex-end;
  }
}
