/* global-placeholder.css */
@import url('/fonts.css');
@import url('/tailwind.css');
@import url('/app/global.css');

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.hero-container {
    min-height: 100vh;
    background-image: url('/assets/img/pool-water-texture-abstract-cartoon-style-illustration-vector (1).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.logo {
    color: black;
    font-size: 1rem;
    font-weight: 700;
    /* margin-bottom: 3rem; */
    /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); */
}

/* .logo::before {
    content: "▲";
    margin-right: 0.5rem;
    font-size: 2rem;
} */

.main-title {
    color: black;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    /* text-shadow: 0 4px 20px rgba(0,0,0,0.1); */

    padding-top: 0rem !important;
}

.music-covers-container {
    perspective: 1200px;
    width: 100%;
    max-width: 900px;
    height: 300px;
    position: relative;

    margin-bottom: 2.5rem;
}

.music-cover {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #333;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.music-cover:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    cursor: pointer;
}

.cover-1 {
    background-image: url('/assets/img/records/WITH U (choosed).jpg');
    background-size: cover;
    background-position: center;
    color: transparent;
    
    left: -30px;
    top: 50px;
    transform: rotateY(-15deg) rotateX(5deg);
    z-index: 1;
}

.cover-2 {
    background-image: url('/assets/img/records/Cover-Final-JPG.jpg');
    background-size: cover;
    background-position: center;
    color: transparent;

    left: 150px;
    top: 0;
    transform: rotateY(-8deg) rotateX(-2deg);
    z-index: 3;
}

.cover-3 {
    background-image: url('/assets/img/records/DANCE WITH ME (jpg).jpg');
    background-size: 102.5%;
    background-position: center;
    color: transparent;

    left: 350px;
    top: 30px;
    transform: rotateY(0deg) rotateX(0deg);
    z-index: 5;
}

.cover-4 {
    background-image: url('/assets/img/records/IDGAFAI-JPG-15rausch.jpg');
    background-size: cover;
    background-position: center;
    color: transparent;

    left: 550px;
    top: 10px;
    transform: rotateY(8deg) rotateX(-3deg);
    z-index: 3;
}

.cover-5 {
    background-image: url('/assets/img/records/Cover-JPG.jpg');
    background-size: cover;
    background-position: center;
    color: transparent;

    left: 720px;
    top: 60px;
    transform: rotateY(15deg) rotateX(5deg);
    z-index: 1;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

.floating-animation:nth-child(2) {
    animation-delay: -1s;
}

.floating-animation:nth-child(3) {
    animation-delay: -2s;
}

.floating-animation:nth-child(4) {
    animation-delay: -3s;
}

.floating-animation:nth-child(5) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(var(--rotate-y, 0deg)) rotateX(var(--rotate-x, 0deg)); }
    50% { transform: translateY(-20px) rotateY(var(--rotate-y, 0deg)) rotateX(var(--rotate-x, 0deg)); }
}

.cover-1 { --rotate-y: -15deg; --rotate-x: 5deg; }
.cover-2 { --rotate-y: -8deg; --rotate-x: -2deg; }
.cover-3 { --rotate-y: 0deg; --rotate-x: 0deg; }
.cover-4 { --rotate-y: 8deg; --rotate-x: -3deg; }
.cover-5 { --rotate-y: 15deg; --rotate-x: 5deg; }

/* Responsive design | global-placeholder.css */

/* Desktop | 1281px - 1440px  */
@media (max-width: 1280px) {
  /* None, coded on macbook m1 pro */
}

/* Medium Laptop/Desktop | 1515px - 1920px */
@media (max-width: 1515px) {
 /* None, coded on macbook m1 pro */
}

/* Small Laptop/Desktop | 1024px - 1280px */
@media (max-width: 1024px) {
  /* None, coded on macbook m1 pro */
}

/* Mobile Small Portrait (Normal) | up to 480px */
@media (max-width: 480px) and (orientation: portrait) {
  .main-title {
    font-size: 2.5rem;
    margin-bottom: 5rem;
  }
  
  .hero-container {
    height: 250px !important;
  }
  
  .music-covers-container {
    max-width: 100% !important;
    height: 250px !important;
  }
  
  .music-cover {
    width: 120px !important;
    height: 120px !important;
  }
  
  .cover-1 {
    left: 60px !important;
    top: 100px !important;
  }
  
  .cover-2 {
    left: 70px !important;
    top: -20px !important;
  }
  
  .cover-3 {
    left: 130px !important;
    top: 40px !important;
  }
  
  .cover-4 {
    right: 70px !important;
    left: auto !important;
    top: -20px !important;
  }
  
  .cover-5 {
    right: 60px !important;
    left: auto !important;
    top: 100px !important;
  }
}

/* Mobile Small Landscape (Seitlich gehalten) | up to 950px */
@media (max-width: 950px) and (orientation: landscape) {
    .hero-container {
        padding: 0.5rem;
    }
    
    .logo {
        font-size: 0.875rem;
        margin-bottom: 0rem;
    }
    
    .main-title {
        font-size: 3rem;
        margin-bottom: 0rem;
    }
    
    .music-covers-container {
        transform: scale(0.6);
        height: 140px;
        margin-bottom: 1rem;
    }
}

/* Mobile Large Portrait (Normal) | 481px - 600px */
@media (min-width: 481px) and (max-width: 600px) and (orientation: portrait) {
  .main-title {
    font-size: 3rem;
    margin-bottom: 5rem;
  }
  
  .hero-container {
    height: 300px !important;
  }
  
  .music-covers-container {
    max-width: 100% !important;
    height: 280px !important;
  }
  
  .music-cover {
    width: 140px !important;
    height: 140px !important;
  }
  
  .cover-1 {
    left: 80px !important;
    top: 110px !important;
  }
  
  .cover-2 {
    left: 100px !important;
    top: -10px !important;
  }
  
  .cover-3 {
    left: 180px !important;
    top: 50px !important;
  }
  
  .cover-4 {
    right: 100px !important;
    left: auto !important;
    top: -10px !important;
  }
  
  .cover-5 {
    right: 80px !important;
    left: auto !important;
    top: 110px !important;
  }
}

/* Tablet Portrait (Normal) | 601px - 1024px */
@media (min-width: 601px) and (max-width: 1024px) and (orientation: portrait) {
  .main-title {
    font-size: 4.5rem;
    margin-bottom: 6rem;
  }
  
  .hero-container {
    height: 400px !important;
  }
  
  .music-covers-container {
    max-width: 100% !important;
    height: 350px !important;
  }
  
  .music-cover {
    width: 180px !important;
    height: 180px !important;
  }

    .cover-1 {
    left: 50px !important;
    top: 40px !important;
  }
  
  .cover-2 {
    left: 170px !important;
    top: 50px !important;
  }
  
  .cover-3 {
    left: 330px !important;
    top: 30px !important;
  }
  
  .cover-4 {
    right: 170px !important;
    left: auto !important;
    top: 50px !important;
  }
  
  .cover-5 {
    right: 50px !important;
    left: auto !important;
    top: 40px !important;
  }
}

/* Tablet Landscape (Seitlich gehalten) | 951px - 1366px */
@media (min-width: 951px) and (max-width: 1366px) and (orientation: landscape) {
    .hero-container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .main-title {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
    
    .music-covers-container {
        transform: scale(0.75);
        height: 250px;
        margin-bottom: 1.5rem;
    }
}