/* style.css */

  /*header*/
    .navbar-brand span {
      font-size: 1.25rem;
      font-weight: bold;
      color: #2c3e50;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      margin-left: 15px;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #007bff;
    }

    .navbar {
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }
 


/* Hero Section */
.hero-section {
  background: url('images/hero-bg.jpg') no-repeat center center/cover;
  height: 80px;
  margin-bottom:20px;
}
body {
  background-image: url('images/back.jpg'); /* Path to your image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Collections Banner */
.collections-banner {
  background: url('images/collections.jpg') no-repeat center center/cover;
  padding: 100px 0;
}

/* Product Cards */
.card img {
  height: 300px;
  object-fit: cover;
}

/* Shop Hero Section */
.shop-hero {
  background: url('images/shop-banner.jpg') no-repeat center center/cover;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*contact page*/
.contact-header {
  min-height: 300px;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: darken;
}

.contact-form-section h2 {
  font-weight: 700;
}

.form-control {
  border-radius: 0.375rem;
}

.btn-primary {
  background-color: #6c63ff;
  border: none;
}

.btn-primary:hover {
  background-color: #5a52d6;
}
/*footer*/

  
.socials a {
  display: inline-block;
  margin:  10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

