/* --- YOUR EXACT RESET & GLOBALS --- */
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #fff2f8;
            font-family: "overdozesans";
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

@font-face {
  font-family: "Vividly-Regular";
  src: local("Vividly-Regular");
}

@font-face {
    font-family: "Vividly-Regular";
    src: url("./Vividly-Regular.otf") format("woff2"),
         url("./Vividly-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: "overdozesans";
  src: url("./overdozesans.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "overdozesans";
  src: url("./overdozesans.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* --- SCROLLABLE PAGE CONTAINER --- */
.about-screen {
    background-color: #fff2f8;
    width: 100%;
    max-width: 390px;
    min-height: 100vh;
    position: relative;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- HEADER & BREADCRUMB --- */
.header-wrapper {
    width: 100%;
    padding: 30px 20px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.back-btn {
            font-family: "overdozesans";
    font-size: 22px;
    color: #5a1132;
    text-decoration: none;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ffb7d9;
}
.breadcrumb {
    font-family: "Vividly-Regular", sans-serif;
    font-size: 14px;
    color: #5a1132;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ffb7d9;
}
.breadcrumb span { color: #ffb7d9; }

/* --- GIANT KITTY HERO --- */
.hero-container {
    margin-top: 25px;
    width: 320px;
    height: 280px;
    background: #ffffff;
    border-radius: 60px 60px 40px 40px;
    border: 3px solid #ffb7d9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 30px rgba(255, 183, 217, 0.25);
}
.hero-container img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.hero-title {
            font-family: "overdozesans";
    font-size: 28px;
    color: #5a1132;
    margin-top: 10px;
}
.hero-sub {
  font-family: "Vividly-Regular", Helvetica;
    font-size: 14px;
    color: #ffb7d9;
}
.badge {
    position: absolute;
    background: #ffb7d9;
    color: #5a1132;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
            font-family: "overdozesans";
    box-shadow: 0 4px 10px rgba(255, 183, 217, 0.4);
}
.badge-top { top: -12px; right: 20px; }
.badge-bottom { bottom: -12px; left: 20px; }

/* --- OUR STORY CARD --- */
.story-card {
    margin-top: 40px;
    width: 340px;
    background: #ffffff;
    border-radius: 50px;
    padding: 35px 25px;
    border: 3px solid #ffb7d9;
    position: relative;
}
.story-card h2 {
            font-family: "overdozesans";
    font-size: 28px;
    color: #5a1132;
    text-align: center;
    margin-bottom: 15px;
}
.story-card p {
            font-family: "overdozesans";
    color: #5a1132;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}
.story-card .highlight {
    color: #ffb7d9;
            font-family: "overdozesans";
}

/* --- WHY CHOOSE US --- */
.why-grid {
    margin-top: 30px;
    width: 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.why-item {
    background: white;
    border-radius: 40px;
    padding: 20px 10px;
    text-align: center;
    border: 2px solid #ffb7d9;
}
.why-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 5px;
}
.why-item h4 {
            font-family: "overdozesans";
    font-size: 16px;
    color: #5a1132;
    margin-bottom: 5px;
}
.why-item p {
            font-family: "overdozesans";
    font-size: 13px;
    color: #ffb7d9;
    line-height: 1.2;
}

/* --- MEET THE TEAM --- */
.team-section {
    margin-top: 35px;
    width: 340px;
    background: #ffffff;
    border-radius: 50px;
    padding: 25px;
    border: 3px solid #ffb7d9;
}
.team-section h3 {
            font-family: "overdozesans";
    font-size: 24px;
    color: #5a1132;
    text-align: center;
    margin-bottom: 20px;
}
.team-member {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff2f8;
    padding: 12px 20px;
    border-radius: 40px;
    margin-bottom: 12px;
}
.team-member:last-child { margin-bottom: 0; }
.team-member img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffb7d9;
}
.team-member .name {
            font-family: "overdozesans";
    font-size: 16px;
    color: #5a1132;
}
.team-member .role {
            font-family: "overdozesans";
    font-size: 12px;
    color: #ffb7d9;
}
.team-member .paw {
    margin-left: auto;
    font-size: 18px;
}

/* --- QUOTE BUBBLE --- */
.quote-bubble {
    margin-top: 30px;
    width: 280px;
    background: #ffffff;
    border-radius: 60px 60px 60px 10px;
    padding: 20px;
    border: 2px solid #ffb7d9;
    text-align: center;
}
.quote-bubble p {
            font-family: "overdozesans";
    color: #5a1132;
    font-size: 15px;
    font-style: italic;
}
.quote-bubble span {
            font-family: "overdozesans";
    color: #ffb7d9;
    display: block;
    margin-top: 10px;
}

/* --- DECORATIVE FLOATING ELEMENTS --- */
.floating-icon {
    position: absolute;
    opacity: 0.5;
}
.floating-1 { top: 140px; left: 5px; width: 35px; }
.floating-2 { top: 480px; right: 10px; width: 30px; }
.floating-3 { bottom: 180px; left: 10px; width: 40px; }

/* --- YOUR EXACT BOTTOM NAV --- */
.bottom-nav {
    position:absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 390px;
    height: 96px;
    background-color: #ffffff;
    border-radius: 43px 43px 0 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px 10px 10px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.02);
    z-index: 100;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.nav-item img {
    width: 26px;
    height: 26px;
    margin-bottom: 5px;
}
.nav-item span {
            font-family: "overdozesans";
    font-size: 14px;
    color: #5a1132;
    text-align: center;
}
.nav-item.active span { color: #5a1132; }
.nav-item.active img { opacity: 0.7; }

/* ===== SCROLL REVEAL ANIMATIONS ===== */

/* 1. Initial hidden state */
.animate-on-scroll {
    opacity: 0 !important;
    transform: translateY(40px) !important;
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform, opacity;
}

/* 2. Active state when scrolled into view */
.scroll-reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 3. 🎀 DELAYS FOR A WAVE EFFECT */
.hero-container { transition-delay: 0.0s !important; }
.story-card { transition-delay: 0.1s !important; }
.why-item:nth-child(1) { transition-delay: 0.2s !important; }
.why-item:nth-child(2) { transition-delay: 0.3s !important; }
.why-item:nth-child(3) { transition-delay: 0.4s !important; }
.why-item:nth-child(4) { transition-delay: 0.5s !important; }
.team-section { transition-delay: 0.2s !important; }
.team-member:nth-child(1) { transition-delay: 0.3s !important; }
.team-member:nth-child(2) { transition-delay: 0.4s !important; }
.team-member:nth-child(3) { transition-delay: 0.5s !important; }
.quote-bubble { transition-delay: 0.6s !important; }

/* 4. 🐱 FIX: Keeps hero floating after appearing */
.scroll-reveal-active.hero-container {
    animation: floatHero 4s infinite ease-in-out !important;
}

@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}