/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ================= LOGIN PAGE ================= */

.login_container {

  min-height: 100vh;

  width: 100%;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  padding: 20px;
}

/* BOX LOGIN */
.login_form {
  width: 100%;
  max-width: 400px;
  background: #0d0d0d;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
}

/* INPUT */
.login_form input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #000;
  color: #fff;
  font-size: 14px;
}

.login_form input::placeholder {
  color: #888;
}

.login_form input:focus {
  outline: none;
  border: 1px solid #D4AF37;
}

/* BUTTON */
.login_form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(45deg, #B8860B, #D4AF37);
  color: #000;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.login_form button:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* TITLE */
.login_container h2 {
  color: #D4AF37;
  margin-bottom: 20px;
  text-align: center;
  font-size: 2rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* DESCRIPTION */
.login_description {
  font-size: 13px;
  color: #bbb;
  text-align: center;
  margin-top: 15px;
  max-width: 400px;
}

/* ================= MENU PAGE ================= */

.menu_container {
  min-height: 100vh;
  width: 100%;

  background: #000;

  display: flex;
  flex-wrap: wrap;

  justify-content: center;
  align-items: center;

  gap: 25px;

  padding: 40px 20px;
}

/* MENU TITLE */
.menu_title {
  width: 100%;

  color: #D4AF37;
  font-size: 38px;

  text-align: center;

  margin-bottom: 10px;

  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* MENU CARD */
.menu_card {
  width: 320px;

  background: transparent;

  border-radius: 25px;

  text-decoration: none;

  overflow: hidden;

  transition: 0.3s ease;

  animation: fadeUp 0.8s ease;
}

/* IMAGE FULL */
.menu_card img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;

  border-radius: 25px;

  transition: 0.4s ease;
}

/* HOVER */
.menu_card:hover {
  transform: translateY(-5px) scale(1.03);
}

.menu_card:hover img {
  transform: scale(1.03);
}

/* ================= BIRTHDAY PAGE ================= */

.container {
  min-height: 100vh;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 20px;
}

/* TEXT */
.one,
.two,
.three,
.five p,
.nine p,
.wish-hbd,
.wish h5 {
  color: #fff;
}

/* GOLD TITLE */
.wish-hbd {
  color: #D4AF37;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* TEXT BOX */
.four .text-box {
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
  background: #0d0d0d;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #fff;
  padding: 15px;
  border-radius: 15px;
}

/* FAKE BUTTON */
.text-box .fake-btn {
  background: linear-gradient(45deg, #B8860B, #D4AF37);
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
}

/* IMAGE */
.six img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* ================= ANIMATION ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  /* LOGIN */
  .login_container h2 {
    font-size: 1.8rem;
  }

  .login_form {
    max-width: 100%;
  }

  /* MENU */
  .menu_container {
    flex-direction: column;
    flex-wrap: nowrap;

    gap: 14px;

    padding: 20px;
  }

  .menu_title {
    font-size: 28px;
  }

  .menu_card {
    width: 90%;
    max-width: 320px;
  }

  /* BIRTHDAY */
  .one {
    font-size: 2rem;
  }

  .three {
    font-size: 1.5rem;
  }

  .five p,
  .nine p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .wish-hbd {
    font-size: 1.6rem;
  }

  .idea-6 span {
    font-size: 4rem;
  }

  .wish h5 {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

/* ================= MUSIC PAGE ================= */

.music_container {
  min-height: 100vh;
  width: 100%;

  background: #000;

  padding: 40px 25px;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* TITLE */
.music_title {
  width: 100%;

  color: #D4AF37;
  font-size: 40px;

  text-align: center;

  margin-bottom: 15px;

  text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);

  animation: fadeUp 1s ease;
}

/* MUSIC CARD */
.music_card {
  width: 320px;

  background: rgba(18, 18, 18, 0.95);

  border-radius: 24px;

  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.15);

  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);

  transition: all 0.35s ease;

  animation: fadeUp 0.8s ease;

  position: relative;
}

/* HOVER */
.music_card:hover {
  transform: translateY(-8px) scale(1.03);

  box-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
}

/* COVER */
.music_cover {
  width: 100%;
  height: 320px;

  object-fit: cover;

  display: block;
}

/* INFO */
.music_info {
  padding: 20px;
}

/* SONG TITLE */
.music_info h3 {
  color: #fff;
  font-size: 24px;

  margin-bottom: 5px;
}

/* ARTIST */
.music_info p {
  color: #D4AF37;

  font-size: 15px;

  margin-bottom: 18px;
}

/* AUDIO */
.music_info audio {
  width: 100%;
  height: 42px;

  border-radius: 30px;

  outline: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .music_container {
    padding: 25px 16px;

    gap: 18px;
  }

  .music_title {
    font-size: 30px;
  }

  .music_card {
    width: 100%;
    max-width: 340px;
  }

  .music_cover {
    height: auto;
  }
}

.music_info {
  text-align: center;
}

.music_info h3 {
  text-align: center;
}

.music_info p {
  text-align: center;
}

/* ===== BACK BUTTON ===== */

.back_btn {
  position: fixed;
  top: 20px;
  left: 20px;

  z-index: 999;

  padding: 10px 18px;

  background: linear-gradient(45deg, #B8860B, #D4AF37);

  color: #000;
  text-decoration: none;
  font-weight: 600;

  border-radius: 12px;

  transition: 0.3s ease;

  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.back_btn:hover {
  transform: translateY(-3px);
}

/* ================= MESSAGE PAGE ================= */

.message_container {
  min-height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  padding: 20px;

  background: #000;
}

/* PHOTO */

.message_photo {
  width: 130px;
  height: 130px;

  object-fit: cover;

  border-radius: 50%;

  border: 3px solid #D4AF37;

  margin-bottom: 25px;

  box-shadow: 0 0 25px rgba(212,175,55,0.35);

  animation: floating 3s ease-in-out infinite;
}

/* CARD */

.message_card {

  width: 100%;
  max-width: 500px;

  background: #0d0d0d;

  border-radius: 25px;

  padding: 35px;

  text-align: center;

  border: 1px solid rgba(212,175,55,0.25);

  box-shadow: 0 0 30px rgba(212,175,55,0.12);

  animation: fadeUp 1s ease;
}

/* TITLE */

.message_title {

  color: #D4AF37;

  margin-bottom: 25px;

  font-size: 2rem;

  text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

/* TEXT */

.typing_text {

  color: #fff;

  font-size: 1.1rem;

  line-height: 1.8;

  min-height: 90px;

  margin-bottom: 30px;
}

/* BUTTON */

.next_btn {

  padding: 12px 24px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(45deg,#B8860B,#D4AF37);

  color: #000;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;
}

.next_btn:hover {

  transform: translateY(-3px) scale(1.03);
}

/* FLOATING */

@keyframes floating {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* RESPONSIVE */

@media (max-width: 480px){

  .message_title{
    font-size: 1.5rem;
  }

  .typing_text{
    font-size: 1rem;
  }

  .message_card{
    padding: 25px;
  }

}

/* ===== MUSIC TOGGLE BUTTON ===== */

.music_toggle {

  position: fixed;

  top: 20px;
  right: 20px;

  z-index: 999;

  padding: 10px 16px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(45deg,#B8860B,#D4AF37);

  color: #000;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow: 0 0 15px rgba(212,175,55,0.25);
}

.music_toggle:hover {

  transform: scale(1.05);
}

/* ================= PHOTO PAGE ================= */

.photo_container {

  min-height: 100vh;

  background: #000;

  padding: 40px 20px;
}

/* TITLE */

.photo_title {

  text-align: center;

  color: #D4AF37;

  font-size: 38px;

  margin-bottom: 40px;

  text-shadow: 0 0 15px rgba(212,175,55,0.4);
}

/* GRID */

.photo_grid {

  display: grid;

  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));

  gap: 25px;

  max-width: 1100px;

  margin: auto;
}

/* CARD */

.photo_card {

  background: #111;

  border-radius: 25px;

  overflow: hidden;

  border: 1px solid rgba(212,175,55,0.15);

  transition: 0.4s ease;

  animation: fadeUp 0.8s ease;

  cursor: pointer;
}

/* IMAGE */

.photo_card img {

  width: 100%;

  height: 340px;

  object-fit: cover;

  display: block;

  transition: 0.4s ease;
}

/* TEXT */

.photo_card p {

  text-align: center;

  padding: 15px;

  color: #fff;

  font-size: 15px;
}

/* HOVER */

.photo_card:hover {

  transform: translateY(-8px);

  box-shadow: 0 0 25px rgba(212,175,55,0.2);
}

.photo_card:hover img {

  transform: scale(1.05);
}

/* MODAL */

.photo_modal {

  display: none;

  position: fixed;

  z-index: 999;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: rgba(0,0,0,0.9);

  justify-content: center;
  align-items: center;
}

/* MODAL IMAGE */

.modal_img {

  max-width: 90%;

  max-height: 90%;

  border-radius: 20px;
}

/* CLOSE */

.close_modal {

  position: absolute;

  top: 20px;
  right: 30px;

  color: #fff;

  font-size: 40px;

  cursor: pointer;
}

/* MOBILE */

@media(max-width:768px){

  .photo_title{
    font-size: 28px;
  }

  .photo_card img{
    height: 280px;
  }

}

.photo_desc{
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

/* NEXT PREV BUTTON */

.photo_next,
.photo_prev {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 65px;
  height: 65px;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 38px;

  color: #fff;

  background: rgba(0,0,0,0.45);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,0.15);

  border-radius: 50%;

  cursor: pointer;

  user-select: none;

  transition: 0.3s ease;

  z-index: 1000;
}

/* LEFT */

.photo_prev{
  left: 80px;
}

/* RIGHT */

.photo_next{
  right: 80px;
}

/* HOVER */

.photo_next:hover,
.photo_prev:hover{

  background: #D4AF37;

  color: #000;

  transform: translateY(-50%) scale(1.12);

  box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* MOBILE */

@media(max-width:768px){

  .photo_next,
  .photo_prev{

    width: 50px;
    height: 50px;

    font-size: 28px;
  }

  .photo_prev{
    left: 15px;
  }

  .photo_next{
    right: 15px;
  }

}

/* LOGOUT BUTTON */

.logout_btn{
  position: fixed;

  top: 25px;
  left: 25px;

  z-index: 999;

  text-decoration: none;

  background: linear-gradient(45deg, #B8860B, #D4AF37);

  color: #000;

  padding: 14px 24px;

  border-radius: 14px;

  font-weight: 600;

  box-shadow: 0 0 15px rgba(212,175,55,0.25);

  transition: 0.3s ease;
}

.logout_btn:hover{
  transform: translateY(-3px) scale(1.03);

  box-shadow: 0 0 25px rgba(212,175,55,0.4);
}

/* PLAYLIST BUTTON */

.playlist_controls{

  width: 100%;

  display: flex;

  justify-content: center;

  gap: 15px;

  margin-bottom: 20px;

  flex-wrap: wrap;
}

.playlist_controls button{

  padding: 12px 22px;

  border: none;

  border-radius: 12px;

  background: linear-gradient(45deg,#B8860B,#D4AF37);

  color: #000;

  font-weight: 600;

  cursor: pointer;

  transition: 0.3s ease;

  box-shadow: 0 0 15px rgba(212,175,55,0.25);
}

.playlist_controls button:hover{

  transform: translateY(-3px) scale(1.05);

  box-shadow: 0 0 25px rgba(212,175,55,0.4);
}