* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow: #fff9c4;
  --primary-purple: #e1bee7;
  --accent-color: #ffb74d;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.background-image {
  background-image: url("./photo-1488646953014-85cb44e25828.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  filter: brightness(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 249, 196, 0.85) 0%,
    rgba(225, 190, 231, 0.85) 100%
  );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  padding: 25px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #6a1b9a;
}

.logo i {
  color: #ffb74d;
  font-size: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 17px;
  transition: color 0.3s;
  position: relative;
  padding: 5px 0;
}

.nav-links a:hover {
  color: #6a1b9a;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--primary-yellow),
    var(--primary-purple)
  );
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-family: "Quicksand", sans-serif;
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(to right, #ff9800, #6a1b9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #4a148c;
}

.tagline {
  display: inline-flex;
  gap: 15px;
  font-size: 20px;
  font-weight: 600;
  color: #5e35b1;
  margin-bottom: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 12px 25px;
  border-radius: 50px;
}

/* App Screenshots Section */
.screenshots {
  padding: 60px 0 80px;
}

.section-title {
  font-family: "Quicksand", sans-serif;
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #4a148c;
}

.screenshot-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.screenshot {
  width: 200px;
  height: 450px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s,
    box-shadow 0.4s;
}

.screenshot:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.screenshot:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.screenshot:nth-child(1) .screen-content {
  background: linear-gradient(145deg, #ffecb3, #fff9c4);
}

.screenshot:nth-child(2) .screen-content {
  background: linear-gradient(145deg, #f3e5f5, #e1bee7);
}

.screenshot:nth-child(3) .screen-content {
  background: linear-gradient(145deg, #ffecb3, #fff9c4);
}

.screenshot:nth-child(4) .screen-content {
  background: linear-gradient(145deg, #f3e5f5, #e1bee7);
}

.screen-content {
  position: absolute;
  top: 40px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  padding: 20px 15px;
}

.screen-item {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  margin-bottom: 15px;
  height: 40px;
}

.screen-item.wide {
  height: 80px;
}

.screen-item.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 10px auto;
}

/* Description Sections */
.description {
  padding: 40px 0 100px;
}

.description-section {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.description-title {
  font-family: "Quicksand", sans-serif;
  font-size: 28px;
  color: #4a148c;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.description-title i {
  color: #ff9800;
}

.description-text {
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
}

.highlight {
  color: #5e35b1;
  font-weight: 600;
}

/* Footer */
footer {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px 0 30px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-info {
  font-size: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5e35b1;
}

.copyright {
  font-size: 16px;
  color: var(--text-light);
  text-align: center;
}

.join-section {
  text-align: center;
  padding: 60px 0;
}

.join-button {
  display: inline-block;
  background: linear-gradient(to right, #ff9800, #6a1b9a);
  color: white;
  font-size: 22px;
  font-weight: 600;
  padding: 18px 45px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(106, 27, 154, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.join-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(106, 27, 154, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .screenshot {
    width: 170px;
    height: 382px;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .tagline {
    flex-direction: column;
    gap: 5px;
  }

  .screenshot-container {
    gap: 20px;
  }

  .screenshot {
    width: 140px;
    height: 315px;
  }

  .description-section {
    padding: 30px 25px;
  }
}

@media (max-width: 576px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .tagline {
    font-size: 18px;
  }

  .screenshot {
    width: 120px;
    height: 270px;
  }

  .section-title {
    font-size: 30px;
  }

  .description-title {
    font-size: 24px;
  }

  .description-text {
    font-size: 16px;
  }
}
