* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    color: #111;
    padding-top: 80px; /* Matches header height */
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* or your actual header height */
    background:white;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

main {
    padding-top: 80px; /* same as header height */
}


.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color:#1D2D50;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}
.lang {
    font-weight: 600;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: bold;
    color: #001f3f; /* Navy blue */
    text-decoration: none; /* Removes underline */
}

.logo:hover {
    color: #001f3f; /* Elegant beige-gold on hover */
}
/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
}
.mobile-menu a {
    text-decoration: none;
    color: #111;
    padding: 10px 0;
}
/*--header end--*/
.about-section {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

/* Background styles */
.bg1 {
  background-image: url('../Images/C3.jpg');
}

.bg2 {
  background-image: url('../Images/C2.PNG');
}

.bg3 {
  background-image: url('../Images/C4.jpg');
}

.overlay {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  border-radius: 8px;
}

.about-section h1 {
  color: white;
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}
/*---*/
.story-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
  min-width: 280px; /* Ensures readability on mobile */
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #222;
}

.story-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.story-image {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.story-image img {
  width: 50%; /* Takes full width of its container */
  max-width: 500px; /* Prevents it from getting too big on desktop */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive tweak for small screens */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
    text-align: center;
  }
  .story-text h2 {
    font-size: 1.5rem;
  }
}

/*---*/
.mission-section {
  padding: 60px 20px;
  background-color: #fff;
}

.mission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.mission-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mission-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mission-text {
  flex: 1;
}

.mission-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #222;
}

.mission-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.mission-text ul {
  list-style: none;
  padding: 0;
}

.mission-text ul li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.mission-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c49b63; /* gold accent */
}
/*-----*/
.difference-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.difference-container {
  max-width: 1200px;
  margin: auto;
}

.difference-container h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
  color: #222;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.difference-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.difference-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.difference-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.difference-item p {
  font-size: 1rem;
  color: #555;
}

.difference-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
/*-------*/
:root{
  --ink:#222;
  --muted:#636363;
  --bg:#f7f7f7;
  --card:#fff;
  --accent:#0ea5e9; /* change to your brand accent */
  --accent-soft:#e0f2fe;
  --radius:14px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
}

.sustainability{
  background:var(--bg);
  padding:72px 20px;
}
.sustainability__container{
  max-width:1200px;
  margin:0 auto;
}
.sustainability h2{
  font-family:"Playfair Display",serif;
  font-size:2rem;
  color:var(--ink);
  margin-bottom:12px;
  text-align:center;
}
.sustainability__intro{
  color:var(--muted);
  max-width:760px;
  margin:0 auto 36px;
  text-align:center;
  line-height:1.6;
}

/* Eco cards */
.eco-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-bottom:32px;
}
.eco-card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
  text-align:left;
  transition:transform .25s ease, box-shadow .25s ease;
}
.eco-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}
.eco-card__icon{
  width:56px;height:56px;
  display:grid;place-items:center;
  border-radius:16px;
  background:var(--accent-soft);
  color:var(--accent);
  margin-bottom:14px;
}
.eco-card__icon svg{width:28px;height:28px}
.eco-card h3{
  font-size:1.1rem;
  color:var(--ink);
  margin:6px 0 8px;
}
.eco-card p{
  color:var(--muted);
  line-height:1.6;
  font-size:.98rem;
}

/* Infographics */
.infographics{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
}

.progress{margin:12px 0 18px}
.progress__label{
  display:flex;justify-content:space-between;align-items:center;
  font-size:.95rem;color:var(--ink);margin-bottom:8px;
}
.progress__track{
  height:10px;border-radius:999px;background:#eee;overflow:hidden;
}
.progress__fill{
  height:100%;width:var(--p,0);background:var(--accent);
  border-radius:999px;transition:width .8s ease;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:16px;
}
.stat{
  background:var(--accent-soft);
  border:1px dashed var(--accent);
  border-radius:12px;
  padding:14px;
  text-align:center;
}
.stat strong{
  display:block;color:var(--ink);font-size:1.35rem;
}
.stat span{
  display:block;color:var(--muted);font-size:.9rem;margin-top:4px;
}

/* Responsive */
@media (max-width:1024px){
  .eco-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .eco-grid{grid-template-columns:1fr;}
  .stats{grid-template-columns:1fr;}
}


/* Responsive */
@media (max-width: 992px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .difference-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsive layout */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column;
  }
}
/*------------*/
.testimonials-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.testimonial-card p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
  font-style: italic;
}

.testimonial-card span {
  font-size: 0.95rem;
  color: #777;
}


/*--- Footer--*/
  .footer {
  background: white;
  border-top: 1px solid #ddd;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  flex-wrap: wrap;
}

.footer-section {
  min-width: 150px;
}

.footer-section h3 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #111;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  background: #d8ff3f;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-top: 10px;
}

.footer-bottom a {
  color: #111;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 1.2rem;
  color: #111;
}
/*--fashion-section--*/


/* Responsive */
@media screen and (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        padding-right: 0;
    }
    .hero-image {
        width: 80%;
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
}
.values-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.values-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  color: #222;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.value-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #111;
}

.value-card p {
  font-size: 1rem;
  color: #555;
}
.bulk-order-note {
    background: #fff5e6;
    padding: 20px;
    margin: 25px 0;
    border-left: 5px solid #c59d5f; /* Fashion Gold Accent */
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.05);
}

.bulk-order-note h3 {
    font-size: 1.5rem;
    color: #111;
    margin-bottom: 10px;
}

.bulk-order-note p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.5;
}

.bulk-btn {
    display: inline-block;
    background: #c59d5f;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.bulk-btn:hover {
    background: #a87e45;
}
/* =====================
   MOBILE & TABLET FIXES
   ===================== */
@media screen and (max-width: 1024px) {
    header {
        padding: 15px 20px;
    }

    .logo {
        font-size: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 2.4rem;
    }

    .split-section {
        flex-direction: column;
    }

    .split-left, .split-right {
        min-width: 100%;
        height: auto;
    }

    .image-overlay img {
        height: auto;
    }

    .info-block {
        flex-direction: column;
        padding: 30px 20px;
    }

    .fashion-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .fashion-image img {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    /* Hide desktop menu and show hamburger */
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Mobile dropdown menu */
    .mobile-menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 80px;
        right: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 15px;
        border-radius: 8px;
        z-index: 999;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 10px 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }
  } 