/* ===== GLOBAL INTERACTIONS ===== */
 :root {
    --color-background: #ffffff;
    --color-foreground: #0a0a0a;
    --color-muted: #737373;
    --color-secondary: #f5f5f5;
    --color-accent: #ea580c;
    --color-border: #e5e5e5;
    
    --font-display: 'Cormorant Garamond', 'Cormorant Garamond', ;
    --font-body: 'Cormorant Garamond', 'Inter', sans-'Cormorant Garamond', ;
}
a {
  transition: color 0.25s ease, opacity 0.25s ease;
}

img {
  transition: transform 0.6s ease, filter 0.6s ease;
}

.section-link,
.text-link,
.twr-link {
  transition: opacity 0.3s ease, border-color 0.3s ease;
}


body {
  font-family: 'Bodoni Moda', 'Cormorant Garamond', ;
  margin: 0;
  background-color: #fff;
  color: #000;
}
/* --- Base Header --- */
.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  z-index: 1050;
}

/* The magic trick for perfect centering */
.header-left, .header-left-mobile {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.header-right, .header-right-mobile {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

/* --- Typography & Links --- */
.nav-drop-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-drop-link:hover {
  color: #666;
}

/* --- Mobile Menu Styling --- */
.mobile-nav-container {
  position: fixed;
  top: 70px; /* matches header height */
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background: #fff;
  z-index: 1040;
  overflow-y: auto;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: 40px;
  gap: 20px;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #f7f7f7;
  padding-bottom: 10px;
}

/* Mobile Dropdown Logic */
.btn-mobile-collapse {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #f7f7f7;
  display: flex;
  justify-content: space-between;
}

.mobile-submenu {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  background: #fafafa;
}

.mobile-submenu a {
  font-size: 15px;
  color: #666;
  border: none;
  padding: 10px 0;
}

.mobile-utils {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #000;
  font-size: 12px;
  letter-spacing: 1px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .custom-header {
    padding: 0 20px;
    height: 60px;
  }
  .mobile-nav-container {
    top: 60px;
  }
  .mobile-toggle {
    font-size: 24px;
    padding: 0;
  }
}

/* Hide Bootstrap default focus outlines */
.navbar-toggler:focus {
  box-shadow: none;
}
        

        /* ---------------------------------------------------- */
    /* hero */

    .hero-overlay h1,
.hero-overlay p {
  animation: heroFadeUp 0.8s ease forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

        
        .hero-section {
    position: relative;
    height: 100vh; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Keeps text at the bottom like Inditex */
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Puts video behind the text */
    transform: translate(-50%, -50%);
    object-fit: cover; /* Crucial: makes video fill the area without stretching */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle dark gradient from bottom to top to make white text pop */
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

/* Ensure text is above the overlay */
.hero-overlay .container-fluid {
    z-index: 2;
    position: relative;
}


/* --------------------------------------------- */
/* card section */

.stat-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.stat-card:hover .stat-overlay {
  background: rgba(0,0,0,0.55);
}


    :root {
            --brand-grey: #666;
            --brand-black: #000;
            --section-padding: 100px;
        }
    .stat-card {
      position: relative;
      height: 380px;
      overflow: hidden;
    }

    .stat-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
    }

    .stat-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.45);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .stat-number {
      font-size: 3.5rem;
      color: #fff;
      line-height: 1;
    }

    .stat-labels {
      font-size: 0.9rem;
      letter-spacing: 2px;
      color: #ff7a00;
      margin-top: 8px;
    }

    @media (max-width: 768px) {
      .stat-card {
        height: 260px;
      }
      .stat-number {
        font-size: 3rem;
      }
    }
  

/* ---------------------------------------------------- */
  
    
        

       
        /* 1. Top Banner Strip */
        .banner-strip {
            display: flex;
            height: 250px;
            overflow: hidden;
           
        }
        .banner-strip .img-box {
            flex: 1;
            background-size: cover;
            background-position: center;
            filter: grayscale(20%);
        }

        /* 2. Brand Logo Section */
        .brand-strip {
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            margin-top: 100px;
        }
        .brand-strip span {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #999;
            display: block;
            margin-bottom: 30px;
        }
        .logo-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
            filter: grayscale(100%);
            opacity: 0.6;
        }
           

        .logo-row img { height: 45px; }

        /* 3. Narrative Text Blocks */
        .narrative-section {
            padding: var(--section-padding) 0;
            text-align: center;
            font-family: 'Cormorant Garamond', 'Inter', sans-'Cormorant Garamond', ;
        }
        .narrative-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.125rem;
            line-height: 1.8;
        }
        .text-link {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #000;
            text-decoration: none;
            border-bottom: 1px solid #000;
            padding-bottom: 5px;
            transition: opacity 0.3s;
        }
        .text-link:hover { opacity: 0.5; }

        
/* Fabric Gallery */
.fabric-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover only where hover exists */
@media (hover: hover) {
  .fabric-grid div:hover img {
    transform: scale(1.05);
  }
}

        /* 5. "Together We Rise" Section */
        .split-section {
            padding: var(--section-padding) 0;
        }
        .split-title {
            font-family: 'Cormorant Garamond', 'Cormorant Garamond', ;
            font-size: 2.5rem;
            margin-bottom: 25px;
        }
        .split-text {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 400px;
        }
        .large-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            filter: grayscale(100%);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-strip { height: 150px; }
            .split-title { font-size: 2rem; }
            .large-image { height: 400px; margin-top: 40px; }
        }
    
        /* ------------------------------------------- */
        /* about section */

        
.twr-section {
  background-color: #f7f4ef; /* light contrast vs white sections */
  padding: 120px 0;
}

.twr-title {
  font-family: 'Cormorant Garamond' ;
  font-size: 2.6rem;
  margin-bottom: 22px;
  color: #1c1c1c;
}

.twr-text {
  max-width: 420px;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
}

.twr-link {
  display: inline-block;
  margin-top: 26px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c1c1c;
  text-decoration: none;
  border-bottom: 1px solid #1c1c1c;
  padding-bottom: 3px;
}

.twr-image {
  max-width: 430px;
  margin-left: auto;
}

.twr-image img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

/* Responsive */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1040px;
    }
}
@media (max-width: 991px) {
  .twr-section {
    padding: 80px 0;
  }

  .twr-image {
    margin: 40px auto 0;
  }

  .twr-text {
    max-width: 100%;
  }
}

     /* --------------------------------------------------- */
       /* experience section starts here  */
      
        /* Fabric Stats Section */
.fabric-stats-section {
  background-color: #ffffff;
  padding: 90px 0 110px;
}

/* Stats */
.fabric-stats {
  margin-bottom: 70px;
}

.stat-value {
  font-family: 'Cormorant Garamond', ;
  font-size: 2.2rem;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
}

/* Image */
.fabric-image-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.fabric-image-wrap img {
  width: 100%;
  display: flex;
  /* margin-left: 70px; */
  object-fit: cover;
}
/* cta */
      
.cta:hover {
  box-shadow:  0  0 2px #222;
}


     /* --------------------------------------------------------------------------------------- */





     /* ===================================
   Rongzhiyue - Custom Styles
   Bootstrap 5 Override & Extensions
   =================================== */

/* CSS Variables */
:root {
    --color-background: #ffffff;
    --color-foreground: #0a0a0a;
    --color-muted: #737373;
    --color-secondary: #F5F2EF;
    --color-accent: #ea580c;
    --color-border: #e5e5e5;
    
    --font-display: 'Cormorant Garamond', 'Cormorant Garamond', ;
    --font-body: 'Inter', sans-'Cormorant Garamond', ;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-foreground);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 300;
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Link Underline Effect */
.link-underline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-foreground);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.link-underline:hover {
    color: var(--color-foreground);
    border-color: var(--color-foreground);
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 2rem;
}

/* .nav-link-custom {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-foreground);
    text-decoration: none;
    transition: opacity 0.3s ease;
} */

/* .nav-link-custom:hover {
    color: var(--color-foreground);
    opacity: 0.7;
} */

.logo {
    /* height: 2rem; */
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--color-background);
    border-top: 1px solid var(--color-border);
}

.mobile-nav-link {
    padding: 0.75rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-text {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .hero-text {
        font-size: 1.125rem;
    }
}

.hero-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease;
}

.hero-link:hover {
    color: #fff;
    border-color: #fff;
}

.hero-stats {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 300;
    color: #fff;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .stat-number {
        font-size: 3.75rem;
    }
}

.stat-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.75rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 2rem;
    background-color: rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===================================
   Brand Section
   =================================== */
.brand-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.section-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-muted);
    display: block;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 1.5rem;
    }
}

/* ===================================
   Sections Common
   =================================== */
.section-intro {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.section-text {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.8;
}

@media (min-width: 768px) {
    .section-text {
        font-size: 1rem;
    }
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .products-section {
        padding: 8rem 0;
    }
}

.fabric-grid {
    max-width: 64rem;
    margin: 0 auto;
}

.fabric-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.fabric-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   Category Section
   =================================== */
.category-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .category-section {
        padding: 8rem 0;
    }
}

/* ===================================
   Features Section
   =================================== */
.features-section {
    background-color: var(--color-secondary);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .features-section {
        padding: 8rem 0;
    }
}

.grayscale {
    filter: grayscale(100%);
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .about-section {
        padding: 8rem 0;
    }
}

.stats-row {
    max-width: 64rem;
    margin: 0 auto 5rem;
}

.stat-number-dark {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 300;
    color: var(--color-foreground);
}

@media (min-width: 768px) {
    .stat-number-dark {
        font-size: 2.5rem;
    }
}

@media (min-width: 992px) {
    .stat-number-dark {
        font-size: 3rem;
    }
}

.stat-label-dark {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.about-image {
    max-width: 80rem;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .services-section {
        padding: 8rem 0;
    }
}

.service-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.service-text {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 0;
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 1rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-primary-custom {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-background);
    border: 1px solid var(--color-background);
    padding: 0.75rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--color-background);
    color: var(--color-foreground);
}

.btn-secondary-custom {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-secondary-custom:hover {
    color: #fff;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: 5rem 0;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .contact-section {
        padding: 8rem 0;
    }
}

.contact-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.contact-text {
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.8;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--color-foreground);
    color: var(--color-background);
    padding: 4rem 0 2rem;
}

.footer-logo {
    height: 2rem;
    filter: invert(1);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ===================================
   Floating CTA
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-foreground);
    color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-cta:hover {
    transform: scale(1.1);
    color: var(--color-background);
}

/* ===================================
   Utilities
   =================================== */
.text-muted-custom {
    color: var(--color-muted);
}