
/* Base System */
html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 56px);
}

h2 {
  font-size: clamp(24px, 3.5vw, 36px);
}

/* Circle container */
.menu-toggle {
  position: fixed;
  top: 20px;
  left: 20px;

  width: 50px;
  height: 50px;

  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  cursor: pointer;
  z-index: 1000;
}

/* Hamburger lines */
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #000000;
  display: block;
}

/* Smooth animation */
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #000000;
  display: block;
  transition: all 0.3s ease;
}

/* When active */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Nav Bar opening animation */
.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  background: #000000; /* light premium green */

  transform: translateY(-100%);
  transition: transform 0.5s ease;

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

  z-index: 999;
}

.menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.menu-panel li {
  margin: 0;
}

.menu-panel a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;

  font-size: clamp(16px, 1.4vw, 20px);
  color: #ffffff; /* darker green for contrast */

  transition: opacity 0.3s ease;
}

.menu-panel a:hover {
  opacity: 0.6;
}

/* When open */
.menu-panel.active {
  transform: translateY(0);
}

/* Responsive Nav bar code */

.menu-toggle {
  width: 50px;
  height: 50px;
}

@media (max-width: 768px) {
  .menu-toggle {
    width: 42px;
    height: 42px;
    top: 15px;
    left: 15px;
  }

  .menu-toggle span {
    width: 16px;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-toggle span {
    width: 14px;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .menu-panel ul {
    flex-direction: column;
    gap: 28px;
  }
}

/* Default (Desktop) */
.menu-panel ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

/* Tablet */
@media (max-width: 992px) {
  .menu-panel ul {
    gap: 40px;
  }

  .menu-panel a {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-panel {
    height: 35vh; /* Slightly more space */
  }

  .menu-panel ul {
    flex-direction: column;
    gap: 20px;
  }

  .menu-panel a {
    font-size: 18px;
  }
}

/* Search Toggle */

.search-toggle {
  position: fixed;
  top: 20px;
  right: 20px;

  width: 50px;
  height: 50px;

  background: #ffffff;
  border: 1px solid #c8c8c8;
  border-radius: 50%;

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

  cursor: pointer;
  z-index: 1000;
}
.search-toggle svg {
  width: 30px;
  height: 30px;
}

.search-toggle {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.search-toggle.hide-search {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.menu-toggle,
.search-toggle {
  position: fixed;
  top: 32px;      /* more breathing space */
  z-index: 1000;
}

.menu-toggle {
  left: 100px;
}

.search-toggle {
  right: 100px;
}

/* Responsive scaling */
@media (max-width: 768px) {
  .search-toggle {
    width: 50px;
    height: 50px;
  }

  .search-toggle svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .search-toggle {
    width: 44px;
    height: 44px;
  }

  .search-toggle svg {
    width: 16px;
    height: 16px;
  }
}

/* padding to minimal design for toggle and pages */

@media (max-width: 768px) {
  .menu-toggle {
    left: 20px;
  }

  .search-toggle {
    right: 20px;
  }

  .menu-toggle,
  .search-toggle {
    top: 20px;
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    left: 16px;
  }

  .search-toggle {
    right: 16px;
  }

  .menu-toggle,
  .search-toggle {
    top: 16px;
  }
}

/* Hero Section */

.hero {
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding: clamp(170px, 22vh, 220px)
         clamp(20px, 8vw, 100px)
         60px;

  text-align: center;
}

.hero-content {
  max-width: 1000px;
}

/* Welcome to Clove */
.welcome {
  font-family: 'Inter', sans-serif;
  font-weight: 600;

  font-size: clamp(14px, 1.2vw, 17px);

  letter-spacing: 0.8px;
  text-transform: uppercase;

  margin: 0 0 18px 0;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Tagline */
.tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-style: normal;

  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;

  max-width: 950px;  /* wider container */
  margin: 0 auto;
}

/* crausle in hero section */
.feature-strip {
  margin-top: clamp(24px, 3vh, 38px);


  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);

  overflow: hidden;
}

.strip-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;

  transition: 
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  will-change: transform;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Size hierarchy */
.small {
  width: 200px;
  height: 300px;
}

.medium {
  width: 240px;
  height: 360px;
}

.featured {
  width: 320px;
  height: 480px;
}

.featured .overlay {
  position: absolute;
  inset: 0;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category {
  align-self: flex-start;
  background: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.card {
  background: rgba(255,255,255,0.85);
  padding: 20px;
  border-radius: 20px;
}

.meta {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card h3 {
  margin-top: 10px;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.strip-item:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .feature-strip {
    overflow-x: auto;
  }

  .strip-item {
    flex: 0 0 auto;
  }
}

/* Next spotlight section */

.pill-section {
  padding: clamp(60px, 10vh, 100px) 20px;
  display: flex;
  justify-content: center;
}

.pill-container {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}

.pill {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  color: #111;

  padding: 16px 40px;
  border-radius: 999px;
  border: 1px solid;

  transition: all 0.3s ease;
}

.green { border-color: #1B7F5C; }
.purple { border-color: #B058E6; }
.blue { border-color: #2D6CDF; }
.red { border-color: #E04B4B; }

.green:hover { background: rgba(27,127,92,0.08); }
.purple:hover { background: rgba(176,88,230,0.08); }
.blue:hover { background: rgba(45,108,223,0.08); }
.red:hover { background: rgba(224,75,75,0.08); }

/* Responsoive crausle section */

/* Stats */

.impact-section {
  padding: clamp(80px, 10vh, 140px) 20px;
  text-align: center;
}

.impact-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: clamp(60px, 8vh, 100px);
}
.impact-container {
  max-width: 1400px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(60px, 8vw, 120px);
}

.impact-item {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers everything */
  text-align: center;    /* centers paragraph */
}

.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(70px, 7vw, 110px);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1;
}

.impact-item p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
  max-width: 260px;
}

.divider {
  width: 1px;
  background: #111;
  opacity: 0.6;
}
.impact-container {
  align-items: center;
}

/* Article section */

.assist-section {
  display: flex;
  align-items: stretch;
  margin-top: 0;
}

.assist-left {
  flex: 1;
  background: #E7D5AD;
  padding: clamp(60px, 8vw, 120px);
}

.assist-left h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 60px);
  margin-bottom: 30px;
}

.assist-left p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  margin-bottom: 40px;
}

.assist-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 30px;
  background: #D8B66A;

  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #000;

  transition: transform 0.3s ease;
}

.assist-btn:hover {
  transform: translateY(-3px);
}

.assist-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.assist-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.assist-card {
  position: absolute;
  bottom: 40px;
  right: 40px;

  max-width: 450px;

  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: 30px;
}

.assist-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  margin-bottom: 15px;
  text-decoration: underline;
}

.assist-card p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Go Beyond the Expected */



/* article section 2  */


/* crousle section 2  */


/* Size hierarchy */
.small {
  width: 200px;
  height: 300px;
}

.medium {
  width: 240px;
  height: 360px;
}

.featured {
  width: 320px;
  height: 480px;
}

.featured .overlay {
  position: absolute;
  inset: 0;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category {
  align-self: flex-start;
  background: rgba(255,255,255,0.7);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.card {
  background: rgba(255,255,255,0.85);
  padding: 20px;
  border-radius: 20px;
}

.meta {
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card h3 {
  margin-top: 10px;
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.strip-item:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .feature-strip {
    overflow-x: auto;
  }

  .strip-item {
    flex: 0 0 auto;
  }
}

/* article section 3 */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px);
}

/* footer section */

.footer {
  padding: 80px 60px;
  background: #f5f5f5;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-left h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.3;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links ul {
  list-style: disc;
}

.footer-links a {
  text-decoration: underline;
  font-size: 20px;
  color: #000;
}

.footer-contact {
  max-width: 350px;
}

.footer-contact h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-contact p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #D8B66A;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.footer-divider {
  height: 1px;
  background: #ddd;
  margin: 50px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-size: 40px;
  font-weight: 700;
}

.footer-policy a {
  margin-right: 20px;
  text-decoration: underline;
  font-size: 14px;
  color: #000;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-legal {
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

/* responsiveness */

@media (max-width: 1024px) {

  .impact-container {
    flex-direction: column;
    gap: 50px;
  }

  .divider {
    display: none;
  }

  .assist-section {
    flex-direction: column;
  }

  .assist-right {
    height: 400px;
  }

  .assist-card {
    right: 20px;
    bottom: 20px;
    max-width: 80%;
  }

  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links {
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 140px 20px 40px;
  }

  .tagline {
    font-size: 22px;
    line-height: 1.35;
  }

  .feature-strip {
    overflow-x: auto;
    padding: 0 20px;
  }

  .strip-item {
    flex: 0 0 auto;
  }

  .assist-left {
    padding: 50px 20px;
  }

  .assist-left h2 {
    font-size: 32px;
  }

  .footer {
    padding: 60px 20px;
  }

  .footer-left h2 {
    font-size: 28px;
  }

}

@media (max-width: 900px) {

  .assist-section {
    flex-direction: column;
  }

  .assist-right {
    height: 400px;
  }

  .assist-card {
    right: 20px;
    bottom: 20px;
    max-width: 85%;
  }

}

@media (max-width: 900px) {

  .impact-container {
    flex-direction: column;
    gap: 60px;
  }

  .divider {
    display: none;
  }

}

@media (max-width: 768px) {

  .hero {
    padding: 130px 20px 40px;
  }

  .tagline {
    font-size: 22px;
    line-height: 1.4;
  }

}

@media (max-width: 900px) {

  .feature-strip {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .strip-item {
    flex: 0 0 auto;
  }

}

@media (max-width: 900px) {

  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .footer-links {
    gap: 40px;
  }

  .footer {
    padding: 60px 20px;
  }

}