/* =========================================================
   home-journey.css
   Gives the homepage a clear visual hierarchy / scroll journey:
   HERO -> WHY NAT -> FEATURED FISH -> HOW WE BREED ->
   FARM STATISTICS -> CUSTOMER/SHOP TRUST -> CONTACT.

   Pure presentational CSS only. Does not define or alter any
   text content — it only styles markup that already exists
   elsewhere in the site (reused verbatim) plus new structural
   wrappers (dividers, stat cards) that carry no text of their
   own (icons / numbers only).
   ========================================================= */

/* ---------- Section rhythm ---------- */
.journey-step {
    position: relative;
}

/* ---------- Chapter dividers between journey steps ---------- */
.journey-divider {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0;
    height: 0;
}

.journey-divider .journey-icon {
    position: relative;
    top: -28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--white);
    border: 2px solid rgba(0, 180, 255, 0.25);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(7, 26, 45, 0.15);
    z-index: 5;
    animation: journey-bob 3.4s ease-in-out infinite;
}

@keyframes journey-bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .journey-divider .journey-icon { animation: none; }
}

/* ---------- WHY NAT (reused .trust-section / .trust-box) ---------- */
/* ---------- WHY NAT: warm gold identity ---------- */
.trust-section {
    padding: 60px 8%;
    text-align: center;
    background: linear-gradient(180deg, #fff8ec 0%, #fdf1da 100%);
    color: #4a3510;
}

.trust-section h2 {
    color: #8a540c;
}

.trust-box {
    margin-top: 20px;
    background: var(--white);
    border: 1px solid rgba(243, 150, 28, 0.35);
    border-left: 5px solid var(--secondary-color);
    color: #3f2c0c;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
    box-shadow: 0 10px 26px rgba(243, 150, 28, 0.12);
    text-align: left;
}

/* ---------- FEATURED FISH: bright aqua identity ---------- */
.featured-fish-section {
    padding: 60px 8% 70px;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 180, 255, 0.16), transparent 45%),
        radial-gradient(circle at 90% 88%, rgba(0, 180, 255, 0.12), transparent 45%),
        #eafbff;
    text-align: center;
}

/* Cinematic "Fish of the Month" spotlight card */
.fish-spotlight {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 44px;
    min-height: 460px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-align: left;
    background-image:
        linear-gradient(180deg, rgba(7, 26, 45, 0.1) 0%, rgba(7, 26, 45, 0.92) 88%),
        var(--spotlight-img);
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 55px rgba(7, 26, 45, 0.3);
}

.fish-spotlight-overlay {
    padding: 46px;
    width: 100%;
    color: var(--white);
}

.fish-spotlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    margin-bottom: 18px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.fish-spotlight-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1.15;
}

.fish-spotlight-overlay > p:first-of-type {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    margin-bottom: 10px;
}

.fish-spotlight-overlay .fish-stock {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
    display: inline-block;
    margin-right: 14px;
}

.fish-spotlight-overlay > span {
    display: inline-block;
    margin: 12px 0 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.spotlight-btn {
    display: inline-flex;
    font-size: 1.02rem;
    padding: 14px 28px;
}

.fish-container.featured-fish-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 0 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.featured-fish-cta {
    margin-top: 10px;
}

.featured-fish-cta .btn {
    display: inline-block;
    background: var(--blue-color);
    color: var(--white);
}

/* ---------- FARM STATISTICS: data-grid dashboard identity ---------- */
.farm-stats-section {
    padding: 70px 8%;
    background-color: var(--primary-color);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
    color: var(--white);
    text-align: center;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.stat-card {
    padding: 30px 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
}

.stat-number {
    display: block;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--blue-color);
    line-height: 1.1;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- CUSTOMER / SHOP TRUST ---------- */
.trust-bar-section {
    padding: 60px 8%;
    background: #f5f9ff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.trust-bar-section .hero-badge {
    background: rgba(0, 180, 255, 0.08);
    border: 1px solid rgba(0, 180, 255, 0.25);
    color: var(--primary-color);
    font-size: 1.05rem;
    padding: 14px 26px;
}

.trust-bar-section .social-icons {
    justify-content: center;
}

.trust-bar-section .social-icons a {
    background: rgba(0, 180, 255, 0.1);
    color: var(--primary-color);
}

.trust-bar-section .social-icons a:hover {
    background: var(--blue-color);
    color: var(--white);
}

/* ---------- CONTACT / WHATSAPP: dark premium glass identity ---------- */
.contact-info.journey-step {
    padding: 60px 8%;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 180, 255, 0.14), transparent 45%),
        radial-gradient(circle at 85% 90%, rgba(243, 150, 28, 0.08), transparent 40%),
        var(--primary-color);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.contact-info.journey-step .contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.contact-info.journey-step .contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 180, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 180, 255, 0.15);
}

.contact-info.journey-step .contact-card h3 {
    color: var(--white);
    margin: 4px 0 8px;
}

.contact-info.journey-step .contact-card p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-info.journey-step .contact-card i {
    font-size: 2rem;
    color: var(--blue-color);
    margin-bottom: 15px;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 18px;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.contact-action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 45%;
    height: 100%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.65s ease;
}

.contact-action-btn:hover::before {
    left: 125%;
}

.contact-action-btn i {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.contact-action-btn:hover {
    transform: translateY(-3px) scale(1.03);
}

.contact-action-btn:hover i {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .contact-action-btn, .contact-action-btn::before, .contact-action-btn i {
        transition: none !important;
    }
}

.phone-btn { background: var(--primary-color); }
.phone-btn:hover { background: #0d2d4d; box-shadow: 0 6px 16px rgba(7, 26, 45, 0.4); }

.email-btn { background: var(--blue-color); }
.email-btn:hover { background: #0095d4; box-shadow: 0 6px 16px rgba(0, 180, 255, 0.35); }

.location-btn { background: var(--secondary-color); }
.location-btn:hover { background: #d97f10; box-shadow: 0 6px 16px rgba(243, 150, 28, 0.35); }

.contact-info.journey-step .whatsapp-btn { background: #25D366; }
.contact-info.journey-step .whatsapp-btn:hover {
    background: #1ebe5d;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* ---------- Featured-fish base fallback (mirrors fishvarieties.html
   base styling so cards look correct before fish-cards.js enhances them) ---------- */
.featured-fish-grid .fish-info h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.featured-fish-grid .fish-stock {
    font-weight: bold;
    color: var(--primary-color);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .journey-divider .journey-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
        top: -23px;
    }

    .stat-number { font-size: 2.1rem; }

    .fish-spotlight {
        min-height: 380px;
    }

    .fish-spotlight-overlay {
        padding: 28px;
    }

    .fish-spotlight-overlay h3 {
        font-size: 1.9rem;
    }
}
