/* Global Styles */
html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
  background-color: #3b2a22;
  background-image: url('https://www.transparenttextures.com/patterns/leather.png');
  background-blend-mode: multiply;
  background-size: 400px;
  background-attachment: fixed;
  color: #f5e6b3; /* warm beige text */
  font-family: 'Poppins', sans-serif;
   
}

.intro {
  background: linear-gradient(to bottom, #4a3425 0%, #2a1d13 100%);
  color: #f8f3e7;
  padding: 100px 20px; /* Adds breathing room top/bottom + side spacing */
  font-family: 'Playfair Display', serif;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.2);
}

.intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #d4af37, #f9e79f);
 -webkit-background-clip: text; /* Works in Chrome/Safari/Edge */
  background-clip: text;         /* Standard property for linting/compatibility */
  -webkit-text-fill-color: transparent; /* Required for WebKit */
  color: transparent; 
}

.intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f8f5f0;
  opacity: 0.9;
}

/* AOS Enhancement for smoother motion */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.carousel::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #4a3425 100%);
  pointer-events: none;
  z-index: 2;
}

.intro {
  margin-top: 20px; /* not needed when fade is applied */
  padding-top: 120px; /* adds breathing space without visible gap */
}


.product-card {
  background: linear-gradient(135deg, #ffffff, #f5f2ef);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(90, 56, 37, 0.15);
}
.product-card:hover {
  box-shadow: 0 10px 25px rgba(90, 56, 37, 0.3);
  transform: translateY(-6px);
}
.product-card .btn-primary {
  background: linear-gradient(135deg, #5a3825, #7a4f35);
  color: #f5e6b3;
  border: none;
}
.product-card .btn-primary:hover {
  background: linear-gradient(135deg, #7a4f35, #5a3825);
  box-shadow: 0 4px 10px rgba(90, 56, 37, 0.3);
}


/* Navbar */
/* Mega menu styling */
.mega-menu:hover .mega-menu-content {
  display: block;
}

.mega-menu-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background: #000;
  border-top: 2px solid #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.mega-menu-content .dropdown-item {
  padding: 4px 0;
  font-size: 14px;
}

.mega-menu-content h6 {
  margin-bottom: 8px;
  font-size: 15px;
}

@media (max-width: 991px) {
  /* On mobile, dropdown opens normally */
  .mega-menu-content {
    position: static;
    box-shadow: none;
    border: none;
    display: block;
    padding: 0;
  }
}
/* Dropdown Menu Styling */
.dropdown-menu {
  min-width: 220px;
  padding: 10px;
  border-radius: 8px;
}

/* Shop Now Button inside Dropdown */
.dropdown-menu .btn-danger {
  border-radius: 6px;
  font-weight: bold;
  padding: 8px 0;
  transition: 0.3s;
}

.dropdown-menu .btn-danger:hover {
  background-color: #b30000;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }

  .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

.leather-navbar {
     background: linear-gradient(to bottom, #4a3425 0%, #2a1d13 100%);
    backdrop-filter: blur(6px);
    padding: 1rem 2rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease;
  }

  .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #d4af37 !important;
    letter-spacing: 1px;
  }

  .nav-link {
    color: #f5e6b3 !important;
    font-weight: 500;
    margin-left: 1rem;
    transition: color 0.3s, transform 0.3s;
  }

  .nav-link:hover,
  .nav-link.active {
    color: #d4af37 !important;
    transform: translateY(-2px);
  }

  .dropdown-menu-dark {
    background: #5a3825;
    border: none;
    border-radius: 10px;
  }

  .dropdown-item {
    color: #f5e6b3 !important;
    transition: all 0.3s ease;
  }

  .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37 !important;
  }

  .btn-gold {
    background: linear-gradient(135deg, #5a3825, #7a4f35);
    color: #f5e6b3;
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    transition: 0.3s;
  }

  .btn-gold:hover {
    background: linear-gradient(135deg, #7a4f35, #5a3825);
    color: #d4af37;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
  }

  .navbar-toggler {
    border-color: #d4af37;
  }

  .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  /* Ensure dropdown appears above carousel */
.navbar,
.navbar .dropdown-menu {
  z-index: 1050 !important;
  position: relative;
}


/*nav {
    background: #000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(192, 192, 192, 0.2); /* subtle metallic shadow 
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #d62828;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c0c0c0; /* metallic accent */

/* Hero Section */
.hero {
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #222222 ;
}

.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* smooth fade */
}

.slideshow img.active {
    opacity: 1;
}
#slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Center text on each slide */
.carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3); /* Slight overlay */
  text-align: center;
  padding: 20px;
}

/* Responsive height for mobile */
@media (max-width: 768px) {
  #slider img {
    height: 250px;
  }
  .carousel-caption h1 {
    font-size: 20px;
  }
  .carousel-caption p {
    font-size: 14px;
  }
}
#slider {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Images full width and height responsive */
#slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Adjust height for mobile */
@media (max-width: 768px) {
  #slider img {
    height: 250px;
  }
}

.hero-card {
    background: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
    z-index: 2;
}

.hero-card h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.hero-card p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #d62828;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}

.btn:hover {
    background: #da9946;
    color: #f5c843; /* yellow highlight */
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #000;
}

.feature {
    text-align: center;
    margin: 10px;
    padding: 20px;
    border: 1px solid #c0c0c0; /* metallic border */
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #ffc107; /* yellow highlight on hover */
}


/* Products */
.products {
    padding: 50px;
    text-align: center;
}

.products h2 {
    color: #d62828; 
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product img {
    width: 100%;
    border-radius: 5px;
}

.product h3 {
    margin-top: 10px;
    color: #ffc107cb;
}

.product p {
    font-size: 14px;
    color: #c0c0c0;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 50px;
    background-color: #1a1a1a;
    text-align: center;
}

.testimonials h2 {
    color: #d62828;
    margin-bottom: 30px;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    font-style: italic;
    border: 1px solid #c0c0c0;
}

/* Newsletter */
.newsletter {
    padding: 50px;
    text-align: center;
    background-color: #111;
}

.newsletter h2 {
    color: #d62828;
}

.newsletter p {
    color: #c0c0c0;
    margin-bottom: 20px;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.newsletter button {
    padding: 10px 20px;
    background-color: #ffc107bd;
    border: none;
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background-color: #d62828;
    color: white;
}

.icon {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/*shop css*/
.shop {
    padding: 120px 20px 50px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    max-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    border-radius: 8px;
}

.product-card:hover {
    transform: scale(1.05);
    background-color: #795b3f;
    box-shadow: #b71c1c;
}

.product-card button {
    background: red;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.product-card button:hover {
    background: #ffc107;
}
/* Shop Banner */
.shop-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0,0,0,0.7)), url('./shop-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-top: 60px;
}

.shop-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.shop-banner p {
    font-size: 1.2rem;
}

/* Shop Grid */
.shop {
    padding: 50px 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Product Card */
.product-card {
   background: #222;
    padding: 15px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}


.product-card img {
    width: 370px;
    height: 220px;
    object-fit: contain;
    height: auto; 
    
}

.product-card h3 {
    font-size: 1.2rem;
    margin: 15px 0 5px;
}

.product-card .price {
    font-size: 1.1rem;
    color: red;
    font-weight: bold;
}

.product-card button {
    background: linear-gradient(90deg, #944b1a, #cf6d0b);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.product-card button:hover {
    background: linear-gradient(90deg, #cf6d0b, #944b1a);
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/*contact css*/
/* Contact Banner */
.contact-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./contact-banner.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
}

.contact-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-banner p {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 20px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.contact-form h2 {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form button {
    background: linear-gradient(90deg, #ff0000, #ff7f00);
    border: none;
    color: rgb(2, 2, 2);
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: linear-gradient(90deg, #ff7f00, #ff0000);
}

/* Contact Info */
.contact-info {
    background: #f9f9f9;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    margin: 8px 0;
    
}
.categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
}

.category {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.category img {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #f1f1f1;
    padding: 10px;
    margin-bottom: 5px;
    object-fit: cover;
    transition: transform 0.3s;
}

.category:hover img {
    transform: scale(1.1);
}

.category p {
    margin: 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .categories {
        gap: 15px;
    }
    .category img {
        width: 60px;
        height: 60px;
    }
    .category p {
        font-size: 12px;
    }
}
body { font-family: Arial, sans-serif; }
    /*.navbar { background-color: #333; }
    .navbar-brand, .nav-link, .navbar-toggler-icon { color: #fff !important; }*/
    .hero { padding: 80px 20px; background: url('https://via.placeholder.com/1400x400?text=Welcome+to+Our+Store') center/cover no-repeat; text-align: center; }
    .carousel-item img { height: 1000px; object-fit: cover; }
    .category-card, .product-card { border-radius: 8px; padding: 15px; text-align: center; background-color: #a56b3c; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
    .cart-count { background-color: red; color: white; border-radius: 50%; padding: 2px 6px; font-size: 12px; margin-left: 4px; }
    footer { background-color: #333; color: #fff; padding: 20px; text-align: center; margin-top: 50px; }
   
    /* For mobile adjustment */
@media (max-width: 768px) {
  .colour {
    height: auto;
    padding: 50px 20px;
    font-size: 2rem;
  }
}



/* cards big in hero*/
.custom-card {
  height: 300px;          /* Same height for all cards */
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.custom-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;       /* Makes the image cover full area */
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(60%);
}
@media (max-width: 768px) {
  .custom-card {
    height: 250px;        /* Slightly smaller cards on mobile */
  }
}


.collection-card {
  position: relative;
  overflow: hidden;
}

.collection-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.overlay h3 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  font-weight: 600;
}
/*
.overlay .btn {
  margin-top: 10px;
  background: white;
  color: black;
  border: none;
  padding: 8px 18px;
  font-weight: 500;
  text-transform: uppercase;
}
*/

/* Responsive Adjustments */
@media (max-width: 768px) {
  .collection-card img {
    height: 250px;
  }
  .overlay h3 {
    font-size: 1.1rem;
  }
  /* 2 per row on mobile */
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

#collections {
  margin-top: 50px; /* adjust space as needed */
}
/*six boxes button style */
.btn-colour{
background-color: #97693e;
color: #000;
}
.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 2s infinite ease-in-out;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float img {
  width: 60%;
}

.whatsapp-float:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
/*footer styling*/
footer a:hover {
    color: #ffc107 !important;
  }
  .social-icon:hover {
    color: #0dcaf0 !important;
    transform: scale(1.2);
    transition: 0.3s;
  }
  .subscribe-form input {
    border-radius: 50px;
    padding: 10px;
    width: 100%;
    border: none;
    margin-bottom: 10px;
  }
  .subscribe-form button {
    border-radius: 50px;
    padding: 10px;
  }
  @media(min-width: 768px){
    .subscribe-form input {
      margin-bottom: 0;
      width: 70%;
      display: inline-block;
    }
    .subscribe-form button {
      width: 28%;
      display: inline-block;
    }
  }

