/* ProFashion - Premium B2B Fashion Manufacturing Website */

/* Color Palette */
:root {
  --primary-black: #1a1a1a;
  --primary-white: #ffffff;
  --luxury-beige: #f5f1ed;
  --muted-gold: #14abc9;
  --charcoal-gray: #3a3a3a;
  --light-gray: #e8e8e8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--charcoal-gray);
  background-color: var(--primary-white);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-black);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-gray);
}

/* Navbar Styling */
.navbar {
  background-color: #ffffff;
  padding: 1.35rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: var(--primary-white);
  padding: 1.35rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--light-gray);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.navbar-brand img {
  max-height: 68px;
  width: auto;
  display: block;
}

.navbar-nav .nav-link {
  color: var(--primary-black) !important;
  font-weight: 600;
  margin-left: 2rem;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--muted-gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.btn-get-in-touch {
  background-color: var(--primary-black);
  color: var(--primary-white) !important;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  border: 2px solid var(--primary-black);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-get-in-touch:hover {
  background-color: var(--muted-gold);
  border-color: var(--muted-gold);
  color: var(--primary-white) !important;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  background-image: url('../assets/pic2.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
}


.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.6));
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: var(--primary-white);
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero .subheading {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.btn-cta {
  background-color: var(--muted-gold);
  color: var(--primary-white);
  padding: 1rem 2.5rem;
  border: 2px solid var(--muted-gold);
  border-radius: 2px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta:hover {
  background-color: transparent;
  color: var(--muted-gold);
}

/* Section Styling */
section {
  padding: 5rem 0;
      margin-top: 7rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 2rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--muted-gold), transparent);
}

/* About Snapshot Section */
.about-snapshot {
  background-color: var(--luxury-beige);
}

.about-snapshot .row {
  align-items: center;
}

.about-snapshot img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Capabilities Section */
.capabilities {
  background-color: var(--primary-white);
}

.capability-card {
  background-color: var(--primary-white);
  border: 1px solid var(--light-gray);
  padding: 2.5rem;
  text-align: center;
  border-radius: 2px;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
}

.capability-card:hover {
  border-color: var(--muted-gold);
  box-shadow: 0 15px 50px rgba(20, 171, 201, 0.2);
  transform: translateY(-10px);
}

.capability-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.capability-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-black);
}

.capability-card p {
  color: var(--charcoal-gray);
  font-size: 0.95rem;
}

/* Timeline Section */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--muted-gold), transparent);
  top: 0;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  text-align: right;
  padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
  text-align: left;
  padding-left: calc(50% + 2rem);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: var(--muted-gold);
  border: 3px solid var(--primary-white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--muted-gold);
}

.timeline-content {
  background-color: var(--luxury-beige);
  padding: 1.5rem;
  border-radius: 2px;
}

.timeline-content h4 {
  color: var(--primary-black);
  margin-bottom: 0.5rem;
}

/* Partners Preview */
.partners-preview {
  background-color: var(--primary-white);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
    height: 195px;
    overflow: hidden;
  background-color: var(--luxury-beige);
  border-radius: 2px;
  font-weight: 700;
  color: var(--charcoal-gray);
  font-size: 1.2rem;
  /* border: 1px solid var(--light-gray); */
  transition: all 0.3s ease;
}

.partner-logo:hover {
  /* border-color: var(--muted-gold); */
  /* background-color: var(--primary-white); */
  transform: scale(1.05);
}

.partner-logo img,
.partner-logo-partner img {
  width: 240px;
  height: 148px;
  object-fit: contain;
  display: block;
}

.partner-logo-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--luxury-beige);
    height: 195px;
    overflow: hidden;
  border-radius: 2px;
  font-weight: 700;
  color: var(--charcoal-gray);
  font-size: 1.2rem;
  /* border: 1px solid var(--light-gray); */
  transition: all 0.3s ease;
}

.partner-logo-partner:hover {
  /* border-color: var(--muted-gold); */
  /* background-color: var(--primary-white); */
  transform: scale(1.05);
}
/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: var(--primary-white);
  text-align: center;
  font-weight: 600;
}

/* Products Grid */
.product-category {
  position: relative;
  overflow: hidden;
  height: 350px;
  border-radius: 2px;
  cursor: pointer;
  background-color: var(--light-gray);
}

.product-category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-category:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 2rem 1.5rem;
  color: var(--primary-white);
  transform: translateY(50px);
  transition: transform 0.4s ease;
}

.product-category:hover .product-overlay {
  transform: translateY(0);
}

.product-overlay h3 {
  color: var(--primary-white);
  margin-bottom: 0.5rem;
}

.product-overlay p {
  color: var(--luxury-beige);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: var(--primary-black);
  color: var(--primary-white);
  padding: 3rem 0 1rem 0;
}

footer h5 {
  color: var(--muted-gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

footer a {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--muted-gold);
}

footer p {
  color: var(--light-gray);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

.footer-divider {
  border-top: 1px solid var(--charcoal-gray);
  margin-top: 2rem;
  padding-top: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--charcoal-gray);
  border-radius: 50%;
  color: var(--primary-white);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--muted-gold);
  color: var(--primary-black);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--luxury-beige);
  padding: 2.5rem;
  border-radius: 2px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--muted-gold);
  box-shadow: 0 0 0 3px rgba(20, 171, 201, 0.1);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  background-color: var(--primary-black);
  color: var(--primary-white);
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary-black);
  border-radius: 2px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: var(--muted-gold);
  border-color: var(--muted-gold);
  color: var(--primary-white);
}

/* Map Container */
.map-container {
  height: 400px;
  background-color: var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Legal Pages */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--primary-white);
  padding: 3rem 0;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.legal-content ol, .legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .subheading {
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  section {
    padding: 3rem 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
  }

  .timeline-dot {
    left: 0;
  }

  .timeline-content {
    margin-left: 2.5rem;
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .gallery-item {
    height: 200px;
  }

  .product-category {
    height: 250px;
  }

  .about-snapshot .row {
    flex-direction: column-reverse;
  }

  .contact-form {
    padding: 2rem;
  }

  footer {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .navbar-brand {
    max-width: 180px;
  }

  .navbar-brand img {
    max-height: 50px;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .capability-card {
    padding: 1.5rem;
  }

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

  .gallery-item {
    height: 250px;
  }
}
