/* 
    CSS RESET
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: normal;
    font-size: 100%;
}

ul,
ol {
    list-style: none;
    
}

img,
video {
    width: 100%; max-width: 100%;
}

a {
    color: black;
    text-decoration: none;
}



/* 
    STYLES
*/

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #000000;
  color: #ffffff;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  background: transparent;  
  position: fixed;
  top: 0;
  z-index: 10;
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ccc;
  opacity: 0.6;
}



/* ---------- LOOKBOOK ---------- */


main.lookbook figure:hover {
  transform: scale(1.05);
}

main.lookbook h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

main.lookbook p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #787777;
}

.nav-logo {
  height: 40px;
  width: auto;
  position: fixed;   
  top: 5px;                
  right: 10px;             
}

.lookbook {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  overflow-y: hidden;
  height: 100%;
  scroll-snap-type: x mandatory;
  background-color: black;
  height: 100vh;
  margin: 0;
  padding: 0rem 5rem 0rem 10rem
}

.lookbook figure {
  width: 300px;
  margin: 0 1rem;
  transition: transform 0.3s ease;
  outline: none;
}

.lookbook img {
  border-radius: 10px;
  height: auto;
  cursor:cell;
}

.lookbook figcaption {
  margin-top: 0.5rem;
}

.image-strip {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}

.lookbook figure img {
  width: 250px;
  height: auto;
  transition: transform 0.3s ease;
}

.lookbook figure:focus-within img {
  transform: scale(2); 
  z-index: 5;
}

/* ---------- BEATS ---------- */

@media (max-width: 1200px) {
  main.feed {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  main.feed {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  main.feed {
    column-count: 1;
  }
}

.beats-page .beats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
}

.beats-grid img {
  width: 100%;
  height: 100%;
}


.blur-card img {
  transition:2s ease-out;
  filter: blur(0);
}

.blur-card:hover img {
  filter: blur(10px);
  opacity: 0.5;
}




/* ---------- Beat-Detailseiten ---------- */

body.beat-page main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}

body.beat-page img {
  max-width: 400px;
  width: 90%;
  height: auto;
}

.email-button {
  display: inline-block;
  size: 2cm;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.email-button:hover {
  transform: scale(4);
}

.header-nav {
  display: flex;
  justify-content: space-between; 
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.nav-left {
  font-size: 18px;
  text-decoration: none;
  color: white;
  padding-top: 0.5rem;
  padding-left: 1rem;
}

.adjustin-logo {
  height: 40px !important;
  width: auto !important; 
  transition: transform 0.3s ease, height 0.3s ease;
}

.adjustin-logo:hover {
  transform: scale(1.3);
}

.beat-detail-container {
  display: flex;
  align-items: center; 
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.side-button {
  color: rgb(0, 0, 0);
  font-size: 6rem;
  padding: 0rem 10rem;
  border-radius: 20px;
  transition: background-color 0.3s, transform 0.3s;
}

.side-button:hover {
  transform: scale(1.7);
  color: rgb(255, 255, 255);
opacity: 30%;
}


/* ---------- Footer ---------- */
footer {
  display: flex;
  justify-content: left;
  padding-left: 1rem;
  font-family: monospace;
  font-size: 8px;
  color: #ffffff;
  position: fixed;
  bottom: 0;
}


/* ---------- Landing Page ---------- */
.landing {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
}

.landing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headerlandingpage {
  display: flex;
  justify-content: flex-end;
  padding: 380px;
  background: transparent;  
  position:fixed;
  top: 0;
  z-index: 10;
}


