/* =====================================================
   Landing Page — etoyoc.com / gbeefabrics.com
   ===================================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

/* ── Page shell ── */
.landing-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ── Header ── */
.landing-header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.landing-header h1 {
    margin: 0;
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 600;
}

.landing-header p {
    margin: 0.4rem 0 0;
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* ── Split layout ── */
.split-layout {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 768px) {
    .split-layout {
        flex-direction: row;
        align-items: stretch;
    }
}

.split-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Side backgrounds ── */
.gbee-side {
    background-color: #d4c87a;
    border-bottom: 2px solid #c0b560;
}

@media (min-width: 768px) {
    .gbee-side {
        border-bottom: none;
        border-right: 2px solid #c0b560;
    }
}

.etoyoc-side {
    background: linear-gradient(160deg, #e8f4fd 0%, #dde8f5 100%);
}

/* ── Banner strip at top of each side ── */
.side-banner-wrap {
    width: 100%;
    height: 160px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.side-banner-wrap img {
    max-height: 130px;
    max-width: 90%;
    object-fit: contain;
    display: block;
}

.side-banner-sq {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 8px;
    margin-left: 1rem;
}

/* ── Content area below banner ── */
.side-content {
    padding: 0 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ── Profile photo — plain <img width=160> ── */
.profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    margin-top: -80px;
    margin-bottom: 1.2rem;
    display: block;
    background: #fff;
}

.split-side h2 {
    font-size: 1.9rem;
    margin: 0 0 0.4rem;
    color: #2c3e50;
}

.tagline {
    font-size: 1rem;
    color: #444;
    margin: 0 0 1.8rem;
    max-width: 85%;
    line-height: 1.5;
}

/* ── Shared link/button system ── */
/*
   Every link — both the primary Etsy button and the
   secondary links — uses the same pill shape so they
   look consistent.  The icon is a fixed 28×28 square
   on the left; the text fills the rest.
*/
.link-row {
    display: flex;
    align-items: center;
    width: 280px;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    margin-bottom: 0.75rem;
    color: #fff;
}

.link-row:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

/* Primary Etsy button colours */
.link-row.etsy-gbee   { background-color: #f1641e; }
.link-row.etsy-etoyoc { background-color: #f1641e; }

/* Secondary link colours */
.link-row.secondary {
    background-color: rgba(255,255,255,0.72);
    color: #2c3e50;
    border: 1px solid rgba(0,0,0,0.12);
}

.link-row.secondary:hover {
    background-color: #ffffff;
}

.link-row-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-row-icon img,
.link-row-icon svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    fill: currentColor;
    display: block;
}

.link-row-text {
    flex: 1;
    text-align: left;
    line-height: 1.2;
}

/* ── Fossil strip ── */
.fossil-strip {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}

.fossil-strip h3 {
    margin: 0 0 1.2rem;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Footer ── */
.landing-footer {
    text-align: center;
    padding: 1.5rem 2rem;
    background-color: #2c3e50;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.landing-footer p { margin: 0.3rem 0; }

.landing-footer a {
    color: #5dade2;
    text-decoration: none;
}

.landing-footer a:hover { text-decoration: underline; }
