/* --- 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;
}

/* ============================================================ */
/* ===== 📱 MOBILE SCREEN (YOUR EXACT ORIGINAL) 📱 ===== */
/* ============================================================ */
.mobile-only.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;
}

.mobile-only .header-wrapper {
    width: 100%;
    padding: 30px 20px 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-only .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;
}
.mobile-only .breadcrumb {
    font-family: "Vividly-Regular", sans-serif;
    font-size: 14px;
    color: #5a1132;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid #ffb7d9;
}
.mobile-only .breadcrumb span { color: #ffb7d9; }

.mobile-only .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);
}
.mobile-only .hero-container img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}
.mobile-only .hero-title {
    font-family: "overdozesans";
    font-size: 28px;
    color: #5a1132;
    margin-top: 10px;
}
.mobile-only .hero-sub {
  font-family: "Vividly-Regular", Helvetica;
    font-size: 14px;
    color: #ffb7d9;
}
.mobile-only .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);
}
.mobile-only .badge-top { top: -12px; right: 20px; }
.mobile-only .badge-bottom { bottom: -12px; left: 20px; }

.mobile-only .story-card {
    margin-top: 40px;
    width: 340px;
    background: #ffffff;
    border-radius: 50px;
    padding: 35px 25px;
    border: 3px solid #ffb7d9;
    position: relative;
}
.mobile-only .story-card h2 {
    font-family: "overdozesans";
    font-size: 28px;
    color: #5a1132;
    text-align: center;
    margin-bottom: 15px;
}
.mobile-only .story-card p {
    font-family: "overdozesans";
    color: #5a1132;
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
}
.mobile-only .story-card .highlight {
    color: #ffb7d9;
    font-family: "overdozesans";
}

.mobile-only .why-grid {
    margin-top: 30px;
    width: 340px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.mobile-only .why-item {
    background: white;
    border-radius: 40px;
    padding: 20px 10px;
    text-align: center;
    border: 2px solid #ffb7d9;
}
.mobile-only .why-item img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 5px;
}
.mobile-only .why-item h4 {
    font-family: "overdozesans";
    font-size: 16px;
    color: #5a1132;
    margin-bottom: 5px;
}
.mobile-only .why-item p {
    font-family: "overdozesans";
    font-size: 13px;
    color: #ffb7d9;
    line-height: 1.2;
}

.mobile-only .team-section {
    margin-top: 35px;
    width: 340px;
    background: #ffffff;
    border-radius: 50px;
    padding: 25px;
    border: 3px solid #ffb7d9;
}
.mobile-only .team-section h3 {
    font-family: "overdozesans";
    font-size: 24px;
    color: #5a1132;
    text-align: center;
    margin-bottom: 20px;
}
.mobile-only .team-member {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff2f8;
    padding: 12px 20px;
    border-radius: 40px;
    margin-bottom: 12px;
}
.mobile-only .team-member:last-child { margin-bottom: 0; }
.mobile-only .team-member img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffb7d9;
}
.mobile-only .team-member .name {
    font-family: "overdozesans";
    font-size: 16px;
    color: #5a1132;
}
.mobile-only .team-member .role {
    font-family: "overdozesans";
    font-size: 12px;
    color: #ffb7d9;
}
.mobile-only .team-member .paw {
    margin-left: auto;
    font-size: 18px;
}

.mobile-only .quote-bubble {
    margin-top: 30px;
    width: 280px;
    background: #ffffff;
    border-radius: 60px 60px 60px 10px;
    padding: 20px;
    border: 2px solid #ffb7d9;
    text-align: center;
}
.mobile-only .quote-bubble p {
    font-family: "overdozesans";
    color: #5a1132;
    font-size: 15px;
    font-style: italic;
}
.mobile-only .quote-bubble span {
    font-family: "overdozesans";
    color: #ffb7d9;
    display: block;
    margin-top: 10px;
}

.mobile-only .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;
}
.mobile-only .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}
.mobile-only .nav-item img {
    width: 26px;
    height: 26px;
    margin-bottom: 5px;
}
.mobile-only .nav-item span {
    font-family: "overdozesans";
    font-size: 14px;
    color: #5a1132;
    text-align: center;
}
.mobile-only .nav-item.active span { color: #5a1132; }
.mobile-only .nav-item.active img { opacity: 0.7; }

/* ===== MOBILE SCROLL REVEAL ANIMATIONS ===== */
.mobile-only .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;
}
.mobile-only .scroll-reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.mobile-only .hero-container { transition-delay: 0.0s !important; }
.mobile-only .story-card { transition-delay: 0.1s !important; }
.mobile-only .why-item:nth-child(1) { transition-delay: 0.2s !important; }
.mobile-only .why-item:nth-child(2) { transition-delay: 0.3s !important; }
.mobile-only .why-item:nth-child(3) { transition-delay: 0.4s !important; }
.mobile-only .why-item:nth-child(4) { transition-delay: 0.5s !important; }
.mobile-only .team-section { transition-delay: 0.2s !important; }
.mobile-only .team-member:nth-child(1) { transition-delay: 0.3s !important; }
.mobile-only .team-member:nth-child(2) { transition-delay: 0.4s !important; }
.mobile-only .team-member:nth-child(3) { transition-delay: 0.5s !important; }
.mobile-only .quote-bubble { transition-delay: 0.6s !important; }
.mobile-only .scroll-reveal-active.hero-container {
    animation: floatHero 4s infinite ease-in-out !important;
}
@keyframes floatHero {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================ */
/* ===== 🖥️ BRAND NEW LAPTOP/TABLET DESIGN 🖥️ ===== */
/* ============================================================ */

/* Hide laptop version on phones */
@media (max-width: 767px) {
    .desktop-wrapper { display: none !important; }
}

/* Show laptop version on tablets and laptops */
@media (min-width: 768px) {
    .mobile-only { display: none !important; }
    
    body {
        background: #ffffff;
        display: flex;
        justify-content: center;
        padding: 40px;
    }

    .desktop-wrapper {
        max-width: 1200px;
        width: 100%;
        background: #fff4f9;
        border-radius: 40px;
        box-shadow: 0 20px 60px rgba(255, 183, 217, 0.1);
        overflow: hidden;
        padding: 40px 50px 50px 50px;
        font-family: "overdozesans", "Vividly-Regular", sans-serif;
        color: #5a1132;
    }

    /* ===== HEADER ===== */
    .d-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid #ffb7d9;
        margin-bottom: 40px;
    }
    .d-back-btn {
        font-family: "overdozesans";
        font-size: 16px;
        color: #5a1132;
        text-decoration: none;
        background: #ffffff;
        padding: 8px 20px;
        border-radius: 30px;
        border: 2px solid #ffb7d9;
        transition: all 0.3s ease;
    }
    .d-back-btn:hover { background: #ffd0e5; transform: scale(1.05); }
    .d-logo {
        font-family: "overdozesans";
        font-size: 24px;
        color: #5a1132;
    }

    /* ===== HERO ===== */
    .d-hero { margin-bottom: 40px; }
    .d-hero-container {
        width: 100%;
        max-width: 450px;
        height: 320px;
        margin: 0 auto;
        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);
        animation: floatHero 4s infinite ease-in-out;
    }
    .d-hero-container img {
        width: 140px;
        height: 140px;
        object-fit: contain;
    }
    .d-hero-title {
        font-family: "overdozesans";
        font-size: 32px;
        color: #5a1132;
        margin-top: 10px;
    }
    .d-hero-sub {
        font-family: "Vividly-Regular", Helvetica;
        font-size: 15px;
        color: #ffb7d9;
    }
    .d-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);
    }
    .d-badge-top { top: -12px; right: 20px; }
    .d-badge-bottom { bottom: -12px; left: 20px; }

    /* ===== STORY ===== */
    .d-section { margin-bottom: 40px; }
    .d-story-card {
        max-width: 600px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 50px;
        padding: 40px 30px;
        border: 3px solid #ffb7d9;
        text-align: center;
    }
    .d-story-card h2 {
        font-family: "overdozesans";
        font-size: 32px;
        color: #5a1132;
        margin-bottom: 15px;
    }
    .d-story-card p {
        font-family: "overdozesans";
        color: #5a1132;
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    .d-story-card .d-highlight {
        color: #ffb7d9;
        font-family: "overdozesans";
    }

    /* ===== WHY CHOOSE US ===== */
    .d-why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 700px;
        margin: 0 auto;
    }
    .d-why-item {
        background: #ffffff;
        border-radius: 40px;
        padding: 25px 15px;
        text-align: center;
        border: 2px solid #ffb7d9;
    }
    .d-why-item img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 5px;
    }
    .d-why-item h4 {
        font-family: "overdozesans";
        font-size: 18px;
        color: #5a1132;
        margin-bottom: 5px;
    }
    .d-why-item p {
        font-family: "overdozesans";
        font-size: 14px;
        color: #ffb7d9;
        line-height: 1.2;
    }

    /* ===== TEAM ===== */
    .d-team-section {
        max-width: 600px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 50px;
        padding: 30px;
        border: 3px solid #ffb7d9;
    }
    .d-team-section h3 {
        font-family: "overdozesans";
        font-size: 26px;
        color: #5a1132;
        text-align: center;
        margin-bottom: 20px;
    }
    .d-team-member {
        display: flex;
        align-items: center;
        gap: 15px;
        background: #fff2f8;
        padding: 15px 25px;
        border-radius: 40px;
        margin-bottom: 12px;
    }
    .d-team-member:last-child { margin-bottom: 0; }
    .d-team-member img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid #ffb7d9;
    }
    .d-team-member .d-name {
        font-family: "overdozesans";
        font-size: 18px;
        color: #5a1132;
    }
    .d-team-member .d-role {
        font-family: "overdozesans";
        font-size: 13px;
        color: #ffb7d9;
    }

    /* ===== QUOTE ===== */
    .d-quote-bubble {
        max-width: 400px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 60px 60px 60px 10px;
        padding: 25px;
        border: 2px solid #ffb7d9;
        text-align: center;
    }
    .d-quote-bubble p {
        font-family: "overdozesans";
        color: #5a1132;
        font-size: 16px;
        font-style: italic;
    }
    .d-quote-bubble span {
        font-family: "overdozesans";
        color: #ffb7d9;
        display: block;
        margin-top: 10px;
    }

    /* ===== FOOTER ===== */
    .d-footer {
        background: #ffffff;
        border-radius: 40px;
        padding: 20px 30px;
        margin-top: 30px;
    }
    .d-nav-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .d-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    .d-nav-item:hover { transform: scale(1.1); }
    .d-nav-item img {
        width: 26px;
        height: 26px;
        margin-bottom: 5px;
    }
    .d-nav-item span {
        font-family: "overdozesans";
        font-size: 14px;
        color: #5a1132;
        text-align: center;
    }
    .d-nav-item.active span { color: #5a1132; }
    .d-nav-item.active img { opacity: 0.7; }
}