/* Music Header image */
.music-title-image {
  width: 90%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.body {
  background-image: url('IMG_6751.jpeg');
  background-size: auto;        /* Makes it fill the screen */
  background-position: center;   /* Centers it nicely */
  background-repeat: repeat;  /* No tiling */
  background-attachment: fixed;  /* Stays still when scrolling */
}


/* Music Layout (header, recent, main, social, interests, vibes,footer) */

.music-layout {
  max-width:1000px; 
  margin: 100px auto;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 250px 1fr 200px;
  
}

.music-header {
  background-color: pink;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  grid-row: 1/2;
  grid-column: 1/4;
}

/* Music Navigation bar container */
.tab-music-nav {
  display: flex;
  justify-content: space-evenly;
  background-color: #fdf6f0; /* cream */
  border-radius: 12px;
  padding: 12px;
  margin: 0 auto 20px auto;
  max-width: 850px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* subtle shadow for nav container */
  grid-row: 2/3;
  grid-column: 1/4;
  height: max-content;
}

/* Music Navigation links as retro typewriter buttons */
.tab-music-nav a {
  font-family: 'Courier New', Courier, monospace; /* typewriter font */
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  color: #4b2c4a; /* dark purple text */
  padding: 10px 20px;
  margin: 0 6px;
  border-radius: 6px;

  /* Button background */
  background-color: #ffd6eb; /* light pink pastel */
  border: 2px solid #ffb6c1;

  /* Layered 3D shadow for retro pixel look */
  box-shadow:
    0 4px 0 #ffb6c1,       /* vertical depth */
    0 0 2px rgba(0,0,0,0.1), /* soft outer glow */
    inset 0 -2px 0 rgba(255,255,255,0.5); /* subtle top highlight */

  transition: all 0.1s ease-in-out;
  position: relative;
}

/* Hover: lift + slight neon flicker effect */
.tab-music-nav a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #ffb6c1,
    0 0 4px rgba(0,255,255,0.4),
    inset 0 -2px 0 rgba(255,255,255,0.5);
  color: #ff69b4; /* neon pink flicker */
}

/* Active / pressed effect */
.tab-music-nav a:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 #ffb6c1,
    0 0 2px rgba(0,0,0,0.1),
    inset 0 -1px 0 rgba(255,255,255,0.5);
}


.music-recent {
  background-color: #e0c8ff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  grid-row: 3/4;
  grid-column: 1/2;
  height: max-content;
}

.music-main {
  background-image: url("IMG_6766.jpeg");
  background-size: auto;        /* Makes it fill the screen */
  background-position: center;   /* Centers it nicely */
  background-repeat: repeat;  /* No tiling */
  background-attachment: fixed;  /* Stays still when scrolling */
  padding: 30px;
  padding-top: 15px;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  grid-row: 3/4;
  grid-column: 2/3;
  height: max-content;
}
  
 
  /* Music Social bar container */
.tab-music-social {
  display: flex;
  flex-direction: column; /*stack children vertically */
  background-color: #fdf6f0; /* cream */
  border-radius: 12px;
  padding: 12px;
  margin: 0 auto 20px auto;
  max-width: 850px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* subtle shadow for social container */
  justify-content: center;
  grid-row: 3/4;
  grid-column: 3/4;
  height: max-content;
 
}

/* Music Social links as retro typewriter buttons */
.tab-music-social a {
  font-family: 'Courier New', Courier, monospace; /* typewriter font */
  font-weight: bold;
  font-size: 0.75rem;
  text-decoration: none;
  color: #4b2c4a; /* dark purple text */
  padding: 6px 12px;
  margin: 0px;
  border-radius: 6px;
    align-items: center;
  gap: 10px; /* space between buttons */
  

  /* Button background */
  background-color: #c8d4e5; /* light blue pastel */
  border: 2px solid #8089d2;

  /* Layered 3D shadow for retro pixel look */
  box-shadow:
    0 4px 0 #8089d2,       /* vertical depth */
    0 0 2px rgba(0,0,0,0.1), /* soft outer glow */
    inset 0 -2px 0 rgba(255,255,255,0.5); /* subtle top highlight */

  transition: all 0.1s ease-in-out;
  position: relative;
}

/* Music Social links as retro typewriter buttons */
.tab-music-social a {
  margin: 4px 0;      /* vertical spacing */
  white-space: nowrap; /* prevents wrapping */
  width: auto;         /* button width adjusts to text */
  max-width: 180px;    /* optional: limit extremely long buttons */
  text-align: center;
}

/* Hover: lift + slight neon flicker effect */
.tab-music-social a:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #ffb6c1,
    0 0 4px rgba(0,255,255,0.4),
    inset 0 -2px 0 rgba(255,255,255,0.5);
  color: #ff69b4; /* neon pink flicker */
}

/* Active / pressed effect */
.tab-music-social a:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 #ffb6c1,
    0 0 2px rgba(0,0,0,0.1),
    inset 0 -1px 0 rgba(255,255,255,0.5);
}



.music-footer {
  text-align: center;
  padding: 15px;
  background-color: #fdf6f0;
  color: #5a3e36;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  border-radius: 15px;
  grid-row: 5/6;
  grid-column: 1/4;
  height: max-content;
}
  