/* ===================================
   Vibrant Day Creations
   =================================== */

:root {
  --color-gold: #ffd166;
  --color-gold-light: rgba(255, 209, 102, 0.15);
  --color-teal: #1a7a6d;
  --color-teal-dark: #155f55;
  --color-orange: #e8792b;
  --color-red: #c1313d;
  --color-red-hover: #a8282f;
  --color-dark: #2d3436;
  --color-bg: #fefcf7;
  --color-card: #fef9ed;
  --color-text: #2d3436;
  --color-text-secondary: #636e72;
  --color-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p { margin: 0; }
img { max-width: 100%; height: auto; display: block; }

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: min(1100px, 100% - 2.5rem);
  margin: 0 auto;
}

a:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-teal);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

/* ===================================
   Hero
   =================================== */
.hero {
  text-align: center;
  padding: 3.5rem 1.25rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-gold-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero .logo {
  width: 220px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.hero-tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw + 0.5rem, 2.5rem);
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
  background-color: var(--color-red);
  color: white;
  padding: 0.85rem 1.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(193, 49, 61, 0.25);
}
.cta-button:hover {
  background-color: var(--color-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 49, 61, 0.35);
}
.cta-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ===================================
   Trust Bar
   =================================== */
.trust-bar {
  background-color: var(--color-teal);
  padding: 1rem 1.25rem;
}
.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  fill: var(--color-gold);
  flex-shrink: 0;
}

/* ===================================
   About / Meet Section
   =================================== */
.about-section {
  padding: 4rem 1.25rem;
}
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 1;
  object-fit: cover;
}
.about-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw + 0.4rem, 1.8rem);
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}
.about-content p {
  color: var(--color-text-secondary);
  font-size: 1.02rem;
  margin-bottom: 0.75rem;
}

/* ===================================
   Why Shop With Us
   =================================== */
.features-section {
  padding: 3.5rem 1.25rem 4rem;
  background-color: var(--color-card);
}
.features-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw + 0.4rem, 1.8rem);
  color: var(--color-teal);
  text-align: center;
  margin-bottom: 2.5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-teal);
}
.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Mid-page CTA */
.mid-cta {
  text-align: center;
  padding: 2.5rem 1.25rem 3rem;
}
.mid-cta p {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* ===================================
   Sourcing Section
   =================================== */
.sourcing-section {
  background-color: var(--color-dark);
  color: white;
  padding: 4rem 1.25rem;
}
.sourcing-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw + 0.4rem, 1.8rem);
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 0.75rem;
}
.sourcing-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: #dfe6e9;
  font-size: 1.02rem;
}
.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.sourcing-card {
  background: rgba(255, 209, 102, 0.08);
  border: 1px solid rgba(255, 209, 102, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.sourcing-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.sourcing-card p {
  color: #b2bec3;
  font-size: 0.92rem;
  line-height: 1.55;
}
.sourcing-process {
  max-width: 550px;
  margin: 0 auto 2.5rem;
}
.sourcing-process h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: white;
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 1rem;
}
.process-steps {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.process-steps li {
  counter-increment: steps;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: #dfe6e9;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.process-steps li::before {
  content: counter(steps) ".";
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
}
.sourcing-contact {
  text-align: center;
}
.sourcing-cta {
  display: inline-block;
  background-color: var(--color-gold);
  color: var(--color-dark);
  padding: 0.85rem 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(255, 209, 102, 0.25);
  margin-bottom: 1rem;
}
.sourcing-cta:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 209, 102, 0.35);
}
.sourcing-phone {
  display: block;
  color: var(--color-gold);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.sourcing-phone:hover {
  color: white;
}
.sourcing-email {
  color: #b2bec3;
  font-size: 0.9rem;
  text-decoration: none;
}
.sourcing-email:hover {
  color: white;
}
.sourcing-small-note {
  text-align: center;
  color: #dfe6e9;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.sourcing-areas {
  text-align: center;
  color: #636e72;
  font-size: 0.82rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
  padding: 3.5rem 1.25rem;
  text-align: center;
}
.contact-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw + 0.4rem, 1.8rem);
  color: var(--color-teal);
  margin-bottom: 0.5rem;
}
.contact-sub {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
  max-width: 750px;
  margin: 0 auto;
}
.contact-item h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-teal);
  margin-bottom: 0.25rem;
}
.contact-item a,
.contact-item p {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact-item a:hover {
  color: var(--color-teal);
}

/* ===================================
   Footer
   =================================== */
footer {
  background-color: var(--color-dark);
  color: #b2bec3;
  padding: 2.5rem 1.25rem 1.5rem;
  text-align: center;
}
.footer-logo {
  width: 100px;
  margin: 0 auto 1rem;
  opacity: 0.85;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.footer-links a {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.footer-links a:hover {
  color: white;
}
.footer-tagline {
  font-size: 0.8rem;
  color: #636e72;
  margin-bottom: 0.75rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: #636e72;
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
  .hero { padding: 2.5rem 1.25rem 2rem; }
  .hero .logo { width: 170px; }

  .trust-bar .container { gap: 1rem 1.5rem; }
  .trust-item { font-size: 0.78rem; }

  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .about-photo {
    width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero .logo { width: 140px; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-button { width: 100%; max-width: 300px; justify-content: center; }

  .trust-bar .container { flex-direction: column; gap: 0.5rem; }

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

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