/* SpiceBridge Custom Styles - Bootstrap 5 */
:root {
  /* Brand Colors */
  --spice-brown: #553221;
  --spice-brown-light: #6b3f2a;
  --spice-brown-dark: #20120c;
  --spice-orange: #ffac1d;
  --spice-orange-dark: #e67e00;
  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-heading: "Poppins", sans-serif;
  /* Spacing */
  --section-padding: 5rem 0;
  --hero-padding: 7rem 0;
}

/* Global Typography */
body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Custom Brand Colors */
.bg-spice-brown {
  background-color: var(--spice-brown) !important;
}

.bg-spice-brown-light {
  background-color: var(--spice-brown-light) !important;
}

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

.bg-spice-gradient {
  background: linear-gradient(180deg, var(--spice-brown) 0%, var(--spice-brown-dark) 100%) !important;
}

.text-spice-brown {
  color: var(--spice-brown) !important;
}

/* Custom Buttons */
.btn-spice-primary {
  background-color: var(--spice-orange);
  border-color: var(--spice-orange);
  color: #090202;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-spice-primary:hover,
.btn-spice-primary:focus {
  background-color: var(--spice-orange-dark);
  border-color: var(--spice-orange-dark);
  color: #090202;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 172, 29, 0.3);
}

.btn-spice-outline {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-spice-outline:hover,
.btn-spice-outline:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: var(--hero-padding);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.9;
}

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

.hero-tagline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--spice-orange);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Product Cards */
.product-card {
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .product-card {
    height: 350px;
  }
}
@media (max-width: 991px) {
  .product-card {
    height: 300px;
    margin-bottom: 2rem;
  }
}
@media (max-width: 576px) {
  .product-card {
    height: 150px;
  }
}

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

.product-card .card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-card .card-body {
    padding: 1.5rem;
  }
}

.product-card h3 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.product-card .card-text {
  font-size: 1.125rem;
  line-height: 1.5;
}

.product-card img {
  transition: transform 0.3s ease;
}

/* Feature Cards */
.feature-card {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-section {
    padding: 5rem 0;
  }
  .product-card {
    height: auto;
    min-height: 400px;
  }
  .product-card .card-body {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-section {
    padding: 4rem 0;
  }
  .product-card h3 {
    font-size: 2rem;
  }
  .navbar-logo {
    height: 60px;
    width: 75px;
  }
  .footer-logo {
    width: 75px;
    height: 60px;
  }
  .contact-item i {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem !important;
  }
  .product-card .card-body {
    padding: 1.5rem;
  }
  .feature-card {
    padding: 1.5rem 1rem;
  }
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .d-flex.gap-3 {
    flex-direction: column;
    gap: 0.5rem !important;
  }
}
/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
/* Focus Styles */
.btn:focus,
.nav-link:focus,
a:focus {
  outline: 2px solid var(--spice-orange);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .modal,
  .btn {
    display: none !important;
  }
  .hero-section,
  .bg-spice-brown,
  .bg-spice-brown-light,
  .bg-spice-brown-dark {
    background: white !important;
    color: black !important;
  }
}
