* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

body {
  background: #0a0507; /* fallback dark */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main container with background image + semi-transparent dark-to-red overlay */
.site-wrapper {
  flex: 1;
  background-image:
    linear-gradient(145deg, rgba(30, 0, 15, 0.75) 0%, rgba(8, 5, 20, 0.9) 100%),
    url("./photo-1490481651871-ab68de25d43d.avif");
  /* unsplash fashion street style photo — black/dark tones, suitable for overlay */
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-attachment: fixed; /* gives subtle depth */
  color: #f0e9ec;
}

/* navigation & footer background: semi-transparent to blend */
.nav-bar,
.page-footer {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 70, 100, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(130deg, #ff7b89, #a5558a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 80, 120, 0.5);
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f0d7de;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 40px;
  transition: 0.2s;
  border: 1px solid transparent;
}

.nav-links a:hover {
  background: rgba(200, 70, 100, 0.25);
  border-color: #c06c8b;
  color: white;
  backdrop-filter: blur(4px);
}

/* sections general */
section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  scroll-margin-top: 80px; /* for fixed header */
}

/* banner (hero) */
.banner {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.banner h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(145deg, #ffced9, #ff9bb0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 800px;
  text-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.banner p {
  font-size: 1.5rem;
  max-width: 650px;
  color: #f0d9e2;
  background: rgba(40, 10, 20, 0.4);
  backdrop-filter: blur(3px);
  padding: 1.2rem 2rem;
  border-radius: 60px;
  border-left: 6px solid #c54b6f;
}

/* intro & features area — split layout with text + screenshots */
.split-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.split-layout.reverse {
  flex-direction: row-reverse;
}

.text-block {
  flex: 1 1 280px;
  min-width: 280px;
}

.text-block h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  background: linear-gradient(145deg, #feb8c7, #dd889d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-left: 8px solid #a52f5e;
  padding-left: 1.5rem;
}

.text-card {
  background: rgba(10, 5, 12, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 32px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(200, 90, 120, 0.4);
  box-shadow: 0 20px 30px -15px black;
  transition: 0.2s;
}

.text-card:hover {
  border-color: #d66589;
  background: rgba(25, 8, 18, 0.65);
}

.text-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f3e0e7;
}

.text-card i {
  color: #ff99aa;
  margin-right: 10px;
  width: 30px;
  font-size: 1.5rem;
}

.screenshot-grid {
  flex: 1 1 300px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  justify-items: center;
  align-items: start;
}

/* screenshot mockups: vertical mobile proportions */
.screenshot-grid img {
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 28px;
  box-shadow:
    0 25px 40px -10px black,
    0 0 0 2px rgba(210, 120, 160, 0.4);
  transition: 0.3s ease;
  border: 1px solid rgba(255, 180, 200, 0.5);
  transform: rotate(0deg);
  background: #2a1620; /* placeholder if image missing */
}

.screenshot-grid img:nth-child(odd) {
  transform: translateY(15px) rotate(-1deg);
}
.screenshot-grid img:nth-child(even) {
  transform: translateY(-5px) rotate(2deg);
}
.screenshot-grid img:hover {
  transform: scale(1.03) rotate(0deg);
  border-color: #ffa6c2;
}

/* features area extra custom card blocks (since description split into multiple) */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: rgba(20, 5, 15, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(170, 80, 110, 0.6);
}

.feature-icon {
  font-size: 2.5rem;
  min-width: 70px;
  text-align: center;
  color: #fbaac3;
}

.feature-text {
  font-size: 1.2rem;
  font-weight: 400;
}
.feature-text strong {
  color: #ffb7c5;
  font-size: 1.4rem;
}

/* screenshot-only section (extra visual) */
.screenshot-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.screenshot-wall img {
  width: 200px;
  border-radius: 40px;
  box-shadow: 0 30px 30px -10px black;
  border: 2px solid rgba(255, 140, 170, 0.6);
  transition: 0.2s;
}

/* footer */
.page-footer {
  border-top: 1px solid #a53f5f;
  border-bottom: none;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #e7cbd4;
  backdrop-filter: blur(12px);
  margin-top: 2rem;
}

.footer-links {
  margin-bottom: 1.2rem;
}
.footer-links a {
  color: #ffb6c7;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1.1rem;
}
.footer-links a:hover {
  text-decoration: underline;
  color: white;
}
.email,
.copyright {
  font-size: 1.1rem;
  margin: 0.4rem 0;
  letter-spacing: 0.5px;
}
.email i,
.copyright i {
  margin-right: 8px;
  color: #ff809d;
}

/* Responsive */
@media (max-width: 800px) {
  .nav-bar {
    flex-direction: column;
    gap: 0.5rem;
  }
  .banner h1 {
    font-size: 3.5rem;
  }
  .split-layout,
  .split-layout.reverse {
    flex-direction: column;
  }
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .feature-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .banner h1 {
    font-size: 2.8rem;
  }
  .nav-links {
    gap: 0.8rem;
    justify-content: center;
  }
  .nav-links a {
    font-size: 1rem;
  }
}

/* decorative anchor offset */
.anchor {
  display: block;
  position: relative;
  top: -70px;
  visibility: hidden;
}
