/* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  /* background: #f5f5f5; */
  color: hsl(0, 0%, 20%);
}

html,
body {
  overflow-x: hidden;
}

/* Navbar */
.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  /* background-color: #111; */
}

nav {
  background: #fff;
  padding: 15px 0;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  color: #111;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #111;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
  font-size: 16px;
}

nav ul li a.active {
  color: #00b7ff;
}

.Download_App {
  padding: 1rem 2rem;
  background-color: rgb(0 136 254);
  border-radius: 15px;
  border-color: #111;
  color: #fff;
  text-decoration: none;
}

/* Main Container */
.container {
  max-width: 850px;
  margin: 40px auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Headings */
h1 {
  margin-bottom: 25px;
  font-size: 32px;
  color: #222;
}

h2 {
  margin-top: 28px;
  font-size: 22px;
  color: #444;
}

/* Text */
p,
ul {
  line-height: 1.7;
  font-size: 16px;
}

ul {
  margin-left: 20px;
}

/* HERO SECTION */
.hero {
  background: #fff;
  padding: 1rem 1rem;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

/* LEFT CONTENT */
.hero-content {
  flex: 1;
}

.menu-icon {
  display: none;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-content h1 span {
  color: white;
  text-shadow: -1.3px -1.3px 0 #000, 1.3px -1.3px 0 #000, -1.3px 1.3px 0 #000,
    1.3px 1.3px 0 #000;
}

.hero-content p {
  font-size: 1.6rem;
  color: #111;
  max-width: 480px;
  margin-bottom: 3rem;
}

/* STORE BUTTONS */
.store-buttons {
  display: flex;
  gap: 1.5rem;
}

.store-buttons img {
  height: 48px;
  cursor: pointer;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

#menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  /* Navbar */
  .nav-container {
    padding: 0 16px;
  }

  nav ul {
    gap: 30px;
  }

  .brand-name {
    font-size: 18px;
  }

  .Download_App {
    padding: 0.7rem 1.4rem;
    font-size: 14px;
  }

  /* Hero Section */
  .hero-container {
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.3rem;
  }

  .hero-image img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .menu-icon {
    display: block;
    position: absolute;
    right: 30px;
    /* 👈 move to right */
    top: 4%;
    transform: translateY(-50%);
    z-index: 1001;
  }

  /* center brand */
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 26px;
  }

  .desktop-only {
    display: none;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    gap: 25px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
    z-index: 1000;
  }

  #menu-toggle:checked ~ .nav-links {
    right: 0;
  }

  nav ul li a {
    font-size: 18px;
    padding: 12px 25px;
    display: block;
  }

  /* Overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
  }

  #menu-toggle:checked ~ .mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero Section */
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin: auto;
  }

  .store-buttons {
    justify-content: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    width: 85%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .store-buttons img {
    height: 42px;
  }

  nav {
    padding: 12px 0;
  }
}
