/* ============================================================
   custom.css — Goldenland Resort Custom Override Styles
   ใช้สำหรับปรับแต่งดีไซน์ที่ต้องการวางทับ styles.css
   โดยไม่ต้องแก้ไขไฟล์ต้นฉบับของฝั่งออกแบบ
   ============================================================ */

/* ─── Feature Grid Icons ──────────────────────────────────── */
.feature-icon-wrap i {
    font-size: 2.5rem;
    color: #e5c47f;
}

.feature-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Hero gold text is split by JS into word groups so spaces can wrap cleanly. */
.gold-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    column-gap: 0.35em;
    row-gap: 0;
    margin: 0 0 10px;
}

.gold-text-word {
    display: inline-flex;
    gap: 2px;
    white-space: nowrap;
    background: none;
    -webkit-text-fill-color: currentColor;
    filter: none;
    margin: 0;
}

.gold-text-word > span {
    font-size: 32px;
    font-weight: 600;
    font-family: "Times New Roman", serif;
    letter-spacing: 1px;
    background: linear-gradient(
        135deg,
        #8f774f 0%,
        #6f501d 18%,
        #d7b972 35%,
        #ffe5c2 50%,
        #d3a459 65%,
        #9d7631 82%,
        #6f501d 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
    margin: 0;
}

@media (min-width: 768px) {
    .gold-text {
        column-gap: 0.75em;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}
