* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
    
  }
  body {
    background: linear-gradient(135deg, #1a1a1a, #3b3b3b);
    color: #fff;
    overflow-x: hidden;
    background-image: url(e61ebf71-32dc-4871-8a32-bf56a81a44e7.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    height: auto;
    background-color: white;
    color: #27391C;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
   
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
/* HEADER */
header {
    width: 100%;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center; /* center everything by default */
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.logo {
    position: absolute; /* allows precise positioning */
    top: 0px;          /* distance from top */
    left: 0px;        /* distance from right */
    width: 170px;       /* adjust size */
    height: auto;
}



/* Center nav buttons */
.nav-links {
  display: flex;
  gap: 20px;
 align-items: center;
}

/* Icons right */
.nav-icons {
  position: absolute;
  right: 30px;
  display: flex;
  gap: 15px;
  top:20px
}

.icon-button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.icon-button img {
  width: 18px;
  height: 18px;
}

.search-wrapper {
  display: flex;
  align-items: center;
  gap: 3px; /* space between icon and input */
  background: rgba(255, 255, 255, 0.1); /* transparent navbar look */
  padding: 5px 5px;
  border-radius: 20px;
  border: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.search-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

#search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #27391C;
  font-size: 16px;
  width: 60px;
  transition: width 0.3s ease;
  margin-bottom: -5px;
}

#search-input::placeholder {
  color: #27391c6a;
  font-style: italic;
}

#search-input:focus {
  width: 160px; /* expands on focus */
}

#no-results {
  text-align: center;
  font-size: 18px;
}



/* NAV BUTTONS */
.nav-button {
    background: transparent;
    color: #27391C;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    
}

.nav-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1.5px;
    left: 0;
    bottom: 0;
    background-color: #27391C;
    transform-origin: center;
    transform: scaleX(1);
    transition: transform 0.25s ease;
}

.nav-button:hover::after {
    animation: flash-underline 0.3s ease forwards;
}

@keyframes flash-underline {
    0% { transform: scaleX(1); }
    40% { transform: scaleX(0); }
    60% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

/* RESPONSIVE (optional) */
@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 80px;
    }
}
.nav-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Hidden when logo is big */
.nav-links.hidden {
  opacity: 0;
  pointer-events: none; /* prevent clicking */
}

.container {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

/* NAV BUTTONS */
.nav-button {
  background: transparent;
  color: #27391C;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  font-family: 'Segoe UI', sans-serif;
  font-weight: bold;
  position: relative;
}

.nav-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.5px;
  left: 0;
  bottom: 0;
  background-color: #27391C;
  transform-origin: center;
  transform: scaleX(1);
  transition: transform 0.25s ease;
}

.nav-button:hover::after {
  animation: flash-underline 0.3s ease forwards;
}

@keyframes flash-underline {
  0% { transform: scaleX(1); }
  40% { transform: scaleX(0); }
  60% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

  
  .container {
    display: flex;
    flex-direction: column; /* change from column to row */
    align-items: center;
    justify-content: center;
    gap: 20px; /* spacing between buttons */
    margin-top: 50px;
}


.collections-button{
    position: relative;
    background-color: transparent;
    color: #27391C;
    width: 10rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
    font-size: 18px;
}

    .collections-button::after{
        content: '';
        position: absolute;
        width: 100%;
        height: 1.5px;
        left: 0;
        bottom: 0;
        background-color: #27391C;                       
        transform-origin: center;
        transform: scale(1);
        transition: transform .25s ease; 
    }

        .collections-button:hover::after{
            animation: none;
            animation: flash-underline 0.3s ease forwards;
        }

@keyframes flash-underline{
0% {
transform: scaleX(1);    /* full */
}
40% {
transform: scaleX(0);    /* disappears */
}
60% {
transform: scaleX(0);    /* stays hidden a bit */
}
100% {
transform: scaleX(1);    /* comes back */
}
}

   .collabs-button{
  position: relative;
  background-color: transparent;
  color: #27391C;
  width: 10rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

  .collabs-button::after{
      content: '';
      position: absolute;
      width: 100%;
      height: 1.5px;
      left: 0;
      bottom: 0;
      background-color: #27391C;                       
      transform-origin: center;
      transform: scale(1);
      transition: transform .25s ease; 
  }

  .collabs-button:hover::after{
          animation: none;
          animation: flash-underline 0.3s ease forwards;
      }

@keyframes flash-underline{
0% {
transform: scaleX(1);    /* full */
}
40% {
transform: scaleX(0);    /* disappears */
}
60% {
transform: scaleX(0);    /* stays hidden a bit */
}
100% {
transform: scaleX(1);    /* comes back */
}
}
.about-button{
  position: relative;
  background-color: transparent;
  color: #27391C;
  width: 10rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
}

  .about-button::after{
      content: '';
      position: absolute;
      width: 100%;
      height: 1.5px;
      left: 0;
      bottom: 0;
      background-color: #27391C;                       
      transform-origin: center;
      transform: scale(1);
      transition: transform .25s ease; 
  }

  .about-button:hover::after{
          animation: none;
          animation: flash-underline 0.3s ease forwards;
      }

@keyframes flash-underline{
0% {
transform: scaleX(1);    /* full */
}
40% {
transform: scaleX(0);    /* disappears */
}
60% {
transform: scaleX(0);    /* stays hidden a bit */
}
100% {
transform: scaleX(1);    /* comes back */
}
}
.contact-button{
  position: relative;
  background-color: transparent;
  color: #27391C;
  width: 10rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
  font-size: 20px;
}

  .contact-button::after{
      content: '';
      position: absolute;
      width: 100%;
      height: 1.5px;
      left: 0;
      bottom: 0;
      background-color: #27391C;                       
      transform-origin: center;
      transform: scale(1);
      transition: transform .25s ease; 
  }

  .contact-button:hover::after{
          animation: none;
          animation: flash-underline 0.3s ease forwards;
      }

@keyframes flash-underline{
0% {
transform: scaleX(1);    /* full */
}
40% {
transform: scaleX(0);    /* disappears */
}
60% {
transform: scaleX(0);    /* stays hidden a bit */
}
100% {
transform: scaleX(1);    /* comes back */
}
}
 /* Remove extra space after hero */
.hero {
  height: 20vh; /* keep full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0; /* remove any bottom margin */
}

/* Second image section right below */
.image-section {
  margin-top: -5px;  /* negative margin to eliminate gap */
  width: 100%;
  height: 70vh; /* slightly smaller than hero */
  margin: 0; /* no extra spacing */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the section */
  display: block;
}

  
  .hero h2 {
    font-size: 60px;
    animation: fadeIn 1.5s ease;
  }
  
  .card-section {
    
    display: grid;
    
    gap: 30px;
   
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
      
      border-radius: 10px;
    }
  
  .card {
    background: rgba(255, 255, 255, 0.07)fixed;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
    font-family: 'Segoe UI', sans-serif;
    font-size: large;
    text-align: justify;
    text-align-last: center;
    text-align: justify;
    margin: 0 auto;
    max-width: 1100px;
  
  }
  .card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
  }
  .card-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
  }
  
  /* Image */
  .card-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
   
  }
  
  .cards-title {
    position: absolute;
    top:-4%;
    left: 40%; 
    color:  #27391C;
    font-size: 20px;
    pointer-events: none; /* optional */
  
  }
  
  /* Overlay */
  .card-overlay {
    position: absolute;
    top: 70%;
    left: -100%;                    /* start offscreen */
    transform: translateY(-50%) rotate(-10deg); /* angled start */
    background: rgba(39, 57, 28, 0.8);
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 1;                      /* make visible */
    transition: all 0.5s ease;
  }
  
  /* Slide in on hover */
  .card-image:hover .card-overlay {
    left: 10px;                      /* slide into view */
    transform: translateY(-50%) rotate(0deg); /* straighten */
  }
  
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content */
.dropdown-content {
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 5px 0;
  border-radius: 10px;
  min-width: 100%;
  z-index: 50;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Keep dropdown visible when hovering the button OR the menu */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  width: 100%;
  text-align: center;
  color: #27391C;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  padding: 10px 0;
  transition: background 0.2s ease;
  border-radius: 5px;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.big-footer-text {
  margin-top: 100vh; /* pushes it further down */
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 120px 40px 20px; /* pushes it down */
}

.big-footer-text h1 {
  font-family: 'Segoe UI', sans-serif;
  font-size: clamp(80px, 18vw, 260px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: lowercase;
  color: #27391C;
  margin: 0;
}

/* Section that holds the logo */
.scroll-logo-section {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 60px 40px 20px;
}

/* Logo itself */
.scroll-logo {
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Image size */
.scroll-logo img {
  width: 60px; /* adjust size */
  height: auto;
  display: block;
}

/* Hover effect */
.scroll-logo:hover {
  opacity: 1;
  transform: translateY(-5px);
}


.music-footer-container {
  width: 100%;
  display: flex;
  justify-content: left; /* center horizontally */
  align-items: center;     /* center vertically */
  gap: 450px;               /* space between button and text */
  padding: 40px 20px;      /* spacing from bottom */
  box-sizing: border-box;
  flex-wrap: wrap;          /* wraps on small screens */
}

/* Footer text styling */
.footer-text {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #27391C;
  text-align: center;
  justify-content: right;
}

/* Small, compact Play Music button */
#music-btn {
  width: 50px;        /* fixed width */
  height: 50px;       /* fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  border: none;
  background: none;
}

#music-icon {
  display: inline-block;
  text-align: center;
  font-size: 12px;
}


#music-btn:hover {
  background: rgba(39, 57, 28, 0.2);
}
.main-content {
    min-height: 100vh; /* ensures content pushes footer down */
    display: flex;
    flex-direction: column;
  }
  
  button:hover {
    cursor: url(http://www.rw-designer.com/cursor-extern.php?id=86197,), pointer;
  }

  
  .center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20vh; /* Optional: center vertically too */
    margin-top: 10px;
  }
