/* Ing Pawon Redesign Announcement Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary-dark: #1B3B2B;
  --primary: #2E5A44;
  --primary-light: #4C7C63;
  --accent-gold: #D4AF37;
  --accent-gold-light: #F4E8C1;
  --accent-gold-dark: #A88624;
  --accent-sand: #C5A880;
  
  --bg-cream: #FAF7F2;
  --bg-sand: #F3ECE2;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-dark-card: rgba(27, 59, 43, 0.85);
  
  --text-dark: #1C2520;
  --text-muted: #5A6960;
  --text-light: #FFFFFF;
  
  --shadow-glow: 0 20px 40px rgba(46, 90, 68, 0.15);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  overflow-x: hidden;
  position: relative;
}

/* Background Animated Graphics */
.bg-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: floatBlob 18s ease-in-out infinite alternate;
}

.blob-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #2E5A44 0%, rgba(46,90,68,0) 70%);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #D4AF37 0%, rgba(212,175,55,0) 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -7s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4C7C63 0%, rgba(76,124,99,0) 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -12s;
  opacity: 0.25;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.08); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Pattern overlay */
.bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(46, 90, 68, 0.08) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

/* App Wrapper */
.app-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-logo-container:hover .brand-logo {
  transform: scale(1.05);
}

.lang-switch {
  display: flex;
  background: rgba(46, 90, 68, 0.08);
  padding: 4px;
  border-radius: 30px;
  gap: 4px;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-btn.active {
  background: var(--primary-dark);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(27, 59, 43, 0.2);
}

/* Hero Section */
.hero {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(46, 90, 68, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
  animation: pulseBadge 2.5s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); border-color: rgba(212, 175, 55, 0.4); }
  50% { transform: scale(1.02); border-color: rgba(212, 175, 55, 0.8); }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #E67E22;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(230, 126, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0); }
}

.main-logo-hero {
  margin-bottom: 2rem;
}

.main-logo-img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(46, 90, 68, 0.15));
  transition: transform 0.4s ease;
}

.main-logo-img:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  max-width: 850px;
  margin-bottom: 1.25rem;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light), var(--accent-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Main Call to Actions */
.cta-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(225, 48, 108, 0.35);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-ig::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn-ig:hover::before {
  left: 100%;
}

.btn-ig:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 36px rgba(225, 48, 108, 0.45);
  color: #FFFFFF;
}

.btn-ig i {
  font-size: 1.4rem;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid rgba(46, 90, 68, 0.25);
  backdrop-filter: blur(10px);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.btn-secondary-custom:hover {
  background: var(--primary-dark);
  color: #FFFFFF;
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 59, 43, 0.25);
}

/* Status / Progress Card */
.progress-card {
  width: 100%;
  max-width: 750px;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-glow);
  margin-bottom: 4rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.progress-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-percentage {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
}

.progress-bar-bg {
  width: 100%;
  height: 12px;
  background: rgba(46, 90, 68, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  width: 88%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
  border-radius: 20px;
  position: relative;
  animation: shimmerProgress 3s infinite linear;
}

@keyframes shimmerProgress {
  0% { opacity: 0.9; }
  50% { opacity: 1; }
  100% { opacity: 0.9; }
}

.progress-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Feature Grid */
.features-section {
  width: 100%;
  margin-bottom: 4rem;
}

.section-label {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(46, 90, 68, 0.12);
  border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--accent-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 16px rgba(27, 59, 43, 0.2);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Product Showcase Carousel / Strip */
.product-showcase {
  width: 100%;
  margin-bottom: 4rem;
  text-align: center;
}

.product-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0.5rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-sand) transparent;
}

.product-carousel::-webkit-scrollbar {
  height: 6px;
}
.product-carousel::-webkit-scrollbar-thumb {
  background-color: var(--accent-sand);
  border-radius: 10px;
}

.product-card {
  flex: 0 0 210px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(46, 90, 68, 0.08);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(46, 90, 68, 0.15);
}

.product-img {
  height: 150px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.1));
}

.product-name {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 0.95rem;
}

/* Instagram Highlight Box */
.ig-highlight-box {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #12281D 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(18, 40, 29, 0.3);
  margin-bottom: 3rem;
}

.ig-highlight-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%);
  border-radius: 50%;
}

.ig-highlight-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.ig-icon-lg {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}

.ig-highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.ig-highlight-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 90, 68, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--accent-gold-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-container {
    padding: 1.25rem 1rem 3rem;
  }
  .navbar {
    padding: 0.75rem 1.25rem;
  }
  .hero {
    margin-top: 2rem;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 380px;
  }
  .btn-ig, .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
  .progress-card {
    padding: 1.5rem 1.25rem;
  }
}
