/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body with background image + font */
body {
  background: url('images/catlock.jpeg') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Cinzel Decorative', serif;
  color: #1a1a1a;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Welcome container */
.welcome-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Title Styling */
.title {
  font-size: 2.8rem;
  color: #cfcec4;
   margin-top: 20rem;
  margin-bottom: 3rem;
  animation: fadeIn 2s ease-in forwards;
}

.subtitle {
  font-size: 2rem;
  color: #a88342;
    margin-top: 8rem;
  margin-bottom: 5rem;
  animation: fadeIn 2.5s ease-in forwards;
}

/* Enter Button */
.enter-button {
  display: inline-block;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #1a1a1a;
  padding: 1.2rem 3rem;
  border-radius: 40px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: fadeIn 3s ease-in forwards;
  margin-top: 10rem;
  margin-bottom: 30rem;
}

.enter-button:hover {
  background-color: #333;
  transform: scale(1.08);
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .enter-button {
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }
}

