/* Custom CSS for SUXUS FASHION Website */
:root {
  --primary-color: black;
  --secondary-color: #b31d1b;
  --accent-color: #e74c3c;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --light-bg: #f8f9fa;
  --dark-bg: #2c3e50;
}
.act {
  color: #b31d1b !important;
}
.white {
  color: white;
}

.custom-navbar {
  background-color: rgba(0, 0, 0, 0.95) !important;
}

.custom-footer {
  background-color: rgba(0, 0, 0, 0.95) !important;
}

/* Global Styles */
body {
  /* font-family: "Playfair Display", serif; */
  font-family: "Cinzel", serif;
  /* font-family: "DM Serif Text", serif; */
  /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
  /* font-family: SF Pro Display, SF Pro Icons, Helvetica Neue, Helvetica, Arial,sans-serif;; */
  line-height: 1.6;
  color: #333;
}

/* Navigation */
/* .nav-link{
    color: white !important;
} */
.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-background {
  background-color: var(--dark-bg) !important;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 500;
  color: white;
  transition: color 0.3s ease;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link:hover {
  color: var(--secondary-color) !important;
}

.logo {
  max-height: 100px; /* keeps the height fixed */
  width: 180px; /* allows width to expand */
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background-image: url("/assets/images/banner2thread.jpg");
  background-size: cover;
  background-attachment: fixed;
  color: white;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

/* Buttons */
.btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  border-color: white;
  color: white;
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.colorspan {
  color: var(--secondary-color);
}
.iclr {
  color: var(--secondary-color) !important;
}
/* Cards */
.card {
  border: none;
  border-radius: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Feature Icons */
.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.product-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

/* Certificate Section */
.certificate-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
}

.certificate-icon {
  font-size: 4rem;
  color: var(--success-color);
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: var(--dark-bg) !important;
}

footer a {
  transition: color 0.3s ease;
  color: white !important;
}
.text {
  color: white !important;
}

footer a:hover {
  color: var(--secondary-color) !important;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    padding: 10px 25px;
    font-size: 1rem;
  }
}

/* Utility Classes */
.bg-gradient-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-elegant {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* about page */
.about {
  background-image: url("/assets/images/product-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* certificate page */
.certificate {
  background-image: url("/assets/images/10030368.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* contactus */
.contact {
  background-image: url("/assets/images/workspacecontact.jpg") !important;
  background-size: cover;
  background-attachment: fixed;
}

/* product page */
.product {
  background-image: url("/assets/images/producbanner1jpg.jpg") !important;
  background-size: cover;
  background-attachment: fixed;
}
.product-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}
.category-btn {
  border-radius: 5px;
  font-weight: 500;
}
.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 220px;
  object-fit: cover;
}
.product-card {
  text-align: center;
  margin-bottom: 20px;
}
.product-card h6 {
  background: #fff;
  border: 1px solid #b31d1b;
  color: #b31d1b;
  display: inline-block;
  padding: 5px 12px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 14px;
}
.category-btn.active {
  background-color: #b31d1b;
  color: #fff;
}
