/* STYLE SECTIONING TAGS */
body {
  margin: 0;
  padding: 0;
  background: none;
  width: 100vw;
  min-height: 100vh;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

/* STYLE IMAGES */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.logo-image {
  position: fixed;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: auto;
  z-index: 300;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.leaves-image {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  object-fit: cover;
  transform-origin: top center;
  animation: gentleSway 12s cubic-bezier(0.4, 0.0, 0.6, 1.0) infinite;
}

.cloud-left {
  position: fixed;
  top: -100px;
  left: -350px;
  width: 1500px;
  height: auto;
  z-index: 100;
  animation: cloudFloatLeft 20s ease-in-out infinite;
}

.cloud-right {
  position: fixed;
  top: -200px;
  right: -400px;
  width: 1600px;
  height: auto;
  z-index: 100;
  animation: cloudFloatRight 30s ease-in-out infinite;
}

.sparkle-image {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 450;
  object-fit: cover;
  animation: sparkleGlow 16s ease-in-out infinite;
}

.panda-bottom-right {
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 1350px;
  height: auto;
  z-index: 400;
}

.login-button {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: none;
  border: none;
  padding: 0;
  z-index: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.login-button:hover {
  transform: translate(-50%, 50%) scale(1.08);
}

.login-button:active {
  transform: translate(-50%, 50%) scale(0.98);
}

.login-image {
  width: 240px;
  height: auto;
  display: block;
  transition: filter 0.2s ease;
  filter: brightness(1) saturate(1);
  pointer-events: none;
}

.login-button:hover .login-image {
  filter: brightness (1.1) saturate (1.1);
}
.login-button:active .login-image {
  filter: brightness(0.9);
}

.shine-image {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 450;
  object-fit: cover;
  animation: shineShimmer 14s ease-in-out infinite;
  transform: scale(1);
}

/* CALENDAR */ 
.calendar-widget {
  position: fixed;
  bottom: 40px;
  left: 60px;
  background: transparent;
  border-radius: 0;
  padding: 20px;
  box-shadow: none;
  backdrop-filter: none;
  border: none;
  z-index: 500;
  min-width: 150px;
  text-align: left;
}

.calendar-date {
  font-size: 56px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
}

.calendar-date #month {
  color: white;
  margin-right: 16px;
}

.calendar-date #day {
  color: white;
}

.calendar-time {
  font-size: 96px;
  color: white;
  font-weight: 600;
}

/* ANIMATIONS */
@keyframes gentleSway {
  0%, 100% {
    transform: rotate(0deg) scale(1) translateX(0px) translateY(0px);
  }
  
25% {
    transform: rotate(3deg) scale(1.008) translateX(12px) translateY(-6px);
  }
  50% {
    transform: rotate(-2.5deg) scale(1.006) translateX(-10px) translateY(4px);
  }
  75% {
    transform: rotate(4deg) scale(1.01) translateX(15px) translateY(-8px);
  }
}

@keyframes cloudFloatLeft {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(50px);
  }
}

@keyframes cloudFloatRight {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-60px);
  }
}

@keyframes sparkleGlow {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
    filter: brightness(2.5) contrast(2) saturate(1.5);
  }
  25% {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
    filter: brightness(3.2) contrast(2.5) saturate(2);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(-3deg);
    filter: brightness(4) contrast(3) saturate(2.5);
  }
  75% {
    opacity: 1;
    transform: scale(1.08) rotate(8deg);
    filter: brightness(3.5) contrast(2.8) saturate(2.2);
  }
}

@keyframes shineShimmer {
  0%, 100% {
    opacity: 0.9;
    filter: brightness(6) contrast(4) saturate(3) hue-rotate(0deg);
    transform: scale(1.2) rotate(0deg);
  }
  25% {
    opacity: 1;
    filter: brightness(8) contrast(5) saturate(4) hue-rotate(5deg);
    transform: scale(1.4) rotate(2deg);
  }
  50% {
    opacity: 1;
    filter: brightness(10) contrast(6) saturate(5) hue-rotate(10deg);
    transform: scale(1.5) rotate(-3deg);
  }
  75% {
    opacity: 1;
    filter: brightness(9) contrast(5.5) saturate(4.5) hue-rotate(7deg);
    transform: scale(1.35) rotate(4deg);
  }
}


/* ABOUT PAGE */
.room-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 75vh;
  object-fit: cover;
  object-position: center -5%;
  z-index: 1;
}

.portfolio-header {
  position: relative;
  top: 0;
  width: 100%;
  background: white;
  padding: 10px 0 20px 0;
  z-index: 100;
  text-align: center;
}

.showcase-logo {
  width: 500px;
  height: auto;
  margin: 0 0 20px 0;
  padding-top: 30px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(20%) saturate(1000%) hue-rotate(350deg) brightness(90%) contrast(95%);
}

.centered-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  padding: 15px 40px;
}

.centered-nav .nav-link {
  color: #442625;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.centered-nav .nav-link:hover {
  color: #6a4d4b;
  transform: translateY(-2px);
}

.content-section {
  position: relative;
  top:0;
  background: white;
  padding: 60px 40px;
  z-index: 100;
  min-height: 40vh;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.content-title {
  font-size: 36px;
  font-weight: 600;
  color: #442625;
  margin-bottom: 30px;
}
.content-text {
  font-size: 18px;
  line-height: 1.6;
  color: #442625;
  max-width: 800px;
  margin: 0 auto;
}
.portfolio-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 20px 40px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-title {
  margin: 0;
  font-size: 28px;
  font-weight: 600; 
  color: white;
}
.nav-links {
  display: flex;
  gap: 30px;
  margin-top: 15px;
  margin-right: 10px;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: rgba(255,255,255,0.8);
}

.about-section,
.skills-section,
.showcase-section {
  margin-top: 100px;
  padding: 400px 20px;
}

.about-section {
  margin-top: 75vh;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #442625;
  text-align: center;
  margin-bottom: 40px;
}
.contact-title {
  text-align: left;
  font-weight: 800;
  margin-top: -650px;
  margin-bottom: 30px;
}

.about-title {
  text-align: left; 
  font-weight: 800;
  margin-top: -650px;
  margin-bottom: -10px;
}

.about-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.about-text {
  margin-top: 20px;
  padding-right: 150px;
  font-size: 16px;
  line-height: 1.8;
  flex: 1;
}
.about-image {
  flex-shrink: 0;
  margin-top: -40px;
  position: realtive;
  left: -50px;
}
.about-gif {
  width: 320px;
  height: auto;
  border-radius: 10px;
}
.white-divider {
  width: 80%;
  height: 2px;
  background: white;
  margin: 60px auto;
  border-radius: 1px;
}
.music-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.skills-grid {
  flex: 1;
}

.records-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-right: 50px;
  justify-items: center;
  margin-top: -400px;
  max-width: 500px;
}

.record-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.record-image {
  width: 200px;
  height: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.record-label {
  font-size: 14px;
  color: #442625;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

.record-image:hover {
  animation: spin 1s linear infinite;
}

.record-image.playing {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.music-image {
  flex-shrink: 0;
  margin-left: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recordplayer-image {
  width: 680px;
  height: auto;
  border-radius: 10px;
  margin-top: -300px;
  position: relative;
  z-index: 10;
}

.player-label {
  font-size: 16px;
  color: #442625;
  margin: 15px 0 0 0;
  text-align: center;
  font-weight: 500;
}
.player-image {
   width: 670px;
    height: auto;
    border-radius: 10px;
    display: none;
    position: absolute;
    z-index: 1;
    top: -50px;
    left: 5px;
  }

.player-image.active {
  display: block;
  transform: translateY(-250px);
}

/*RESPONSIVE */
@media (max-width: 768px) {
  .logo-image {
    width: 300px;
  }

  .leaves-image {
    width: 150px;
    left: 50px;
  }
.cloud-left,
  .cloud-right {
    width:200px;
  }

  .sparkle-image {
    width: 60px;
  }
  .panda-bottom-right {
    width: 140px;
    bottom: 30px;
    right: 30px;
  }

  .calendar-widget {
    top: 20px;
    right: 20px;
    padding: 15px;
    min-width: 120px;
  }

  .calendar-date {
    font-size: 20px;
  }
  
  .calendar-time {
    font-size: 14px;
  }

  .login-button {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    width: 250px;
    top: 40px;
  }
  .leaves-image {
    width: 120px;
    left: 20px;
    top: 120px;
  }

  .sparkle-image {
    width: 50px;
    top: 150px;
    right: 100px;
  }

  .panda-bottom-right {
    width: 120px;
    bottom: 20px;
    right: 20px;
  }
  .calendar-widget {
    top: 15px;
    right: 15px;
    padding: 10px;
    min-width: 100px;
  }
  .calendar-date {
    font-size: 18px;
  }
  .calendar-time {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .portfolio-header {
    padding: 30px 0 20px 0;
  }

  .showcase-logo {
    width: 400px;
    margin-bottom: 15px;
  }

  .centered-nav {
    gap: 40px;
    padding: 0 20px;
  }

  .centered-nav .nav-link {
    font-size: 14px;
  }

  .portfolio-nav {
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }

  .portfolio-title {
    font-size: 25px;
  }
  .nav-links {
    margin-right: 0;
    gap: 20px;
  }

  .nav-link {
    font-size: 16px;
  }

  .content-sections {
    top: 100vh;
    padding: 40px 20px;
  }

  .content-title {
    font-size: 28px;
  }
  .content-text {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-section,
  .skills-section,
  .showcase-section {
    margin-top: 60px;
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .portfolio-header {
    padding: 20px 0 15px 0;
  }

  .showcase-logo {
    width: 280px;
    margin-bottom: 10px;
  }

  .centered-nav {
    gap: 20px;
    padding: 0 15px;
    flex-wrap: wrap;
  }

  .centered-nav .nav-link {
    font-size: 12px;
  }

  .portfolio-nav {
    padding: 10px 15px;
  }

  .portfolio-title {
    font-size: 20px;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-link {
    font-size: 14px;
  }

  .content-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .content-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .about-section,
  .skills-section,
  .showcase-section {
    margin-top: 40px;
    padding: 20px 10px;
  }

  .white-divider {
    width: 90%;
    margin: 40px auto;
  }
}