/* ----------------------------------------------------
   GLOBAL
---------------------------------------------------- */
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #fffdf8;
  color: #1a1a1a;
  line-height: 1.7;
}

/* GOOP-STYLE SERIF */
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

/* Luxury Script */
.luxe-script {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #eacb52;
}

/* ----------------------------------------------------
   HEADER + NAV BAR
---------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: none;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  z-index: 9999;
  box-sizing: border-box;
}

body {
  padding-top: 90px; /* prevent content from sliding under fixed header */
}

.logo {
  width: 180px;
  height: auto;
  justify-self: start;
}

/* Updated nav styles for centering and cart icon */
.nav-center {
  display: flex;
  justify-content: center;
  grid-column: 2;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.cart-icon {
  display: flex;
  align-items: center;
  cursor: pointer;
  grid-column: 3;
  justify-self: end;
  margin: 0;
}


nav a {
  font-size: 1rem;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid #eacb52;
}

/* Storefront separated */
.storefront-link {
  margin-left: 50px;
  font-weight: 700;
}

/* ----------------------------------------------------
   YELLOW BRANDING BAR BELOW NAV
---------------------------------------------------- */
.yellow-band {
  background: #fdeca6;
  padding: 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
}

/* ----------------------------------------------------
   HERO
---------------------------------------------------- */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(180deg, #fffdf8, #fdf6c4);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  color: #444;
}

.about-hero {
  padding: 120px 20px;
  text-align: center;
  background: #fffdf8; /* solid light background, no gradient */
}
.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  color: #444;
}

/* ----------------------------------------------------
   SECTIONS
---------------------------------------------------- */
.section {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

.section h3 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.section p {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: #444;
}

/* ----------------------------------------------------
   TWO-COLUMN FOUNDERS SECTION
---------------------------------------------------- */
.founders-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.founders-text {
  flex: 1;
}

.founders-image img {
  width: 100%;
  max-width: 520px;
  height: 430px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 800px) {
  .founders-columns {
    flex-direction: column-reverse;
    text-align: center;
  }
}

/* ----------------------------------------------------
   SOCIAL ICONS (SMALL & CLEAN)
---------------------------------------------------- */
.social-list {
  list-style: none;
  padding: 0;
}

.social-list li {
  margin: 10px 0;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: #111;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  text-align: center;
  padding: 40px;
  background: #faf5e4;
  color: #777;
}

/* ----------------------------------------------------
   POPUP NEWSLETTER
---------------------------------------------------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: white;
  padding: 40px;
  max-width: 420px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.popup-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.popup-box input {
  width: 90%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 30px;
  margin-top: 20px;
}

.popup-box button {
  width: 90%;
  padding: 14px;
  margin-top: 20px;
  background: #111;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.popup-close {
  margin-top: 14px;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  color: #666;
}