/* Make the banner cover the entire screen */
#hero {
  height: 100vh; /* full viewport height */
  background: url('images/WhatsApp\ Image\ 2025-09-27\ at\ 07.50.49_fd894141.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

/* Add a soft dark overlay (for readability) */
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Position text above overlay */
.lunatic {
  position: relative;
  z-index: 2;
}

.lunatic h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.lunatic p {
  font-size: 1.5rem;
  opacity: 0.9;
}

.lunatic .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.lunatic .btn:hover {
  background: #fff;
  color: #000;
}

/* Image with caption styles */
.image-with-caption {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.profile-figure {
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 10px; 
  margin-top: 20px;
  flex-wrap: wrap;
}

.profile-figure img {
  max-width:400px;
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 8px;
 
}

.profile-figure figcaption {
  margin-top: 0.5rem;
  color: #646363;
  font-size: 0.95rem;
  opacity: 0.9; /* semi-transparent caption text */
}

/* Text shadow utilities - add one of these classes to any text element */
.text-shadow {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}
.text-shadow-soft {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.35);
}
.text-shadow-strong {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
}

/* Apply a tasteful shadow to the hero heading; you can remove or override this if you prefer */
.lunatic h1 {
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
}

/* Optional global h1 font-family (valid property) */
h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: white;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
   letter-spacing: -0.2px;
   text-shadow: #333 2px 2px 4px;
}
.p1 p {
    font-family: 'Arial', sans-serif;
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.button-gallery {
    font-family: 'Arial', sans-serif;
    background-color: #8eac93;
    color: white;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 3rem; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
   
}
.button-gallery:hover {
    background-color: #ff0000;
}

.button-songs {
    font-family: 'Arial', sans-serif;
    background-color: #8eac93;
    color: white;
    padding: 20px 30px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 3rem;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
   
}
.button-songs:hover {
    background-color: #ff0000; }