/* ==========================================================================
   HOME TEST (REDESIGN) — NEW SECTIONS & ANIMATIONS
   Theme: White, Pink (#ffb7c5), Matcha Green (#2d6a4f / #1b4332), Gold (#d4af37)
   Reuses hero / separator / products / health-linker / collage from MainPage.css
   ========================================================================== */

:root {
    --ht-white: #ffffff;
    --ht-pink-white: #FFF0F5;
    --ht-pink: #ffb7c5;
    --ht-pink-deep: #ff8fa3;
    --ht-green: #2d6a4f;
    --ht-green-deep: #1b4332;
    --ht-mint: #a8e6cf;
    --ht-gold: #d4af37;
    --ht-ink: #2a2a2a;
    --ht-muted: #5f5f5f;
    --ht-font-head: 'Playfair Display', serif;
    --ht-font-body: 'Inter', sans-serif;
    --ht-shadow-soft: 0 18px 45px rgba(27, 67, 50, 0.10);
    --ht-shadow-lift: 0 28px 60px rgba(27, 67, 50, 0.16);
    --ht-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ht-ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATION LIBRARY
   (all start hidden, .revealed brings them in)
   ========================================================================== */
.ht-reveal-pop {
    opacity: 0;
    transform: scale(0.55);
    transition: opacity 0.9s var(--ht-ease-spring), transform 0.9s var(--ht-ease-spring);
}
.ht-reveal-pop.revealed { opacity: 1; transform: scale(1); }

.ht-reveal-rotate {
    opacity: 0;
    transform: translateX(-70px) rotate(-9deg);
    transition: opacity 1.1s var(--ht-ease-smooth), transform 1.1s var(--ht-ease-smooth);
}
.ht-reveal-rotate.revealed { opacity: 1; transform: translateX(0) rotate(0); }

.ht-reveal-flip {
    opacity: 0;
    transform: perspective(900px) rotateX(45deg) translateY(30px);
    transition: opacity 1.1s var(--ht-ease-smooth), transform 1.1s var(--ht-ease-smooth);
}
.ht-reveal-flip.revealed { opacity: 1; transform: perspective(900px) rotateX(0) translateY(0); }

.ht-reveal-bounce {
    opacity: 0;
    transform: translateY(90px) scale(0.9);
    transition: opacity 0.9s var(--ht-ease-smooth), transform 1s var(--ht-ease-spring);
}
.ht-reveal-bounce.revealed { opacity: 1; transform: translateY(0) scale(1); }

.ht-reveal-slide-left {
    opacity: 0;
    transform: translateX(-90px);
    filter: blur(6px);
    transition: opacity 1.2s var(--ht-ease-smooth), transform 1.2s var(--ht-ease-smooth), filter 1.2s var(--ht-ease-smooth);
}
.ht-reveal-slide-left.revealed { opacity: 1; transform: translateX(0); filter: blur(0); }

.ht-reveal-slide-right {
    opacity: 0;
    transform: translateX(90px);
    filter: blur(6px);
    transition: opacity 1.2s var(--ht-ease-smooth), transform 1.2s var(--ht-ease-smooth), filter 1.2s var(--ht-ease-smooth);
}
.ht-reveal-slide-right.revealed { opacity: 1; transform: translateX(0); filter: blur(0); }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   HERO — scroll hint
   ========================================================================== */
.ht-hero { overflow: hidden; }

.ht-scroll-hint {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}
.ht-scroll-hint-text {
    font-family: var(--ht-font-body);
    color: var(--ht-white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.9;
}
.ht-scroll-hint-arrow {
    width: 2px;
    height: 34px;
    background: linear-gradient(to bottom, var(--ht-pink), transparent);
    position: relative;
    animation: htHintPulse 1.6s ease-in-out infinite;
}
.ht-scroll-hint-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--ht-pink);
    border-bottom: 2px solid var(--ht-pink);
    transform: translateX(-50%) rotate(45deg);
}
@keyframes htHintPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ==========================================================================
   2. LOCATION & HOURS
   ========================================================================== */
.ht-location-section {
    padding: 110px 5%;
    background: linear-gradient(135deg, var(--ht-pink) 0%, #ffd9e2 40%, var(--ht-mint) 75%, #8fd8b8 100%);
}
.ht-location-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.ht-location-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ht-font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ht-green-deep);
    background: rgba(255, 255, 255, 0.75);
    border: 2px solid var(--ht-pink);
    padding: 8px 18px;
    border-radius: 40px;
}
.ht-location-kicker i { color: var(--ht-pink-deep); }
.ht-location-title {
    font-family: var(--ht-font-head);
    font-size: clamp(1.9rem, 4.5vw, 2.8rem);
    font-weight: 800;
    color: var(--ht-green-deep);
    margin: 18px 0 22px 0;
    line-height: 1.15;
    position: relative;
}
.ht-location-title-accent {
    color: var(--ht-pink-deep);
    font-style: italic;
    text-transform: none;
}
.ht-location-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--ht-green);
}
.ht-location-copy {
    font-family: var(--ht-font-body);
    color: var(--ht-ink);
    font-size: 1rem;
    line-height: 1.85;
    margin: 0 0 26px 0;
}
.ht-location-facts {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ht-location-fact {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 6px 18px rgba(27, 67, 50, 0.08);
    transition: transform 0.4s var(--ht-ease-spring), box-shadow 0.4s var(--ht-ease-smooth);
}
.ht-location-fact:hover {
    transform: translateX(6px);
    box-shadow: var(--ht-shadow-soft);
}
.ht-location-fact-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--ht-green);
    color: var(--ht-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.ht-location-fact-text {
    font-family: var(--ht-font-body);
    color: var(--ht-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.ht-location-fact-text strong {
    display: block;
    color: var(--ht-green-deep);
    font-size: 1.02rem;
    font-weight: 700;
}
.ht-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ht-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--ht-green-deep);
    border-bottom: 2px solid var(--ht-pink);
    padding-bottom: 6px;
    text-decoration: none;
    transition: gap 0.4s ease, color 0.3s ease;
}
.ht-location-btn:hover { gap: 18px; color: var(--ht-pink-deep); }

.ht-location-media { position: relative; }
.ht-location-frame {
    width: 100%;
    height: 460px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: var(--ht-shadow-soft);
}
.ht-location-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--ht-pink-white);
    transition: transform 1s var(--ht-ease-smooth);
}
.ht-location-media:hover .ht-location-img { transform: scale(1.0); }
.ht-location-badge {
    position: absolute;
    bottom: -20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ht-green-deep);
    color: var(--ht-white);
    padding: 14px 24px;
    border-radius: 40px;
    border: 3px solid var(--ht-pink);
    font-family: var(--ht-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: var(--ht-shadow-lift);
}
.ht-location-badge i { color: var(--ht-mint); }

/* --- Special Offers -> Full Menu link --- */
.ht-menu-link-row {
    margin-top: 48px;
    text-align: center;
}
.ht-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ht-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--ht-green-deep);
    border: 2px solid var(--ht-pink);
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.4s var(--ht-ease-spring), background 0.3s ease, color 0.3s ease, gap 0.4s ease, border-color 0.3s ease;
}
.ht-menu-link:hover {
    transform: translateY(-4px);
    background: var(--ht-green);
    border-color: var(--ht-green);
    color: var(--ht-white);
    gap: 16px;
}

/* --- Menu Teaser (tiled tiny cups background + click-to-view button) --- */
.ht-menu-teaser {
    position: relative;
    width: calc(100% - 6%);
    max-width: 1500px;
    margin: 45px auto;
    padding: 120px 5%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--ht-pink-white) 0%, var(--ht-white) 100%);
    border: 4px solid var(--ht-pink);
    border-radius: 34px;
    box-shadow: 0 0 0 4px var(--ht-green), 0 22px 55px rgba(27, 67, 50, 0.2);
}

.ht-menu-teaser-cups {
    position: absolute;
    inset: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 26px;
    opacity: 0.92;
    padding: 20px;
    pointer-events: none;
}

.ht-menu-teaser-cup {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(27, 67, 50, 0.35));
}

.ht-menu-teaser-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
}

.ht-menu-teaser-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ht-menu-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ht-font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    color: var(--ht-white);
    background: linear-gradient(135deg, var(--ht-green) 0%, var(--ht-green-deep) 100%);
    border: 2px solid var(--ht-pink);
    padding: 20px 48px;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 14px 35px rgba(27, 67, 50, 0.35);
    transition: transform 0.4s var(--ht-ease-spring), box-shadow 0.4s var(--ht-ease-smooth), gap 0.4s ease;
}

.ht-menu-teaser-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 22px 45px rgba(27, 67, 50, 0.45);
    gap: 18px;
}

/* ==========================================================================
   4. GALLERY (redesigned slideshow)
   ========================================================================== */
.ht-gallery-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--ht-white) 0%, var(--ht-pink-white) 100%);
    text-align: center;
}
.ht-gallery-header { margin-bottom: 60px; }
.ht-gallery-fancy {
    display: block;
    font-family: var(--ht-font-head);
    font-style: italic;
    color: var(--ht-pink-deep);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: -6px;
}
.ht-gallery-title {
    font-family: var(--ht-font-head);
    font-weight: 900;
    color: var(--ht-green-deep);
    font-size: clamp(2rem, 6vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}
.ht-gallery-accent { color: var(--ht-pink); font-style: italic; text-transform: none; letter-spacing: 2px; }

/* --- Infinite auto-looping slideshow --- */
.ht-slideshow {
    width: 100%;
    overflow: hidden;
    padding: 15px 0 30px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.ht-slideshow-track {
    display: flex;
    width: max-content;
    animation: htSlideshowScroll 38s linear infinite;
}
.ht-slideshow:hover .ht-slideshow-track {
    animation-play-state: paused;
}
.ht-slideshow-group {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 22px;
}
.ht-slideshow-card {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--ht-shadow-soft);
    transition: transform 0.5s var(--ht-ease-spring), box-shadow 0.5s var(--ht-ease-smooth);
}
.ht-slideshow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ht-shadow-lift);
}
.ht-slideshow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ht-ease-smooth);
}
.ht-slideshow-card:hover img { transform: scale(1.08); }

@keyframes htSlideshowScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.ht-gallery-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(27, 67, 50, 0.82);
    color: var(--ht-white);
    font-family: var(--ht-font-body);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 183, 197, 0.4);
    z-index: 2;
}

/* ==========================================================================
   5. CRAFT / PROCESS
   ========================================================================== */
.ht-craft-section {
    padding: 110px 5%;
    background: var(--ht-white);
}
.ht-craft-header { text-align: center; margin-bottom: 80px; }
.ht-craft-fancy {
    display: block;
    font-family: var(--ht-font-head);
    font-style: italic;
    color: var(--ht-pink-deep);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: -6px;
}
.ht-craft-title {
    font-family: var(--ht-font-head);
    font-weight: 900;
    color: var(--ht-green-deep);
    font-size: clamp(2rem, 6vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}
.ht-craft-accent { color: var(--ht-pink); font-style: italic; text-transform: none; letter-spacing: 2px; }

.ht-craft-steps {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.ht-craft-step {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.ht-craft-step-reverse .ht-craft-media { order: 2; }
.ht-craft-step-reverse .ht-craft-body { order: 1; text-align: right; }
.ht-craft-media {
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--ht-shadow-soft);
}
.ht-craft-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ht-ease-smooth);
}
.ht-craft-step:hover .ht-craft-media img { transform: scale(1.06); }
.ht-craft-stepnum {
    display: block;
    font-family: var(--ht-font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--ht-pink);
    line-height: 1;
    margin-bottom: 10px;
}
.ht-craft-heading {
    font-family: var(--ht-font-head);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--ht-green-deep);
    margin: 0 0 14px 0;
}
.ht-craft-copy {
    font-family: var(--ht-font-body);
    color: var(--ht-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   7. SELFIES PREVIEW
   ========================================================================== */
.ht-selfies-section {
    padding: 100px 5%;
    background: linear-gradient(160deg, var(--ht-pink-white) 0%, var(--ht-white) 100%);
    text-align: center;
}
.ht-selfies-header { margin-bottom: 60px; }
.ht-selfies-fancy {
    display: block;
    font-family: var(--ht-font-head);
    font-style: italic;
    color: var(--ht-pink-deep);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: -6px;
}
.ht-selfies-title {
    font-family: var(--ht-font-head);
    font-weight: 900;
    color: var(--ht-green-deep);
    font-size: clamp(2rem, 6vw, 3.2rem);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}
.ht-selfies-accent { color: var(--ht-pink); font-style: italic; text-transform: none; letter-spacing: 2px; }
.ht-selfies-sub {
    font-family: var(--ht-font-body);
    color: var(--ht-muted);
    font-size: 0.92rem;
    letter-spacing: 1px;
    margin: 14px 0 0 0;
}

.ht-selfies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto 45px auto;
}

/* Single featured selfie layout */
.ht-selfies-single {
    grid-template-columns: 1fr;
    max-width: 520px;
}

.ht-selfies-single .ht-selfie-frame {
    height: 360px;
}
.ht-selfie-card {
    background: var(--ht-white);
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--ht-shadow-soft);
    transition: transform 0.5s var(--ht-ease-spring), box-shadow 0.5s var(--ht-ease-smooth);
}
.ht-selfie-card:hover {
    transform: translateY(-8px) rotate(-1.5deg);
    box-shadow: var(--ht-shadow-lift);
}
.ht-selfie-frame {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
}
.ht-selfie-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ht-ease-smooth);
}
.ht-selfie-card:hover .ht-selfie-img { transform: scale(1.06); }
.ht-selfie-caption {
    font-family: var(--ht-font-body);
    color: var(--ht-muted);
    font-size: 0.82rem;
    margin: 14px 4px 6px 4px;
    text-align: left;
    line-height: 1.5;
}

.ht-selfies-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ht-font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--ht-white);
    background: var(--ht-green);
    padding: 16px 38px;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.4s var(--ht-ease-spring), background 0.3s ease, gap 0.4s ease;
}
.ht-selfies-btn:hover {
    transform: translateY(-4px);
    background: var(--ht-green-deep);
    gap: 18px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .ht-location-wrapper { grid-template-columns: 1fr; gap: 70px; }
    .ht-location-frame { height: 380px; }
    .ht-craft-step,
    .ht-craft-step-reverse { grid-template-columns: 1fr; gap: 26px; }
    .ht-craft-step-reverse .ht-craft-media { order: 0; }
    .ht-craft-step-reverse .ht-craft-body { order: 1; text-align: left; }
    .ht-selfies-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 640px) {
    .ht-location-section,
    .ht-gallery-section,
    .ht-craft-section,
    .ht-selfies-section { padding: 70px 6%; }

    .ht-location-frame { height: 300px; }
    .ht-location-badge { left: 14px; padding: 12px 18px; font-size: 0.72rem; }

    .ht-slideshow-card { width: 200px; height: 180px; }
    .ht-slideshow-group { gap: 14px; padding-right: 14px; }
    .ht-craft-media { height: 240px; }
    .ht-craft-stepnum { font-size: 2.3rem; }
}
