/* --- Basic Reset and Font --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: orange;
  line-height: 1.6;
  overflow: hidden;
}

/* --- Background Image and Blur Effect --- */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-image {
  background-image: url('images/bg.jpg'); /* Your hardware image path */
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  animation: backgroundPan 20s linear infinite;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to right, black 50%, transparent 80%);
  -webkit-mask-image: linear-gradient(to right, black 50%, transparent 80%);
  z-index: 1;
}

/* --- Content and Layout --- */
.content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Align content to the left */
  padding: 50px;
}

header {
  margin-bottom: 40px;
  text-align: left;
  animation: fadeInDown 1s ease-out;
}

header h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.detail-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.detail-card {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 500px;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.detail-card p {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  animation: fadeIn 1.5s ease-out forwards;
  opacity: 0;
  color: #fff;
}

.detail-card p span {
  font-weight: 700;
  color: #fff;
  display: inline-block;
  min-width: 150px;
}

/* --- Animations --- */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes backgroundPan {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* Delay for each detail line */
.detail-card p:nth-child(1) { animation-delay: 0.5s; }
.detail-card p:nth-child(2) { animation-delay: 0.7s; }
.detail-card p:nth-child(3) { animation-delay: 0.9s; }
.detail-card p:nth-child(4) { animation-delay: 1.1s; }