/* ========================================
   Zen Burma — About Page Styles
   ======================================== */

/* ========== Burmese Text Overrides ========== */
.about-burmese-text {
    line-height: 2.2 !important;
    letter-spacing: 0.01em;
}

.about-burmese-heading {
    line-height: 1.8 !important;
}

.about-quote-text {
    line-height: 2.4 !important;
}

/* ========== Scroll Reveal Animations ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ========== Animated Pulse Separator ========== */
.gold-pulse-dot {
    width: 8px;
    height: 8px;
    background: #D4AF37;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.4);
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }
}

/* ========== About Glass Card ========== */
.about-glass-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-glass-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ========== Founder Image Hover ========== */
.founder-img-wrapper {
    overflow: hidden;
}

.founder-img-wrapper img {
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-img-wrapper:hover img {
    transform: scale(1.08);
}

/* ========== Contact Icon Spring Hover ========== */
.contact-link {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-link:hover {
    transform: translateY(-3px);
}

.contact-link .icon-circle {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-link:hover .icon-circle {
    transform: scale(1.15);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* ========== Quote Glow Border ========== */
.quote-card {
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent 50%, rgba(255, 255, 255, 0.1));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.quote-card:hover::before {
    opacity: 1;
}

/* ========== Page Wrapper ========== */
.about-page {
    position: relative;
    z-index: 1;
}

/* ========== Mobile Optimizations ========== */
@media (max-width: 639px) {
    .about-page {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .about-header {
        margin-bottom: 1.5rem;
    }

    .founder-img-wrapper img {
        height: 320px;
    }

    .founder-overlay h3 {
        font-size: 1.5rem;
    }

    .founder-overlay {
        padding: 1.25rem 1.5rem;
    }

    .about-content-side {
        padding: 1.5rem !important;
    }

    .about-content-inner {
        gap: 1.25rem;
    }

    .about-content-inner>*+* {
        margin-top: 0;
    }

    .about-greeting {
        padding-left: 1rem;
    }

    .about-greeting h2 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }

    .about-greeting p {
        font-size: 0.95rem;
    }

    .about-story {
        font-size: 0.9rem !important;
    }

    .about-story>p+p {
        margin-top: 0.75rem;
    }

    .quote-card {
        padding: 1.25rem !important;
        margin-top: 0.5rem !important;
    }

    .quote-card p {
        font-size: 0.9rem !important;
        text-align: left !important;
    }

    .quote-card .text-5xl {
        font-size: 2rem;
        top: -0.5rem;
    }

    .about-contact {
        padding-top: 1.25rem;
        margin-top: 0.75rem;
        justify-content: center;
    }

    .about-bg-mark {
        display: none;
    }
}

/* Tablet tweaks */
@media (min-width: 640px) and (max-width: 1023px) {
    .founder-img-wrapper img {
        height: 350px;
    }
}