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

.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}


body, html {
  height: 100%; /* Full height for the layout */
  font-family: 'Montserrat', sans-serif; /* Apply Montserrat globally */
  overflow: hidden; /* Prevent scrolling */
}

/* Background video styling */
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Background layer */
}

.background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Covers entire background */
}

/* Content container */
.content {
  position: absolute;
  top: 50%;
  left: 10%; /* Keeps the content aligned to the left */
  transform: translateY(-50%); /* Vertically center the content */
  display: flex; 
  flex-direction: column; /* Stack elements vertically */
  justify-content: center; /* Vertically center the group */
  align-items: center; /* Center elements horizontally within the container */
  text-align: center; /* Ensure text is centered */
  color: #fff;
}

/* Title Styling */
.text-section h1 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem; /* Adjusted to look balanced */
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 20px; /* Space between title and the next section */
}

/* Album Section */
.album-section {
  margin-top: 10px;
}

.album-section img {
  width: 250px; /* Proper size for album cover */
  height: auto; /* Maintain aspect ratio */
  border: 2px solid #fff; /* White border for styling */
  margin-bottom: 20px; /* Space below album cover */
}

.album-section p {
  font-size: 1.5rem;
  margin: 10px 0; /* Spacing for text */
}

/* Button Styling */
.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #000;
  background: #fff;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.button:hover{
  background-color: #ccc; /* Hover effect */
}

/* Footer styling */
footer {
  position: absolute;
  bottom: 20px;
  width: 100%; /* Ensures the footer spans the entire width */
  text-align: center; /* Centers the content inside the footer */
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content {
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for horizontal and vertical centering */
    align-items: center; /* Center child elements horizontally */
    text-align: center; /* Center the text */
  }

  .text-section h1 {
    font-size: 2rem; /* Reduce title size for smaller screens */
  }

  .album-section img {
    width: 150px; /* Shrink album cover size */
  }

  .album-section p {
    font-size: 1rem; /* Adjust text size */
  }

  .button {
    font-size: 0.8rem; /* Adjust button size */
  }
}