/* ========== theme (Insta skin/cream + warm browns) ========== */
:root{
  --bg: #F7EDE3;      /* soft skin/cream */
  --paper: #FFF8F1;   /* pale paper card */
  --ink: #2E261F;     /* deep brown text */
  --muted: #786556;   /* muted brown */
  --accent: #7A5640;  /* warm brown for CTA */
  --accent-2: #C6A07C;/* gold-beige accent */
  --ring: rgba(122,86,64,.22);
  --shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* reset-ish */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
img{max-width:100%;display:block}

/* base */
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(80% 60% at 50% 0%, #FAF1E7, var(--bg)),
    url('assets/paper-texture.jpg');
  background-size: cover, 500px 500px;
  background-attachment: scroll, fixed;
  line-height: 1.6;
}

/* nav */
.nav{
  position: sticky; top:0; z-index: 40;
  background: color-mix(in oklab, var(--paper) 85%, white 15%);
  border-bottom: 1px solid #eddcc9;
  display:flex; align-items:center; justify-content:space-between;
  padding: 10px clamp(14px, 4vw, 42px);
  backdrop-filter: blur(6px);
}
/* Brands Section */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: center;
  padding: 20px;
}

.brands-grid img {
  width: 160px; /* Bigger size */
  height: auto;
  object-fit: contain;
  filter: none; /* Original colors */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brands-grid img:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}


/* hero */
.hero{
  min-height: 90svh;
  display:grid; place-items:center;
  position:relative; isolation:isolate;
  padding: clamp(32px, 5vw, 72px) 16px;
}
.hero-inner{max-width: 1100px; width:100%; text-align:center}
.hero-logo img{width:76px;height:76px;object-fit:contain;margin: 0 auto 12px}
.kicker{letter-spacing:.14em; text-transform:uppercase; color: var(--muted); font-size:.85rem}

.headline{
  font-family: "Playfair Display", Georgia, serif;
  font-weight:700; line-height: 1.05;
  font-size: clamp(2rem, 1.1rem + 5vw, 4rem);
  margin: .2rem 0 .6rem;
}
.headline .line{display:block; opacity:0; transform: translateY(20px)}

.sub{max-width: 60ch; margin: 0 auto 16px; color:#5a493a}

.hero-cta{display:flex; gap:.8rem; justify-content:center; margin-top:10px}
.btn{
  display:inline-block; text-decoration:none; cursor:pointer; user-select:none;
  padding:.85rem 1.15rem; border-radius:12px; font-weight:600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn.primary{background: var(--accent); color:#fff; box-shadow: var(--shadow)}
.btn.ghost{border:1px solid var(--accent); color: var(--accent); background: transparent}
.btn:hover{transform: translateY(-2px)}

.paper-glow{
  position:absolute; inset:auto -15% -60px -15%; height:160px;
  background: radial-gradient(60% 100% at 50% 0%, rgba(198,160,124,.35), transparent 70%);
  filter: blur(30px); z-index:-1; pointer-events:none;
}

/* sections */
.wrap{padding: clamp(40px, 6vw, 96px) clamp(14px, 6vw, 72px)}
.section{
  max-width: 1100px; margin: 24px auto;
  background: var(--paper); border: 1px solid #EAD9C6; border-radius: 22px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.2vw, 36px);
}
.title{
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 1rem + 2.2vw, 2.2rem);
  margin: 0 0 8px;
}
.desc{color:#6C5948; max-width: 70ch}

/* cards */
.cards{display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:12px; margin-top:14px}
.card{
  padding:16px 14px; border: 1px solid #EAD9C6; border-radius:14px;
  background: linear-gradient(#fff, #fff0);
}

/* docs */
.doc-grid{display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:12px; margin-top:14px}
.doc-tile{
  display:grid; place-items:center; min-height:88px; border-radius:14px;
  border:1px dashed #d9c5ae; color: var(--accent); text-decoration:none; font-weight:700;
  background: #FFFAF3;
}
.doc-tile:hover{background:#FFF1E2}

/* carousel */
.carousel{position:relative}
.car-track{
  display:grid; grid-auto-flow: column; grid-auto-columns: min(78%, 320px);
  gap:12px; overflow-x:auto; scroll-snap-type:x mandatory; padding:8px; border-radius:18px;
  background: linear-gradient(#fff, #fff0);
}
.slide{scroll-snap-align:center; border-radius:18px; overflow:hidden; border:1px solid #EAD9C6; background:#fff}
.slide img{width:100%; height:220px; object-fit:cover}
.slide figcaption{padding:10px 12px; color:#5b4b3c}
.car-nav{
  position:absolute; top:50%; transform: translateY(-50%);
  width:40px;height:40px;border-radius:50%;border:0; cursor:pointer;
  background:#ffffffd9; box-shadow: var(--shadow); font-size:22px; line-height:40px;
}
.car-nav.prev{left: -6px}
.car-nav.next{right: -6px}

/* marquee */
.marquee{overflow:hidden; border:1px solid #EAD9C6; border-radius:16px; background:#fff; padding:8px}
.marquee-track {
  gap: 60px; /* was 28px */
}

.marquee img {
  height: 140px; /* was 44px */
  width: auto;
  filter: none; /* removes grayscale so original colors show */
  opacity: 1;   /* fully opaque */
  transition: transform 0.3s ease;
}

.marquee img:hover {
  transform: scale(1.08); /* subtle zoom effect */
}


@keyframes marquee{
  from{transform: translateX(0)}
  to{transform: translateX(-50%)}
}

/* founder */
.founder{background: #FFFCF7}


.founder-photo {
  width: 220px;  /* increased from 140px */
  height: 220px; /* increased from 140px */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid #EAD9C6;
}

.founder .contact{list-style:none; padding:0; margin:12px 0 0}
.founder .contact a{color: var(--accent); text-decoration:none}

/* footer */
.footer{padding:26px; text-align:center; color:#7b6a57}

/* reveal starting state */
.reveal{opacity:0; transform: translateY(14px)}
.reveal-stagger{opacity:0; transform: translateY(18px)}
/* Custom Box Section */
.custom-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8d7a5, #fce5cd);
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-content {
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.custom-image {
    flex: 1;
    min-width: 300px;
    animation: fadeIn 1.2s ease;
}

.custom-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.custom-text {
    flex: 1;
    min-width: 300px;
    animation: slideUp 1.5s ease;
}

.custom-text h2 {
    font-size: 2rem;
    color: #a0522d;
    margin-bottom: 15px;
}

.custom-text p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-details li {
    padding: 5px 0;
    font-size: 0.95rem;
    color: #555;
    position: relative;
}

.product-details li::before {
    content: "✔";
    color: #d4a373;
    margin-right: 8px;
}

.custom-btn {
    padding: 12px 25px;
    background: #d4a373;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.custom-btn:hover {
    background: #b5835a;
}

/* Animations */
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Gift Boxes Section */
.gift-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gift-card {
    background: #fffaf0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gift-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gift-card h3 {
    margin: 15px 10px 8px;
    font-size: 1.3rem;
    color: #d4a373;
}

.gift-card p {
    font-size: 0.95rem;
    padding: 0 10px;
    color: #555;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Filled button */
.btn-primary {
  background-color: #7B4F39;
  color: white;
  border: 2px solid #7B4F39;
}

.btn-primary:hover {
  background-color: #5F3B2C;
}

/* Outline button */
.btn-outline {
  border: 2px solid #7B4F39;
  color: #7B4F39;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #7B4F39;
  color: white;
}
.founder-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.nav-logo {
  height: 80px;  /* make logo bigger */
  width: auto;
  object-fit: contain;
}
.brand {
  display: flex;
  align-items: center;
}
/* Navigation container */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff7f0; /* match site background */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo styling */
.nav .brand img {
  height: 60px; /* adjust logo size */
  width: auto;
}

/* Navigation links */
.navlinks {
  display: flex;
  gap: 1.5rem;
}

.navlinks a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #5a3d2b; /* warm brown to match theme */
  transition: color 0.3s ease;
}

.navlinks a:hover {
  color: #a46c50; /* lighter brown on hover */
}
.reveal {
  opacity: 0; /* hide until GSAP animates */
}
.founder-section {
  padding: 40px 20px;
  background: #FFFCF7;
  text-align: center;
}

.founder-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.founder-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.founder-card {
  flex: 0 0 100%; /* each card takes full wrapper width */
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.founder-photo {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.founder-info h3 {
  margin: 0 0 8px;
}

.founder-info p {
  margin: 0;
  color: #7A5640;
}

.founder-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #7A5640;
  color: white;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  font-size: 1.5rem;
  border-radius: 50%;
}

.founder-nav.prev { left: 10px; }
.founder-nav.next { right: 10px; }
/* ===== FESTIVE BOX SECTION ===== */
.festive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.festive-card {
  background: #fff8f1;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.festive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.festive-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

.festive-card h3 {
  font-family: 'Playfair Display', serif;
  color: #5a3212;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.festive-card p {
  color: #654321;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn.primary {
  background-color: #b45f06;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn.primary:hover {
  background-color: #d17909;
}

.btn.outline {
  border: 2px solid #b45f06;
  color: #b45f06;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn.outline:hover {
  background-color: #b45f06;
  color: #fff;
}

