/* =====================================================
   PREM HANDICRAFTS — MAIN STYLESHEET
   Design tokens: warm wood-brown / golden-beige / cream
   ===================================================== */

:root {
  --wood-brown: #8B5E3C;
  --wood-brown-dark: #6e4a2f;
  --golden-beige: #C89F65;
  --cream: #F4E8D5;
  --dark: #2D2D2D;
  --white: #FFFFFF;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 20px 45px -20px rgba(139, 94, 60, 0.35);
  --shadow-card: 0 12px 30px -12px rgba(45, 45, 45, 0.18);

  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, .brand-mark {
  font-family: var(--font-display);
  color: var(--dark);
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

img { max-width: 100%; display: block; }

::selection { background: var(--golden-beige); color: var(--white); }

.section-padding { padding: 110px 0; }

.text-accent { color: var(--wood-brown); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wood-brown);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--golden-beige);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 18px;
}
.light-title { color: var(--white); }

.section-desc {
  max-width: 620px;
  color: #6b6b6b;
  font-size: 1.03rem;
}

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--wood-brown);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.chisel-loader { display: flex; gap: 8px; }
.chisel-loader span {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--wood-brown);
  animation: bounceDot 1.1s infinite ease-in-out;
}
.chisel-loader span:nth-child(2) { background: var(--golden-beige); animation-delay: 0.15s; }
.chisel-loader span:nth-child(3) { background: var(--cream); border: 1px solid var(--golden-beige); animation-delay: 0.3s; }
@keyframes bounceDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-14px); opacity: 1; }
}

/* ---------- Header ---------- */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: var(--transition);
}
.main-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px -12px rgba(45,45,45,0.15);
  padding: 10px 0;
}

.navbar-brand { display: flex; align-items: baseline; gap: 6px; }
.brand-mark { font-size: 1.6rem; font-weight: 800; color: var(--wood-brown); }
.main-header.scrolled .brand-mark { color: var(--wood-brown); }
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--golden-beige);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark);
  margin: 0 14px;
  position: relative;
  padding: 6px 0 !important;
}
.main-header:not(.scrolled) .navbar-nav .nav-link { color: var(--dark); }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--wood-brown);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 100%; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--wood-brown); }

.header-buttons { display: flex; gap: 10px; }
.btn-call, .btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-call {
  border: 1.5px solid var(--wood-brown);
  color: var(--wood-brown);
}
.btn-call:hover { background: var(--wood-brown); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebc59; color: var(--white); }

.navbar-toggler { border: none; background: none; padding: 6px; }
.toggler-line {
  display: block;
  width: 26px; height: 2px;
  margin: 5px 0;
  background: var(--wood-brown);
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--wood-brown), var(--wood-brown-dark));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 45px -18px rgba(139,94,60,0.55);
  color: var(--white);
}

.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: 1.5px solid var(--wood-brown);
  color: var(--wood-brown);
  background: transparent;
  transition: var(--transition);
}
.btn-outline-custom:hover { background: var(--wood-brown); color: var(--white); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: linear-gradient(180deg, var(--cream) 0%, #fbf6ec 55%, var(--white) 100%);
  overflow: hidden;
}

.hero-shapes .shape { position: absolute; border-radius: 50%; opacity: 0.5; }
.shape-ring {
  width: 340px; height: 340px;
  border: 40px solid var(--golden-beige);
  opacity: 0.18;
  top: -80px; right: -100px;
  animation: rotateSlow 40s linear infinite;
}
.shape-dot {
  width: 90px; height: 90px;
  background: var(--wood-brown);
  opacity: 0.12;
  bottom: 60px; left: 4%;
  animation: floatY 6s ease-in-out infinite;
}
.shape-arc {
  width: 220px; height: 220px;
  border: 2px dashed var(--wood-brown);
  opacity: 0.25;
  top: 20%; left: -60px;
  animation: rotateSlow 60s linear infinite reverse;
}
.shape-grain {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--golden-beige) 0%, transparent 70%);
  opacity: 0.15;
  bottom: -200px; right: 10%;
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--wood-brown);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  background: rgba(200,159,101,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: #5c5c5c;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat-box h3 {
  font-size: 2.2rem;
  color: var(--wood-brown);
  margin-bottom: 2px;
}
.stat-box p { font-size: 0.85rem; color: #6b6b6b; margin: 0; text-transform: uppercase; letter-spacing: 1px; }

.hero-image { position: relative; }
.hero-img-frame { position: relative; }
.main-hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  /*width: 100%;*/
  height: 560px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  animation: floatY 5s ease-in-out infinite;
}
.floating-card i { font-size: 1.4rem; color: var(--wood-brown); }
.floating-card strong { display: block; font-size: 0.9rem; }
.floating-card span { font-size: 0.78rem; color: #777; }
.fc-1 { top: 8%; left: -8%; }
.fc-2 { bottom: 8%; right: -8%; animation-delay: 1.5s; }

.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid var(--wood-brown);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 5px; height: 5px;
  background: var(--wood-brown);
  border-radius: 50%;
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ---------- Section Divider ---------- */
.section-divider { line-height: 0; }
.section-divider svg { width: 100%; height: 60px; }
.section-divider path { fill: var(--cream); }

/* ---------- About ---------- */
.about-img-wrap { position: relative; }
.about-img-wrap img { height: 620px; object-fit: cover; width: 100%; }
.about-badge {
  position: absolute;
  bottom: -30px; right: -20px;
  background: var(--wood-brown);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-soft);
  max-width: 240px;
}
.about-badge i { font-size: 1.8rem; }
.about-badge p { margin: 0; font-size: 0.85rem; font-weight: 500; line-height: 1.4; }

.about-text { color: #5c5c5c; margin-bottom: 18px; }

.about-highlights { margin-top: 28px; }
.highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
}
.highlight-box i { color: var(--wood-brown); font-size: 1.2rem; }
.highlight-box:hover { background: var(--wood-brown); color: var(--white); transform: translateY(-4px); }
.highlight-box:hover i { color: var(--white); }

/* ---------- Products ---------- */
.products-section { background: var(--white); }

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-soft); }

.product-img { position: relative; overflow: hidden; aspect-ratio: 1/1; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img img { transform: scale(1.1); }

.product-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(45,45,45,0) 40%, rgba(45,45,45,0.75) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-view {
  background: var(--white);
  color: var(--wood-brown);
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.85rem;
}
.btn-view:hover { background: var(--golden-beige); color: var(--white); }

.product-body { padding: 22px; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.product-body p { font-size: 0.88rem; color: #6b6b6b; margin-bottom: 14px; min-height: 42px; }
.inquiry-link { font-weight: 600; font-size: 0.85rem; color: var(--wood-brown); }
.inquiry-link:hover { gap: 10px; color: var(--golden-beige); }
.inquiry-link i { margin-left: 4px; transition: var(--transition); }
.inquiry-link:hover i { margin-left: 8px; }

/* ---------- Why Choose Us ---------- */
.why-us-section {
  background: linear-gradient(135deg, var(--wood-brown) 0%, var(--wood-brown-dark) 100%);
  position: relative;
}
.feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.feature-card:hover { background: rgba(255,255,255,0.16); transform: translateY(-8px); }
.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--golden-beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
}
.feature-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* ---------- Inquiry Form ---------- */
.inquiry-section { background: var(--cream); position: relative; overflow: hidden; }
.inquiry-bg-illustration {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(139,94,60,0.06);
  top: -150px; left: -150px;
}
.inquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}
.form-label { font-weight: 500; font-size: 0.9rem; margin-bottom: 6px; }
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid #e8e0d3;
  padding: 12px 16px;
  font-size: 0.92rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--wood-brown);
  box-shadow: 0 0 0 4px rgba(139,94,60,0.12);
}
.btn-submit { padding: 14px 44px; margin-top: 8px; }
.form-success {
  color: var(--wood-brown);
  font-weight: 600;
  margin-top: 12px;
  min-height: 24px;
}

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eee0cc;
  background: transparent;
}
.faq-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 22px 4px;
  background: transparent;
  box-shadow: none;
  color: var(--dark);
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--wood-brown); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after { filter: sepia(1) saturate(2) hue-rotate(0deg) brightness(0.7); }
.faq-accordion .accordion-body { padding: 0 4px 24px; color: #6b6b6b; }

/* ---------- Social ---------- */
.social-section { padding: 90px 0; background: var(--white); }
.social-icons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.social-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  color: var(--wood-brown);
  font-size: 1.3rem;
  transition: var(--transition);
}
.social-circle:hover {
  background: var(--wood-brown);
  color: var(--white);
  transform: translateY(-8px) rotate(8deg);
}

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  padding: 130px 0;
  background: url('../images/pic11.jpg') center/cover no-repeat fixed;
  text-align: center;
}
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45,45,45,0.85), rgba(139,94,60,0.75)); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 34px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 80px 0 30px; }
.footer-brand { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--white); }
.footer-brand span { color: var(--golden-beige); }
.footer-about { margin: 16px 0 20px; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.footer-social a:hover { background: var(--golden-beige); border-color: var(--golden-beige); }

.site-footer h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-links a:hover { color: var(--golden-beige); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0 0 18px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-contact i { color: var(--golden-beige); margin-top: 3px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--golden-beige); }

.footer-map { border-radius: var(--radius-sm); overflow: hidden; }
.footer-map iframe { width: 100%; height: 160px; border: 0; filter: grayscale(0.3); }

.site-footer hr { border-color: rgba(255,255,255,0.12); margin: 40px 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; }
.footer-bottom i { color: var(--golden-beige); }

/* ---------- Floating Buttons ---------- */
.floating-btn {
  position: fixed;
  right: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.4);
  z-index: 900;
  transition: var(--transition);
  border: none;
}
.whatsapp-float { bottom: 100px; background: #25D366; }
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.call-float { bottom: 168px; background: var(--wood-brown); }
.call-float:hover { transform: scale(1.1); color: var(--white); }
.back-to-top {
  bottom: 32px; background: var(--dark);
  opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--wood-brown); }

/* ---------- Utility animations ---------- */
[data-aos] { transition-property: opacity, transform; }


.footer-brand img    
{
background-color: #fff;
    padding: 5px 5px;
    border-radius: 9px;
}