* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
    
  }
  body {
    background: linear-gradient(135deg, #1a1a1a, #3b3b3b) fixed;
    color: #fff;
    overflow-x: hidden;
    background-image: url(e61ebf71-32dc-4871-8a32-bf56a81a44e7.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    background-color: white;
    color: #27391C;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
   
  }
  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(30px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
button:hover {
  cursor: url('heart_b2.cur'), auto;
}

.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: fixed;
  top: 250px;
  left: 50%;
  transform: translateX(-50%) scale(3);
  font-weight: 900;
  font-size: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: all 0.6s ease-in-out;
  cursor: grab;
}

.logo-text {
  display: block;
  transition: opacity 0.2s ease;
  
}

.logo-image {
  display: none;          /* hidden initially */
  width: 200px;
  height: auto;
  transition: width 0.3s ease, height 0.3s ease;
}

.logo.shrink {
  top: 20px;
  left: 30px;
  transform: scale(1);
  font-size: 24px;
}

.logo.shrink .logo-text {
  display: none;
}

.logo.shrink .logo-image {
  display: block;
}
.logo-image.shrink {
  width: 500px; /* increased from 100px */
}


/* 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:3px
}

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

.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;
        display: flex;
  gap: 20px;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
    }
}

  .logo {
    top: 250px; /* move higher */
    transform: translateX(-50%) scale(1.5); /* 👈 smaller */
    font-size: 32px; /* reduce text size */
  }
  .logo.shrink {
    top: 15px;
    left: 15px;
    transform: scale(0.9); /* slightly smaller */
    font-size: 18px;
  }


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


/* 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: 100vh; /* keep full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0; /* remove any bottom margin */
  padding-top: 400px;
}

/* 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 {
    padding: 100px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    cursor: pointer;
  }
  
  .card {
    background: rgba(255, 255, 255, 0.07) fixed;
    padding:30px;
    border-radius: 20px;
    backdrop-filter: blur(0px);
    transition: 0.3s;
  }
  .card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12) fixed;
  }
  .card-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    bottom: 3%;
  }
  
  /* Image */
  .card-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
  }
  
  .cards-title {
    position: fixed;
    bottom:2%;
    left: 35%; 
    color:  #27391C;
    font-size: 16px;
    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)fixed;
    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 */
  }
  
  
  .card2-section{
    padding: 0px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .card2 {
    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;
  }
 
  
  @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;
  cursor: pointer;
}

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

.big-footer-text {
  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);
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #1c1c1c;
  border-radius: 10px;
}

.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);
}

button:hover {
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=86197,), pointer;
}


/* Overlay background */
#product-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
}

/* Expanded product container */
.product-container {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 30px;
  max-width: 800px;
  width: 90%;
  text-align: center;
  position: relative;
   /* Initial smaller size */
   transform: scale(0.8);  /* slightly smaller before expansion */
   opacity: 0;
   transition: transform 0.5s ease, opacity 0.5s ease;
}

#product-overlay.active .product-container {
  transform: scale(1);
  opacity: 1;
}

/* Close button */
#close-product {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

/* Product image */
.product-container img {
    width: 100%;
    max-width: 400px;   /* fixed max width */
    height: 400px;      /* fixed height for all images */
    object-fit: cover;  /* crops or scales the image to fill box */
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Options */
.product-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.product-options select {
  padding: 8px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

/* Add to Cart button */
#add-to-cart {
  padding: 15px 25px;
  font-size: 18px;
  background: #27391C;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}

#add-to-cart:hover {
  background: #3b5a1c;
}

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

/* =========================
   MEETING POINT SECTION
========================= */

.meeting-section {
  width: 100%;
  padding: 120px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.meeting-card {
  width: 100%;
  max-width: 1300px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  border-radius: 30px;
  overflow: hidden;

  padding: 30px;
}

.meeting-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.meeting-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 20px;
  opacity: 0.7;
}

.meeting-text h2 {
  font-size: 58px;
  line-height: 1;
  margin-bottom: 25px;
  color: #27391C;
}

.meeting-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 35px;
  color: #27391C;
}

.meeting-button {
  width: fit-content;
  padding: 14px 28px;

  border-radius: 50px;

  text-decoration: none;
  background: #27391C;
  color: white;

  font-weight: bold;
  letter-spacing: 1px;

  transition: 0.3s ease;
}

.meeting-button:hover {
  transform: translateY(-3px);
  background: #3b5a1c;
}

.meeting-map {
  height: 500px;
  border-radius: 25px;
  overflow: hidden;
}

/* MOBILE */
@media screen and (max-width: 900px) {

  .meeting-card {
    grid-template-columns: 1fr;
  }

  .meeting-text h2 {
    font-size: 42px;
  }

  .meeting-map {
    height: 350px;
  }
}