
:root { --ease-apple: cubic-bezier(.16,1,.3,1); }

//* body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f7;
  scroll-behavior: smooth;
}

.navbar {
  transition: all 0.5s var(--ease-apple);
}

.navbar.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(255,255,255,0.75) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
} **/

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--ease-apple);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card-apple {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.6s var(--ease-apple),
              box-shadow 0.6s var(--ease-apple);
}

.card-apple:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.btn-apple {
  border-radius: 50px;
  padding: 12px 28px;
  transition: all 0.4s var(--ease-apple);
}

.btn-apple:hover {
  transform: scale(1.05);
}

.parallax-img {
  transition: transform 0.2s ease-out;
}


/* PAGE TRANSITION */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(.16,1,.3,1);
}

.page-transition.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-out {
  opacity: 0 !important;
  transform: translateY(-20px) !important;
  transition: all 0.5s cubic-bezier(.16,1,.3,1);
}

/* Video Attachments */
.attachment-box {
  background: #1a1a1d;
  padding: 20px;
  border-radius: 16px;
  margin-top: 30px;
}

.attachment-box a {
  display: block;
  color: #9ecbff;
  text-decoration: none;
  margin-bottom: 8px;
}

.attachment-box a:hover {
  text-decoration: underline;
}
