/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Playfair Display', serif;
  background-color: #0b0b0b;
  color: #f0f0f0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('assets/images/20230404_120826.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay */
.overlay {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* Fog effect (animated gradient blur) */
.fog {
  position: absolute;
  top: 0; left: 0;
  height: 100%; width: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  animation: moveFog 20s infinite alternate ease-in-out;
  z-index: 2;
}

@keyframes moveFog {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}

/* Content */
.content {
  position: relative;
  z-index: 3;
  text-align: center;
  animation: fadeIn 2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #000);
}

.title {
  font-family: 'UnifrakturCook', cursive;
  font-size: 4.5em;
  color: #f0e6d2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.subtitle {
  font-size: 1.3em;
  margin: 10px 0 30px;
  font-style: italic;
  color: #ccc;
}

.button {
  display: inline-block;
  padding: 12px 28px;
  background-color: #3b0a0a;
  color: #fff;
  text-decoration: none;
  border: 2px solid #700;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(100,0,0,0.6);
  transition: all 0.3s ease;
}

.button:hover {
  background-color: #5e0f0f;
  transform: scale(1.05);
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 20px;
  font-size: 2em;
  color: #999;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}


