/* PictPath Homepage - Illustrated Nature Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: #0d4532;
  line-height: 1.6;
  background: #f5efe1;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SECTION WITH ILLUSTRATION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #4A90D9 0%, #87CEEB 30%, #B0E0E6 60%, #E8F4EC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Sun */
.sun {
  position: absolute;
  top: 60px;
  right: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE066 0%, #FFD93D 50%, #FFA500 100%);
  box-shadow: 0 0 80px 40px rgba(255, 215, 0, 0.4);
  z-index: 1;
}

.sun-glow {
  position: absolute;
  top: 30px;
  right: calc(10% - 30px);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  z-index: 0;
}

/* Clouds */
.cloud {
  position: absolute;
  z-index: 2;
}

.cloud-1 {
  top: 100px;
  left: 15%;
}

.cloud-2 {
  top: 180px;
  right: 25%;
}

.cloud-part {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.cloud-1 .cloud-part-1 { width: 100px; height: 50px; left: 25px; top: 20px; }
.cloud-1 .cloud-part-2 { width: 75px; height: 45px; left: 0; top: 35px; }
.cloud-1 .cloud-part-3 { width: 85px; height: 45px; left: 75px; top: 35px; }

.cloud-2 .cloud-part-1 { width: 70px; height: 35px; left: 15px; top: 10px; }
.cloud-2 .cloud-part-2 { width: 55px; height: 30px; left: 0; top: 20px; }
.cloud-2 .cloud-part-3 { width: 60px; height: 30px; left: 50px; top: 20px; }

/* Mountains */
.mountains {
  position: absolute;
  bottom: 200px;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(180deg, #7CB38F 0%, #5A9A6E 100%);
  clip-path: polygon(0% 100%, 10% 50%, 25% 80%, 40% 30%, 55% 70%, 70% 40%, 85% 60%, 100% 20%, 100% 100%);
  z-index: 3;
}

/* Forest */
.forest {
  position: absolute;
  bottom: 140px;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 15px;
  z-index: 4;
  padding: 0 20px;
}

.tree {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 80px solid #1A4D2E;
  flex-shrink: 0;
}

.tree:nth-child(odd) {
  border-bottom-color: #2D5A3D;
  border-left-width: 20px;
  border-right-width: 20px;
  border-bottom-width: 60px;
}

.tree:nth-child(3n) {
  border-bottom-color: #0D3B1E;
  border-left-width: 30px;
  border-right-width: 30px;
  border-bottom-width: 100px;
}

/* Ground */
.ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, #4A7C39 0%, #3D6B2F 50%, #2D5A23 100%);
  z-index: 5;
}

/* Path */
.path {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
}

.path-segment {
  position: absolute;
  background: #C4A76C;
  border-radius: 40%;
}

.path-1 { bottom: 0; left: 0; width: 100px; height: 60px; border-radius: 50% 50% 0 0; }
.path-2 { bottom: 50px; left: -20px; width: 80px; height: 50px; background: #B89958; }
.path-3 { bottom: 90px; left: -40px; width: 60px; height: 40px; background: #A68B48; }
.path-4 { bottom: 120px; left: -55px; width: 45px; height: 35px; background: #947D3A; }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: 40px 20px;
  margin-top: -100px;
}

.hero .logo {
  width: 140px;
  height: 140px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  margin-bottom: 24px;
  background: white;
}

.hero h1 {
  font-size: 4rem;
  color: #0D3B1E;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(255,255,255,0.5);
}

.hero .tagline {
  font-size: 1.6rem;
  color: #1A4D2E;
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(255,255,255,0.4);
}

.hero .sub-tagline {
  font-size: 1.2rem;
  color: #2D5A3D;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(255,255,255,0.3);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.cta-button.primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
  background: rgba(255,255,255,0.9);
  color: #0D3B1E;
}

.cta-button.secondary:hover {
  background: white;
  transform: translateY(-3px);
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
  background: #f5efe1;
  padding: 80px 24px;
}

.screenshots h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #0d4532;
  margin-bottom: 48px;
  font-weight: 700;
}

.screenshots-scroll {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-card {
  flex: 0 0 300px;
  scroll-snap-align: center;
  text-align: center;
}

.screenshot-frame {
  width: 270px;
  height: auto;
  border-radius: 32px;
  overflow: hidden;
  margin: 0 auto 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  border: 6px solid #222;
  background: #222;
}

.screenshot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshot-placeholder {
  width: 250px;
  height: 500px;
  background: linear-gradient(135deg, #0d4532 0%, #1a6b4a 100%);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 8px solid #222;
  position: relative;
}

.screenshot-placeholder::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #222;
  border-radius: 12px;
}

.placeholder-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.placeholder-text {
  color: #f5efe1;
  font-size: 1.2rem;
  font-weight: 600;
}

.screenshot-card p {
  color: #0d4532;
  font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features {
  background: #0d4532;
  padding: 80px 24px;
}

.features h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #f5efe1;
  margin-bottom: 48px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #f5efe1;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.feature-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.4rem;
  color: #0d4532;
  margin-bottom: 12px;
  font-weight: 600;
}

.feature-card p {
  font-size: 1rem;
  color: #2a5a44;
  line-height: 1.7;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
  background: #f5efe1;
  padding: 80px 24px;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #0d4532;
  margin-bottom: 48px;
  font-weight: 700;
}

.steps {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 280px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(13,69,50,0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  color: #0d4532;
  margin-bottom: 12px;
  font-weight: 600;
}

.step p {
  color: #2a5a44;
  line-height: 1.7;
}

/* ===== DOWNLOAD SECTION ===== */
.download {
  background: linear-gradient(135deg, #0d4532 0%, #1a6b4a 100%);
  padding: 100px 24px;
  text-align: center;
}

.download h2 {
  font-size: 2.4rem;
  color: #f5efe1;
  margin-bottom: 16px;
  font-weight: 700;
}

.download-subtitle {
  color: rgba(245, 239, 225, 0.8);
  font-size: 1.2rem;
  margin-bottom: 48px;
}

.download-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #000;
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
}

.store-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.store-button.coming-soon {
  opacity: 0.7;
  cursor: default;
  position: relative;
  border: 2px dashed rgba(255,255,255,0.4);
}

.store-button.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.store-button.coming-soon::after {
  content: '🔜';
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 1.5rem;
}

.store-icon {
  width: 40px;
  height: 40px;
}

.store-text {
  text-align: left;
}

.store-subtitle {
  display: block;
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-name {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background: #0a3526;
  padding: 40px 24px;
  color: #f5efe1;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-brand span {
  display: inline-block;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(245, 239, 225, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5efe1;
}

.copyright {
  text-align: center;
  color: rgba(245, 239, 225, 0.5);
  font-size: 0.9rem;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  padding-top: 24px;
}

/* ===== PREMIUM INFO ===== */
.premium-info {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.premium-info h3 {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.premium-info p {
  color: #f5efe1;
  margin-bottom: 16px;
  line-height: 1.6;
}

.premium-info strong {
  color: #ffd700;
}

.premium-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.premium-features li {
  color: #f5efe1;
  padding: 8px 0;
  font-size: 1rem;
}

.premium-note {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 0;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: #f5efe1;
  padding: 80px 24px;
}

.faq h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #0d4532;
  margin-bottom: 48px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(13, 69, 50, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(13, 69, 50, 0.12);
}

.faq-item h3 {
  color: #0d4532;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.faq-item p {
  color: #2a5a44;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* ===== PRIVACY PAGE ===== */
.privacy-page {
  background: #f5efe1;
  min-height: 100vh;
  padding: 40px 24px 80px;
}

.privacy-page h1 {
  font-size: 2.5rem;
  color: #0d4532;
  margin-bottom: 8px;
}

.privacy-page .last-updated {
  color: #666;
  margin-bottom: 40px;
}

.privacy-page section {
  margin-bottom: 32px;
}

.privacy-page h2 {
  font-size: 1.5rem;
  color: #0d4532;
  margin-bottom: 16px;
  margin-top: 32px;
}

.privacy-page h3 {
  font-size: 1.2rem;
  color: #1a6b4a;
  margin-bottom: 12px;
  margin-top: 20px;
}

.privacy-page p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-page ul {
  margin-left: 24px;
  color: #333;
  line-height: 1.8;
}

.privacy-page li {
  margin-bottom: 8px;
}

.privacy-page a {
  color: #1a6b4a;
}

.back-link {
  display: inline-block;
  color: #1a6b4a;
  text-decoration: none;
  margin-bottom: 32px;
  font-weight: 500;
}

.back-link:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero .tagline {
    font-size: 1.3rem;
  }
  
  .sun {
    width: 80px;
    height: 80px;
    top: 40px;
    right: 20px;
  }
  
  .cloud-1 {
    left: 5%;
    top: 60px;
    transform: scale(0.7);
  }
  
  .cloud-2 {
    display: none;
  }
  
  .forest {
    gap: 8px;
  }
  
  .tree {
    border-left-width: 15px;
    border-right-width: 15px;
    border-bottom-width: 50px;
  }
  
  .tree:nth-child(3n) {
    border-left-width: 20px;
    border-right-width: 20px;
    border-bottom-width: 70px;
  }
  
  .screenshot-placeholder {
    width: 200px;
    height: 400px;
  }
  
  .steps {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .premium-info {
    padding: 24px;
    margin-top: 32px;
  }
  
  .faq h2,
  .features h2,
  .how-it-works h2,
  .download h2 {
    font-size: 2rem;
  }
}
