/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; }

/* Navbar */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5rem 0.2rem; 
    background: #1a1a1a; 
    color: #fff;display: flex;
 }
 
.nav-links { list-style: none; display: flex; gap: rem; }
.nav-links a { color: #fff; text-decoration: none; }


/* Hero */
.hero { text-align: center; padding: 4rem 2rem; background: linear-gradient(to right, #e3f9e5, #c4f0c5);
font-family: "Fira Sans", sans-serif;
 }
.hero h2 { font-size: 2.5rem; margin-bottom: 1rem;
font-family: "Fira Sans", sans-serif; }
.btn { background: #44842e; color: #fff; padding: 0.75rem 1.5rem; border: none; border-radius: 5px; cursor: pointer; }
.hero {
  background: background-color #BE7663; /* soft gradient example */
  color: #000000; /* text color for contrast */
  padding: 5rem 0; /* keeps vertical spacing */
  text-align: center;
}

/* Products */
.products { padding: 2rem; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.product-card { border: 1px solid #ddd; padding: 1rem; border-radius: 8px; background: #fff; }

/* Newsletter */
.newsletter { padding: 2rem; text-align: center; background: #f4f4f4; }
.newsletter form { display: flex; justify-content: center; gap: 1rem; }

/* B2B */
.b2b { padding: 2rem; background: #fafafa; text-align: center; }
.b2b form { display: flex; flex-direction: column; gap: 1rem; max-width: 400px; margin: auto; }

/* Footer */
footer { text-align: center; padding: 1rem; background: #1a1a1a; color: #fff; }

/* Cart Modal */
.cart-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.cart-content { background: #fff; margin: 10% auto; padding: 2rem; width: 300px; border-radius: 8px; position: relative; }
#close-cart { position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 1.5rem; }

/* Product Detail */
.product-detail { padding: 2rem; }
.product-container { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; }
.product-image img { max-width: 400px; width: 100%; border-radius: 8px; }
.product-info { flex: 1; }
.product-info h2 { font-size: 2rem; margin-bottom: 1rem; }
.product-info .price { font-size: 1.5rem; color: #008060; margin: 1rem 0; }

/* Add subtle hover for artist image */
.artist-img {
  transition: transform 0.3s ease;
}
.artist-img:hover {
  transform: scale(1.05);
}
.homepage-carousel .carousel-item img {
  height: 400px;          /* adjust as needed */
  object-fit: cover;       /* crops image nicely without distortion */
  width: 100%;
}

@media (max-width: 768px) {
  .homepage-carousel .carousel-item img {
    height: 250px;         /* smaller height for mobile */
  }
}

.carousel-caption {
  bottom: 20px;            /* moves caption up a bit */
  background-color: rgba(0,0,0,0.35); 
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}
.homepage-carousel .carousel-item img {
  height: 350px;         /* moderate height */
  object-fit: cover;
  width: 100%;
}

.homepage-carousel .carousel-item {
  min-height: 350px;
}

.carousel-control-prev,
.carousel-control-next {
  filter: invert(100%);   /* makes the arrows white if needed */
}

@media (max-width: 768px) {
  .homepage-carousel .carousel-item img {
    height: 200px;        /* smaller on mobile */
  }
}
.card-img-top {
  height: 100px;        /* same height for all product images */
  object-fit: cover;     /* crop instead of stretching */
  width: 100%;           /* full width of the card */
}
/* Carousel Images */
.homepage-carousel .carousel-item img {
  height: 350px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .homepage-carousel .carousel-item img {
    height: 200px;
  }
}

/* Featured Members */
.featured-members img {
  max-width: 150px;
}

/* Card images uniform */
.card-img-top {
  height: 250px;
  object-fit: cover;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #ffe6f0, #e6fff5);
  border-radius: 12px;
  padding: 3rem 2rem;
}
.img-artist {
  width: 100%;              /* responsive */
  max-width: 400px !important; /* force bigger size */
  aspect-ratio: 1 / 1;      /* ensures square */
  object-fit: cover;        /* crop to fit nicely */
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  font-family: "Fira Sans", sans-serif;

body {
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}
}
}
h2 {
  font-family: 'Special Gothic Expanded One', sans-serif;
}

/* Buttons */
.btn-success {
  background-color: #4CAF50;
  border-color: #4CAF50;
}
.btn-success:hover {
  background-color: #45A049;
  border-color: #45A049;
}

/* Luxury / high-end button style */
.btn-custom {
  background: linear-gradient(135deg, #1a1a1a, #333); /* sleek gradient */
  color: #fff;
  border: none;
  font-family: "Fira Sans", sans-serif;
  border-radius: 50px; /* pill shape */
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: linear-gradient(135deg, #333, #1a1a1a);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
}

.btn-custom:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Luxury / high-end button style for items*/
.btn-custom2 {
  background: linear-gradient(135deg,  #1a1a1a, #333); /* sleek gradient */
  color: #fff;
  border: none;
  font-family: "Fira Sans", sans-serif;
  border-radius: 50px; /* pill shape */
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-custom2:hover {
  background: linear-gradient(135deg, #ae9e9e, #b7adad);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
}

.btn-custom2:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
/* Luxury / high-end button style for items*/
.btn-custom3 {
  background: linear-gradient(135deg,  #ea9191, #ec9f9f); /* sleek gradient */
  color: #fff;
  border: none;
  font-family: "Fira Sans", sans-serif;
  border-radius: 50px; /* pill shape */
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-custom3:hover {
  background: linear-gradient(135deg, #d26363, #e97979);
  color: #d97c7c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #f5f5f5;
}

.btn-custom3:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/* launching page --------------------------------*/
    body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: 'Roboto Flex', sans-serif;
      color: #fff;
      text-align: center;
    }



    /* Video Background */
    .video-bg {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.55); /* dark overlay for readability */
      z-index: 0;
    }

    .content {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      color: #ddd;
    }

    /* Logo */
    .logo {
      max-width: 180px;
      margin-bottom: 2rem;
    }

    /* Headings */
    h1 {
      font-family: 'Special Gothic Expanded One', sans-serif;
      font-size: 3rem;
      margin-bottom: 1rem;
      color: #ddd;
    }

    p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: #ddd;
      
    }

    /* Buttons */
    .btn-custom {
      background: #d25d40;
      border: none;
      padding: 0.8rem 2rem;
      font-size: 1.1rem;
      font-weight: 500;
      border-radius: 50px;
      transition: 0.3s;
      color: #fff;
      text-decoration: none;
      font-family: 'Roboto Flex', sans-serif;
    }
    .btn-custom:hover {
      background: #ee8469;
    }

    /* Forms */
    .email-input, .form-control {
      max-width: 400px;
      margin: 0 auto 1rem;
    }

    /* Sections */
    section {
      margin-top: 4rem;
    }

   footer {
  position: relative;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #aaa;
  background-color: rgba(0,0,0,0.55); /* ← note the colon and semicolon */
}

h2{
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}
