body {
  font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #1d1d1f;
}

/* NAVBAR */
.navbar {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://i.pinimg.com/1200x/6b/dd/4c/6bdd4cc125074e7a795e49335da59152.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 70px;
  font-weight: 600;
}

.hero p {
  font-size: 24px;
  opacity: 0.9;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  color: #6e6e73;
}

/* IMAGE BLOCK */
.image-full {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/* CARDS */
.card {
  border: none;
  background: #f5f5f7;
  border-radius: 20px;
  padding: 30px;
}
/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
}

.logo {
  font-weight: bold;
  font-size: 20px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 500;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* PUSH CONTENT DOWN (because navbar is fixed) */
body {
  padding-top: 70px;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
.apple-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #00e322cc;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.apple-btn:hover {
  background: #005bb5;
}