/* ============================================================
   D'PERA — Home Page Styles
   ============================================================ */

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,166,35,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(232,98,26,0.15) 0%, transparent 50%),
    linear-gradient(160deg, var(--cream) 0%, #FFF0D8 50%, var(--cream-dark) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: float linear infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-text { display: flex; flex-direction: column; gap: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(232,98,26,0.1);
  border: 1px solid rgba(232,98,26,0.25);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  width: fit-content;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--brown);
  letter-spacing: -1px;
}
.hero-title span {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232,98,26,0.12);
  backdrop-filter: blur(12px);
  width: fit-content;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(232,98,26,0.2);
}

/* ── Hero Visual ─────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  animation: float 5s ease-in-out infinite;
}
.hero-img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(245,166,35,0.25);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232,98,26,0.12);
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-img-badge-icon { font-size: 2rem; }
.hero-img-badge-title { font-size: 0.75rem; color: var(--gray); font-weight: 500; }
.hero-img-badge-sub {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}
.hero-img-badge-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
  margin-left: 8px;
}

/* ── Scroll Hint ────────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  font-size: 0.8rem;
  color: var(--gray);
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── Highlights Strip ───────────────────────────────────── */
.highlights-strip {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  padding: 28px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.highlight-icon { font-size: 1.8rem; flex-shrink: 0; }
.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.highlight-text strong { font-weight: 700; font-size: 0.95rem; }
.highlight-text span   { font-size: 0.8rem; opacity: 0.85; }

/* ── Featured Section ───────────────────────────────────── */
.featured { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.featured-cta { text-align: center; }

/* ── About Section ──────────────────────────────────────── */
.about {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-stack { position: relative; height: 480px; }
.about-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-img-card--main {
  width: 75%;
  height: 380px;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.about-img-card--side {
  width: 55%;
  height: 260px;
  top: 0;
  right: 0;
  z-index: 1;
  box-shadow: var(--shadow-md);
}
.about-float-badge {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 1.3rem;
  animation: float 4s ease-in-out infinite;
}
.about-float-badge strong { display: block; font-size: 0.85rem; font-weight: 700; }
.about-float-badge em { display: block; font-style: normal; font-size: 0.75rem; opacity: 0.9; }

.ornament--left { justify-content: flex-start; }
.ornament--left::before { display: none; }

.about-text {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 8px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--orange);
}
.about-feature-icon { font-size: 1.6rem; flex-shrink: 0; }
.about-feature strong { display: block; font-weight: 600; color: var(--brown); font-size: 0.95rem; }
.about-feature span   { font-size: 0.85rem; color: var(--gray); }

/* ── Instagram CTA ──────────────────────────────────────── */
.instagram-cta {
  background: linear-gradient(135deg, var(--brown) 0%, #5C2800 100%);
  padding: 80px 0;
}
.instagram-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.instagram-cta-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--cream);
}
.instagram-icon { font-size: 3rem; }
.instagram-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
}
.instagram-cta-text p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.6;
}
.instagram-cta-text strong { color: var(--yellow); }

.insta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.insta-cell {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
.insta-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.insta-cell:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,98,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: var(--transition);
}
.insta-cell:hover .insta-overlay { opacity: 1; }

/* ── Contact ────────────────────────────────────────────── */
.contact { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--cream-dark);
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item-body strong {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}
.contact-item-body span {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}
.contact-link {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.map-wrapper iframe { display: block; }
.map-link-overlay {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  white-space: nowrap;
}
.map-link-overlay:hover {
  background: var(--orange-dark);
  transform: translateX(-50%) translateY(-2px);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content       { gap: 40px; }
  .products-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid         { gap: 40px; }
  .instagram-cta-inner{ gap: 40px; }
  .highlights-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid       { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 20px;
  }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats   { width: 100%; justify-content: center; }
  .hero-badge   { margin: 0 auto; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .ornament--left { justify-content: center; }
  .section-title[style] { text-align: center !important; }
  .instagram-cta-inner { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
}
