body
{
    margin: 0;
    background: #111;
    color: #EDBE7E;
    font-family: 'Source Sans Pro', sans-serif;
}

h1, h2, h3, .heading
{
    font-family: 'Playfair Display', serif;
}

p, ul, li
{
    color: #EACF9B;
    line-height: 1.6;
    font-size: 18px;
}

ul
{
    padding-left: 20px;
}

h2, h3
{
    color: #EDBE7E;
    margin-top: 0;
}

/* Global link color – gold instead of default blue */
a
{
    color: #EDBE7E;
}

a:visited
{
    color: #D5B36F;
}

a:hover,
a:focus
{
    color: #FFFFFF;
    text-decoration: underline;
}

/* ===================== BANNER ===================== */
.banner-container
{
    position: relative;
    width: 100%;
    height: 130px;
    overflow: hidden;
}

.banner-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-text
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 38px;
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
}

.symbol-x
{
    color: #EDBE7E;
    opacity: 0.9;
    font-size: 48px;
    font-weight: 900;
}

.shimmer-text
{
    background: linear-gradient(
            120deg,
            #EDC98A 0%,
            #F7D9A7 30%,
            #FFFFFF 50%,
            #F7D9A7 70%,
            #EDC98A 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 5s linear infinite;
    font-size: 34px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes shimmer
{
    0%   { background-position: -50% 0; }
    100% { background-position: 150% 0; }
}

/* ===================== NAV ===================== */
.nav-container
{
    width: 100%;
    padding: 8px 20px;
    background: #111;
    box-sizing: border-box;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.nav-button
{
    display: inline-block;      /* IMPORTANT (works for <a> tags) */
    font-size: 15px;
    font-weight: bold;
    padding: 6px 14px;

    color: #C0A060;
    background: transparent;
    border: 2px solid #C0A060;
    border-radius: 6px;

    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-decoration: none;      /* anchors shouldn’t be underlined */
}

.nav-button:hover,
.nav-button:active
{
    color: #EDBE7E;
    border-color: #EDBE7E;
    background: rgba(237, 190, 126, 0.15);
}

@media (max-width: 700px)
{
    .nav-container
    {
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 12px;
        gap: 6px;
    }

    .nav-button
    {
        width: 90%;
        max-width: 320px;
        text-align: center;
    }
}

/* ===================== HERO CONTENT ===================== */
.banner-content
{
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    box-sizing: border-box;
}

/* Filler image floated in hero block */
.hero-nature
{
    float: right;
    width: 30%;
    max-width: 260px;
    height: auto;
    margin-left: 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    border: 2px solid rgba(237, 190, 126, 0.35);
    display: block;
}

.hero-nature:hover
{
    border-color: #EDBE7E;
}

.post::after
{
    content: "";
    display: block;
    clear: both;
}

@media (max-width: 700px)
{
    .hero-nature
    {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
}

/* ===================== GRID SECTION ===================== */
.container
{
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
    box-sizing: border-box;
}

.columns
{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    box-sizing: border-box;
}

.columns article
{
    flex: 1 1 30%;
    min-width: 220px;
    display: flex;
    flex-direction: column;
}

figure
{
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
}

figure img
{
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid rgba(237, 190, 126, 0.35);
    margin-bottom: 10px;
    display: block;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

figure img:hover
{
    border-color: #EDBE7E;
    transform: scale(1.02);
}

figcaption
{
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: color 0.4s ease, opacity 0.4s ease;
    opacity: 0.85;
}

figure:hover figcaption
{
    color: #F3D9A0;
    opacity: 1;
}

figcaption h3
{
    margin-bottom: 6px;
}

@media (max-width: 800px)
{
    .columns article
    {
        flex: 1 1 45%;
    }
}

@media (max-width: 500px)
{
    .columns article
    {
        flex: 1 1 100%;
    }
}

/* ===================== LEARN-MORE FLOATING IMAGES ===================== */
.learn-img
{
    float: right;
    width: 30%;
    max-width: 260px;
    height: auto;
    margin: 0 0 14px 22px;
    border-radius: 6px;
    border: 2px solid rgba(237, 190, 126, 0.35);
    display: block;
}

.learn-img:hover
{
    border-color: #EDBE7E;
}

.learn-img--aside
{
    max-width: 220px;
}

@media (max-width: 700px)
{
    .learn-img
    {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 18px 0;
    }
}

/* ===================== OS SHARE SECTION (TABLE + CHART) ===================== */
.os-share-section
{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin: 40px 0;
}

.os-table
{
    flex: 1 1 320px;
}

.os-chart
{
    flex: 1 1 280px;
    text-align: center;
}

.os-chart img
{
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 2px solid rgba(237, 190, 126, 0.35);
}

/* Gold table styling */
.gold-table
{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.95rem;
}

.gold-table th,
.gold-table td
{
    border: 1px solid #EDBE7E;
    padding: 8px 10px;
    text-align: left;
}

.gold-table thead th
{
    background: rgba(237, 190, 126, 0.15);
    color: #EDBE7E;
}

.gold-table tbody tr:nth-child(even)
{
    background: rgba(255, 255, 255, 0.02);
}

.os-source
{
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 6px;
}

@media (max-width: 700px)
{
    .os-share-section
    {
        flex-direction: column;
    }

    .os-chart
    {
        order: -1;
    }
}

/* ===================== SYMBOL DOMAINS BOX ===================== */
.symbol-domain-box
{
    border: 1px solid rgba(237, 190, 126, 0.6);
    border-radius: 6px;
    padding: 20px 26px;
    margin: 40px 0;
    background: rgba(0, 0, 0, 0.35);
}

.symbol-grid
{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    font-size: 2.2rem;
    line-height: 1.4;
}

.symbol-item
{
    color: #EDBE7E;
}

.symbol-sold
{
    color: #D9534F;
    font-weight: bold;
}

.symbol-note
{
    margin-top: 14px;
    font-size: 0.9rem;
    color: #EACF9B;
    opacity: 0.8;
}

/* ===================== PAST SALES BOX ===================== */
.past-sales
{
    border: 1px solid rgba(237, 190, 126, 0.6);
    border-radius: 6px;
    padding: 15px 18px;
    margin: 30px 0;
    background: rgba(0, 0, 0, 0.4);
}

.past-sales h3
{
    margin-top: 0;
}

/* ===================== CONTACT PAGE ===================== */
.contact-card
{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid #b08d2a;
    border-radius: 8px;
}

.contact-photo
{
    flex: 0 0 auto;
}

.tedd-photo
{
    width: 150px;
    height: auto;
    display: block;
    border: 1px solid #b08d2a;
    border-radius: 6px;
}

.contact-details
{
    flex: 1 1 auto;
    min-width: 200px;
}

.contact-brand
{
    margin: 0 0 10px 0;
}

.contact-address,
.contact-comm
{
    margin: 0 0 10px 0;
}

@media (max-width: 700px)
{
    .contact-card
    {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-details
    {
        min-width: auto;
    }
}

/* ===================== FOOTER ===================== */
.site-footer
{
    background: #111;
    color: #EDBE7E;
    padding: 16px 0;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-inner
{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-brand
{
    font-family: 'Playfair Display', serif;
    font-size: 2.0rem;
    color: #EDBE7E;
    opacity: 0.95;
}

.footer-symbol
{
    font-size: 2.3rem;
    color: #EDBE7E;
}

/* Responsive footer row (no overflow on phones) */
.footer-row
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    text-align: center;
    margin: 10px 0 14px;
}

.footer-bird
{
    width: 32px;
    height: auto;
    display: inline-block;
}

@media (max-width: 600px)
{
    .footer-bird
    {
        width: 26px;
    }
}

/* Stack name/meta on mobile */
.footer-text
{
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.25;
}

.footer-name
{
    font-size: 1rem;
}

.footer-meta
{
    font-size: 0.92rem;
    opacity: 0.9;

    display: flex;
    flex-wrap: wrap;             /* KEY: allows wrap */
    justify-content: center;
    gap: 8px;
}

.footer-sep
{
    opacity: 0.6;
}

@media (min-width: 601px)
{
    .footer-text
    {
        flex-direction: row;
        gap: 8px;
    }

    .footer-name::after
    {
        content: " — ";
        font-weight: normal;
        opacity: 0.9;
    }
}

/* sperling.com link style */
.footer-parent
{
    color: #caa64a;
    text-decoration: none;
    border-bottom: 1px solid rgba(202, 166, 74, 0.35);
    padding-bottom: 1px;
}

.footer-parent:hover
{
    border-bottom-color: rgba(202, 166, 74, 0.85);
}

@media (max-width: 600px)
{
    .footer-parent
    {
        display: inline-block;
        padding: 6px 10px;
        border: 1px solid rgba(202, 166, 74, 0.35);
        border-radius: 8px;
        margin-top: 6px;
        border-bottom: none;
    }
}

/* Footer nav links */
.footer-links
{
    margin: 10px 0 5px;
}

.footer-links a
{
    color: #EDBE7E;
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.95rem;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.footer-links a:hover
{
    opacity: 1;
}

@media (max-width: 600px)
{
    .footer-links a
    {
        display: inline-block;
        padding: 10px 12px;
        margin: 4px 6px;
        border-radius: 8px;
    }
}

.footer-copy
{
    color: #EDBE7E;
    opacity: 0.6;
    font-size: 0.85rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

section[role="banner"] {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    box-sizing: border-box;
}

.banner-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
    box-sizing: border-box;
}

