body {
    background: url('../image/page/rose.jpg') repeat;
    background-size: auto;
    background-attachment: fixed; /* ✅ keeps background fixed */
    position: relative;
}


body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* White fade */
    z-index: -1; /* Push behind content */
}

.alkatra {
  font-family: "Alkatra", system-ui;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-size: 19px;
  color: red;
}

 /* Custom navbar styling */
    .navbar {
      background: linear-gradient(45deg, #592cac, #38f9d7); /* Blue to Purple gradient */
      height: 42px;
    }
    .navbar-brand {
      font-weight: bold;
      font-size: 1.5rem;
      color: #ffffff !important;
      text-shadow: 0 1px 2px rgba(7, 7, 7, 0.8);
    }
    .navbar-nav .nav-link {
      color: rgb(255, 255, 255);
      font-weight: bold;
      margin-right: 15px;
      transition: 0.3s;
      cursor: pointer;
    }
    .navbar-nav .nav-link:hover {
      color: white;
      transform: scale(1.5);
      text-shadow: 0 1px 2px rgba(7, 7, 7, 0.8);

      
    }

    .atma-light {
  font-family: "Atma", system-ui;
  font-weight: 300;
  font-style: normal;
}

.atma-regular {
  font-family: "Atma", system-ui;
  font-weight: 400;
  font-style: normal;
}

.atma-medium {
  font-family: "Atma", system-ui;
  font-weight: 500;
  font-style: normal;
}

.atma-semibold {
  font-family: "Atma", system-ui;
  font-weight: 600;
  font-style: normal;
}

.atma-bold {
  font-family: "Atma", system-ui;
  font-weight: 700;
  font-style: normal;
}

.gradient-glow {
  border: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979, #17ead9, #6078ea);
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(238, 9, 121, 0.6);
}


    .bio-section
    {
      overflow: hidden; /* keeps wrapping tidy */
    }

    .bio-text {
      text-align: justify;   /* ✅ makes text justified */
      line-height: 1.8;      /* better readability */
    }

    .bio-imgleft
    {
      float: left;       /* image on left */
      width: 200px;      /* adjust size as needed */
      height: auto;
      margin: 0 15px 10px 0; /* spacing: right & bottom */
      border-radius: 6px;    /* optional rounded corners */
    }

    .bio-imgright {
    float: right;          /* image sits on the right */
    width: 200px;          /* adjust size */
    height: auto;
    margin: 0 0 10px 15px; /* spacing between text and image */
    border-radius: 6px;    /* optional rounded corners */
  }





  /* --------------------------  STYLE FOR AUDIO PLAYER -------------------------*/
  
/* === Player Box Styling === */
.player {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  width: 380px;
  text-align: center;
}

h3 {
  margin-bottom: 10px;
  color: #333;
}

#audio {
  width: 100%;
  margin: 10px 0;
}

/* === Controls in one row === */
.controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

/* === Button & Download Link Styling === */
button, a.download-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  border: none;
  color: #fff;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  flex: 1;
  margin: 0 5px;
  text-align: center;
}

button:hover, a.download-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* === Track Selector Styling === */
select {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}



