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

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation: fadeUp 0.6s ease 0.2s forwards; opacity: 0; }
.fade-up-delay-2 { animation: fadeUp 0.6s ease 0.4s forwards; opacity: 0; }
.fade-in-right { animation: fadeInRight 0.8s ease forwards; }

/* Page */
.page {
  min-height: 100vh;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-shape svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.swish-lines {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 28%;
  height: 200px;
  z-index: 1;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;   /* vertical alignment */
  justify-content: flex-start;
}
.logo img {
  height: 48px;     /* adjust to taste (32–40px usually sweet spot) */
  width: auto;      /* keeps proportions */
  display: block;   /* removes weird baseline spacing */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1e293b; }
.btn-download {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: white;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.btn-download:hover {
  border-color: #1e293b;
}

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px;
  gap: 96px;
}
.hero-left {
  flex: 1;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-softtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem,37vw, 3rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 10px;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #0f172a;
  margin-bottom: 16px;
}
.hero-title-italic {
  font-family: 'Libre Baskerville', 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem,37vw, 3rem);
}
.hero-desc {
  color: #64748b;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 420px;
  font-weight: 500;
}

.btn-get-started {
  height: 56px;
  padding: 0 20px;
  border-radius: 9999px;
  background: #0f172a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 40px rgba(15,23,42,0.12);
  transition: background 0.2s;
}
.btn-get-started:hover { background: #1e293b; }

/* Store badges */
.store-section { padding-top: 16px; }
.store-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.store-badges { display: flex; gap: 16px; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.store-badge:hover { background: #1e293b; }
.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.store-badge-sub {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  color: #d1d5db;
}
.store-badge-main {
  font-size: 14px;
  font-weight: 700;
}

/* Phone */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.phone-frame {
  position: relative;
  border: 14px solid #1f2937;
  border-radius: 2.5rem;
  height: 600px;
  width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: #1f2937;
}
.phone-notch {
  width: 148px;
  height: 18px;
  background: #1f2937;
  border-radius: 0 0 1rem 1rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.phone-btn-left {
  width: 3px;
  background: #1f2937;
  position: absolute;
  left: -17px;
  border-radius: 4px 0 0 4px;
}
.phone-btn-right {
  height: 64px;
  width: 3px;
  background: #1f2937;
  position: absolute;
  right: -17px;
  top: 142px;
  border-radius: 0 4px 4px 0;
}

.phone-screen {
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #f8fafc;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.status-bar {
  height: 32px;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px 0;
  font-size: 10px;
  font-weight: 500;
  color: #6b7280;
  z-index: 10;
}
.status-dots { display: flex; gap: 4px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-light { background: #e5e7eb; }
.dot-dark { background: #111827; }

.phone-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 80px;
  background: #f8fafc;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.phone-content::-webkit-scrollbar { display: none; }

.phone-header {
  padding: 16px 20px 8px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.phone-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.phone-header-icons { display: flex; gap: 12px; }

.phone-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.phone-tab {
  padding-bottom: 8px;
  font-weight: 500;
  font-size: 12px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94a3b8;
  cursor: pointer;
}
.phone-tab.active {
  border-bottom-color: #7c3aed;
  color: #7c3aed;
  font-weight: 600;
}

.phone-cards {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Tip card */
.tip-card {
  background: #eff6ff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.tip-icon {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tip-title { font-weight: 700; color: #1e293b; font-size: 14px; }
.tip-sub { font-size: 12px; color: #64748b; margin-top: 2px; }

/* Bali card */
.bali-card {
  background: #fff;
  padding: 16px;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
}
.bali-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.bali-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.bali-sub { font-size: 12px; color: #64748b; margin-top: 4px; }

.avatars { display: flex; }
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
}
.avatar-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
}

.bali-date-row { display: flex; gap: 8px; margin-bottom: 16px; }
.bali-date {
  background: #f8fafc;
  padding: 6px 12px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
}

.bali-images { display: flex; gap: 12px; }
.bali-img {
  flex: 1;
  height: 96px;
  background: #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.bali-img img { width: 100%; height: 100%; object-fit: cover; }
.bali-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
}
.bali-btn {
  width: 100%;
  margin-top: 16px;
  background: #0f172a;
  color: #fff;
  padding: 12px 0;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

/* Ubud card */
.ubud-card {
  background: #fff;
  padding: 12px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid #f1f5f9;
  align-items: center;
}
.ubud-img {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.ubud-img img { width: 100%; height: 100%; object-fit: cover; }
.ubud-title { font-weight: 700; color: #0f172a; font-size: 14px; }
.ubud-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}
.ubud-people {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Bottom nav */
.phone-bottom-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 16px 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-icon-center { color: #7c3aed; }
.nav-center-circle {
  width: 40px;
  height: 40px;
  background: #7c3aed;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -32px;
  box-shadow: 0 4px 14px rgba(124,58,237,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .navbar { padding: 8px 12px; }
  .nav-links { display: none; }
  .hero {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    text-align: center;
    align-items: center;
  }
  .hero-left { align-items: center; }
  .hero-desc { max-width: 100%; }
  .hero-right { justify-content: center; }
  .store-badges { justify-content: center; }
  .store-label { text-align: center; }
}

/* ===========================
   UmojaGram DARK THEME (PHONE UI)
   Paste at END of your CSS
   =========================== */

:root{
  --fg-bg: #0B1220;            /* app dark */
  --fg-surface: #111827;       /* card/surface */
  --fg-surface-2: #0F172A;     /* deeper surface */
  --fg-border: rgba(255,255,255,0.10);
  --fg-text: #F9FAFB;
  --fg-muted: rgba(249,250,251,0.72);

  --fg-pink: #FF6B9D;
  --fg-purple: #C06CD8;

  --fg-grad: linear-gradient(135deg, var(--fg-pink) 0%, var(--fg-purple) 100%);
}

/* Phone shell can stay dark, but add a tiny gradient edge */
.phone-frame{
  background: #0B1220;
  border-color: #0F172A;
  box-shadow: 0 24px 90px rgba(0,0,0,0.45);
}

/* Entire phone screen to dark */
.phone-screen{
  background: var(--fg-bg);
}

/* Status bar */
.status-bar{
  background: rgba(11,18,32,0.92);
  color: rgba(249,250,251,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dot-light{ background: rgba(255,255,255,0.25); }
.dot-dark{ background: rgba(255,255,255,0.85); }

/* Scroll area background */
.phone-content{
  background: var(--fg-bg);
}

/* Header + tabs */
.phone-header{
  background: rgba(11,18,32,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-title{
  color: var(--fg-text);
}

.phone-tabs{
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.phone-tab{
  color: rgba(249,250,251,0.60);
}

.phone-tab.active{
  border-bottom-color: transparent;
  color: var(--fg-text);
  font-weight: 700;
  position: relative;
}

/* gradient underline for active tab */
.phone-tab.active::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: var(--fg-grad);
}

/* Cards list spacing still fine */
.phone-cards{
  padding: 16px;
}

/* Tip card -> make it a dark surface with gradient icon */
.tip-card{
  background: rgba(17,24,39,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.tip-icon{
  background: rgba(255,107,157,0.16);
  border: 1px solid rgba(255,107,157,0.25);
}

.tip-title{
  color: var(--fg-text);
}

.tip-sub{
  color: var(--fg-muted);
}

/* Main post card */
.bali-card{
  background: rgba(17,24,39,0.90);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.bali-title{
  color: var(--fg-text);
}

.bali-sub{
  color: var(--fg-muted);
}

/* Avatars keep white ring, but soften */
.avatar{
  border-color: rgba(255,255,255,0.65);
}

.avatar-count{
  color: rgba(249,250,251,0.9);
}

/* Image tiles */
.bali-img{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

/* If you use the little badge on images, darken it */
.bali-price{
  background: rgba(11,18,32,0.70);
  color: rgba(249,250,251,0.90);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Button -> UmojaGram gradient */
.bali-btn{
  background: var(--fg-grad);
  color: white;
  border: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(192,108,216,0.25);
}

.bali-btn:hover{
  filter: brightness(1.05);
}

/* Small album card */
.ubud-card{
  background: rgba(17,24,39,0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

.ubud-title{
  color: var(--fg-text);
}

.ubud-meta{
  color: var(--fg-muted);
}

.ubud-people svg{
  stroke: rgba(249,250,251,0.55);
}

/* Bottom nav */
.phone-bottom-nav{
  background: rgba(11,18,32,0.96);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-icon{
  color: rgba(249,250,251,0.45);
}

.nav-icon svg{
  stroke: rgba(249,250,251,0.45);
}

/* center action button -> gradient */
.nav-center-circle{
  background: var(--fg-grad);
  box-shadow: 0 10px 28px rgba(255,107,157,0.22);
}

.store-badge-disabled {
  background: #1f2937 !important;      /* dark grey instead of black */
  color: #9ca3af !important;           /* muted text */
  opacity: 0.6;
  cursor: not-allowed;
  filter: grayscale(100%);
  border: 1px solid #374151;
  pointer-events: none;
  box-shadow: none;
}

.store-badge-disabled svg {
  stroke: #9ca3af !important;
  fill: #9ca3af !important;
}

.store-badge-disabled .store-badge-sub,
.store-badge-disabled .store-badge-main {
  color: #9ca3af !important;
}

.store-badge-disabled:hover {
  background: #1f2937 !important;
}

/* Footer links under buttons */
.page-footer{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link{
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-link:hover{
  color: #0f172a;
  text-decoration: underline;
}

.footer-sep{
  color: #cbd5e1;
  font-size: 12px;
}
