/* ===================================================
   Estonia Exports — Custom Stylesheet
   Theme: Warm Artisan / Copper & Stone
   Updated: Pill navbar · Rough-paper hero · 2-level dropdown
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ────────────────────────────────── */
:root {
  --copper: #b5734a;
  --copper-dark: #8c5530;
  --copper-light: #d4956e;
  --stone: #c9bfb0;
  --stone-light: #f0ebe4;
  --stone-medium: #e4ddd4;
  --sage: #7a8c6e;
  --sage-dark: #4e5c42;
  --charcoal: #2a2620;
  --warm-white: #faf8f5;
  --body-text: #5a524a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.3s ease;
  --radius: 4px;
  --shadow-soft: 0 4px 24px rgba(42,38,32,0.08);
  --shadow-card: 0 2px 16px rgba(42,38,32,0.10);
  --navbar-pill-h: 58px;
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: var(--body-text);
  background-color: var(--warm-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}

a {
  color: var(--copper);
  text-decoration: none;
  transition: color var(--transition);
}

  a:hover {
    color: var(--copper-dark);
  }

img {
  max-width: 100%;
  height: auto;
}

/* ── Utility ──────────────────────────────────────── */
.text-copper {
  color: var(--copper);
}

.text-sage {
  color: var(--sage);
}

.bg-stone {
  background-color: var(--stone-light);
}

.bg-sage-dark {
  background-color: var(--sage-dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.section-ornament {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--copper);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn-copper {
  display: inline-block;
  background-color: var(--copper);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.7rem;
  border: 2px solid var(--copper);
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

  .btn-copper:hover {
    background-color: var(--copper-dark);
    border-color: var(--copper-dark);
    color: #fff;
  }

.btn-copper-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--copper);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.65rem 1.7rem;
  border: 2px solid var(--copper);
  border-radius: var(--radius);
  transition: background-color var(--transition), color var(--transition);
}

  .btn-copper-outline:hover {
    background-color: var(--copper);
    color: #fff;
  }

/* ── Top Bar ──────────────────────────────────────── */
.topbar {
  background-color: var(--sage-dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0;
}

  .topbar a {
    color: rgba(255,255,255,0.65);
  }

    .topbar a:hover {
      color: var(--copper-light);
    }

/* ══════════════════════════════════════════════════
   NAVBAR — Pill / Rounded look
   ══════════════════════════════════════════════════
   Layout:
   .navbar-outer   → full-width sage-green band (sticky)
   .navbar-pill-wrap → centred white pill inside it
   .main-navbar    → Bootstrap nav inside the pill
   ══════════════════════════════════════════════════ */

.navbar-outer {
  background-color: var(--sage-dark);
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 20px;
  transition: box-shadow var(--transition);
}

  .navbar-outer.scrolled {
    box-shadow: 0 4px 20px rgba(42,38,32,0.18);
  }

/* The white pill */
.navbar-pill-wrap {
  background: #fff;
  border-radius: 60px; /* fully rounded ends */
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-shadow: 0 2px 14px rgba(42,38,32,0.10);
}

.main-navbar {
  background: transparent;
  border: none;
  padding: 0;
  min-height: var(--navbar-pill-h);
}

/* Brand */
.navbar-brand-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  padding-top: 0;
  padding-bottom: 0;
  line-height: var(--navbar-pill-h);
}

  .navbar-brand-text:hover {
    color: var(--copper);
  }

/* Nav links */
.nav-link-custom {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 0.45rem 0.9rem !important;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}

  .nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.9rem;
    right: 0.9rem;
    height: 1px;
    background: var(--copper);
    transform: scaleX(0);
    transition: transform var(--transition);
  }

  .nav-link-custom:hover,
  .nav-link-custom.active {
    color: var(--copper) !important;
  }

    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
      transform: scaleX(1);
    }

/* Enquire pill button */
.btn-enquire {
  background-color: var(--copper) !important;
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 1.2rem !important;
  border-radius: 50px !important; /* pill shape */
  transition: background-color var(--transition) !important;
}

  .btn-enquire:hover {
    background-color: var(--copper-dark) !important;
  }

  .btn-enquire::after {
    display: none !important;
  }

/* Search slide-out */
.navbar-search {
  position: relative;
}

.navbar-search-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-search-input {
  width: 0;
  min-width: 0;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 50px;
  background: var(--stone-light);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  opacity: 0;
  pointer-events: none;
  transition: width var(--transition), padding var(--transition), opacity var(--transition), border-color var(--transition);
}

.navbar-search-input:focus {
  border-color: var(--copper);
  outline: none;
}

.navbar-search-toggle {
  border: 0;
  background: transparent;
}

.navbar-search-toggle::after {
  display: none !important;
}

.navbar-search.search-open .navbar-search-input {
  width: 210px;
  padding: 0 0.95rem;
  opacity: 1;
  pointer-events: auto;
}

/* ══════════════════════════════════════════════════
   DROPDOWN — Level 1
   ══════════════════════════════════════════════════ */
.collections-dropdown .dropdown-toggle::after {
  display: none; /* hide default BS caret — we use chevron in JS */
}

.dd-l1 {
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(42,38,32,0.14);
  padding: 0.5rem 0;
  min-width: 200px;
  background: #fff;
  margin-top: 6px !important;
  animation: ddFadeIn 0.18s ease;
}

@keyframes ddFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dd-item-l1 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.52rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), color var(--transition);
}

  .dd-item-l1:hover,
  .dd-item-l1:focus {
    background-color: var(--stone-light);
    color: var(--copper);
  }

.dd-arrow {
  font-size: 0.65rem;
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}

.dropdown-submenu:hover .dd-arrow,
.dropdown-submenu.open .dd-arrow {
  opacity: 1;
  transform: translateX(2px);
  color: var(--copper);
}

/* View All row */
.dd-view-all {
  color: var(--copper) !important;
  font-weight: 500;
}

  .dd-view-all:hover {
    background-color: var(--stone-light);
  }

/* ══════════════════════════════════════════════════
   DROPDOWN — Level 2 (flyout)
   ══════════════════════════════════════════════════ */
.dropdown-submenu {
  position: relative;
}

.dd-l2 {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(42,38,32,0.14);
  padding: 0.5rem 0;
  min-width: 180px;
  background: #fff;
  margin-left: 4px;
  animation: ddFadeIn 0.18s ease;
  z-index: 1040;
}

.dropdown-submenu:hover .dd-l2,
.dropdown-submenu.open .dd-l2 {
  display: block;
}

.dd-item-l2 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--body-text);
  padding: 0.45rem 1.2rem;
  transition: background var(--transition), color var(--transition);
}

  .dd-item-l2:hover,
  .dd-item-l2:focus {
    background-color: var(--stone-light);
    color: var(--copper);
  }

/* ══════════════════════════════════════════════════
   HERO SECTION — Heavy rough drawing-paper texture
   ══════════════════════════════════════════════════
   Strategy: four stacked visual layers
     1. Base warm stone colour (background-color)
     2. Coarse grain noise  — ::before  (multiply)
     3. Cross-fibre weave   — ::before  (second bg-image)
     4. Tonal vignette      — ::after
   The grain rect opacity inside the SVG data-URI is
   pushed to 0.55–0.70 so it reads clearly on screen.
   mix-blend-mode: multiply darkens the light areas
   of the noise into visible paper tooth.
   ══════════════════════════════════════════════════
*/

.hero-container {
 
  background-color: #e8dfd3;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-bottom: solid 1px var(--stone);  
}

  /* ── Layer 2 & 3 : grain + horizontal fibre lines ── */
.hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.62'/%3E%3C/svg%3E"),
     url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.45 0.08' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23f)' opacity='0.28'/%3E%3C/svg%3E");
    background-repeat: repeat, repeat;
    background-size: 220px 220px, 260px 260px;
    mix-blend-mode: multiply;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
  }

  /* ── Layer 4 : warm tonal depth + edge darkening ───*/ 
.hero-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse at 15% 80%, rgba(160, 95, 50, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(90, 80, 65, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(42,38,32,0.08) 100%);
    pointer-events: none;
    z-index: 0;
  }

  /*/* Ensure hero children sit above texture layers */
/*.hero-container > .container {
    position: relative;
    z-index: 1;
  }*/

.hero-section {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: url('/assets/images/banner-01.png');
  background-size: contain; /* FULL image */
  background-position: center; /* centered */
  background-repeat: no-repeat;
 
}


.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

  .hero-headline em {
    font-style: italic;
    color: var(--copper);
  }

.hero-body {
  font-size: 0.92rem;
  color: var(--body-text);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
}

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

  .hero-image-wrap img {
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(42,38,32,0.18));
    animation: floatY 5s ease-in-out infinite;
  }

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-bg-circle {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,115,74,0.10) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-container {
    min-height: auto;
    padding: 3rem 0 2rem;
  }
  .hero-section {
    min-height: 300px;
    background-size: contain; /* FULL image */
    background-position: center; /* centered */
  }
}

/* ── Collections Section ──────────────────────────── */
.collections-section {
  padding: 5rem 0 4rem;
  background-color: #fff;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.collection-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-card-img {
  transform: scale(1.05);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,38,32,0.45) 0%, transparent 60%);
  transition: opacity var(--transition);
}

.collection-card:hover .collection-card-overlay {
  opacity: 0.8;
}

.collection-card-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 0.8rem;
  text-align: center;
}

/* ── Featured Products ────────────────────────────── */
.products-section {
  padding: 5rem 0;
  background-color: var(--stone-light);
}

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(42,38,32,0.14);
  }

.product-card-img-wrap {
  overflow: hidden;
  /*aspect-ratio: 3/4; abdul*/
  background: var(--stone-medium);
}

  .product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.07);
}

.product-card-body {
  padding: 1rem 1.1rem 1.2rem;
  text-align: center;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.product-card-type {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.8rem;
}

/* Pagination */
.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

  .product-pagination span {
    font-size: 0.82rem;
    color: var(--body-text);
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    transition: color var(--transition);
  }

    .product-pagination span.active {
      color: var(--copper);
      font-weight: 500;
    }

    .product-pagination span:hover {
      color: var(--copper);
    }

.product-pagination-arrow {
  background: none;
  border: 1px solid var(--stone);
  color: var(--charcoal);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  font-size: 0.75rem;
}

  .product-pagination-arrow:hover {
    border-color: var(--copper);
    color: var(--copper);
  }

/* ── About Section ────────────────────────────────── */
.about-section {
  padding: 5rem 0;
  background-color: #fff;
}

.about-text-wrap {
  padding-right: 2rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.about-body {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.8rem;
}

.about-image-wrap {
  position: relative;
}

  .about-image-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

.about-image-accent {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--copper);
  border-radius: var(--radius);
  pointer-events: none;
  opacity: 0.5;
}

/* ── Footer ───────────────────────────────────────── */
.main-footer {
  background-color: var(--sage-dark);
  color: rgba(255,255,255,0.7);
  padding: 1.2rem 0;
}

.footer-nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

  .footer-nav-link:hover {
    color: var(--copper-light);
  }

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: border-color var(--transition), color var(--transition);
}

  .footer-social-icon:hover {
    border-color: var(--copper-light);
    color: var(--copper-light);
  }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 0.6rem;
}

/* ── Scroll Animations ────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 991px) {
  /* Collapse to vertical on mobile — no flyouts */
  .dd-l2 {
    position: static;
    margin-left: 1rem;
    box-shadow: none;
    border-left: 2px solid var(--stone-medium);
    border-radius: 0;
    padding: 0;
  }

  .dropdown-submenu:hover .dd-l2,
  .dropdown-submenu.open .dd-l2 {
    display: block;
  }

  .navbar-pill-wrap {
    border-radius: 16px;
    padding: 0 1rem;
  }

  .navbar-outer {
    padding: 8px 12px;
  }

  .navbar-search-form {
    justify-content: flex-start;
    padding: 0.35rem 0;
  }

  .navbar-search.search-open .navbar-search-input {
    width: min(100%, 260px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 3rem 0 2rem;
  }

  .hero-image-wrap {
    justify-content: center;
    margin-top: 2rem;
  }

    .hero-image-wrap img {
      max-height: 280px;
    }

  .about-text-wrap {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .about-image-wrap img {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .hero-headline {
    font-size: 2rem;
  }

  .navbar-brand-text {
    font-size: 1.25rem;
  }
}



/* ── Coming Soon Section ─────────────────────────── */
.coming-soon-section {
  min-height: 80vh;
  position: relative;
  background-color: #e8dfd3;
  overflow: hidden;
}

  /* reuse same paper texture effect like hero */
  .coming-soon-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    mix-blend-mode: multiply;
    pointer-events: none;
  }

/* content */
.coming-soon-content {
  padding-top: 12vh;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: auto;
}

/* eyebrow */
.coming-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

/* title */
.coming-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
}

  .coming-title em {
    color: var(--copper);
    font-style: italic;
  }

/* text */
.coming-text {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.8;
}