/* =========================================================
   SAM PAGE — ISOLATED STYLES
   ========================================================= */

/* ------------------------------
   HERO SECTION BASE
------------------------------ */
.sam-hero {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
    background: #0b0f14;
}

/* Forest vignette */
.sam-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 2;
}

/* Top mist haze */
.sam-mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.14) 35%,
        rgba(255,255,255,0.08) 60%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0.45;
    filter: blur(6px);
}

/* ------------------------------
   HERO INNER LAYOUT
------------------------------ */
.sam-hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
}

/* ------------------------------
   PORTRAIT
------------------------------ */
.sam-portrait-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.sam-portrait {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-image: url('/assets/images/icons/sam_live.webp');
    box-shadow: 0 0 26px rgba(0,255,128,0.45);
    outline: 3px solid rgba(0,255,128,0.7);
    animation: samPulse 4s ease-in-out infinite;
}

/* Seasonal portrait swaps */
.sam-portrait.holiday {
    background-image: url('/assets/images/icons/SSam_Santa_Hat.png');
}

.sam-portrait.newyear {
    background-image: url('/assets/images/icons/SSam_NewYear.webp');
}

.sam-portrait.stpat {
    background-image: url('/assets/images/icons/SSam_StPat.webp');
}

@keyframes samPulse {
    0%,100% { box-shadow: 0 0 20px rgba(0,255,128,0.3); }
    50%     { box-shadow: 0 0 36px rgba(0,255,128,0.6); }
}

/* Reflection glow */
.sam-reflection {
    width: 160px;
    height: 40px;
    background: radial-gradient(
        ellipse at center,
        rgba(0,255,128,0.22) 0%,
        rgba(0,255,128,0.02) 70%,
        transparent 100%
    );
    filter: blur(10px);
    opacity: 0.8;
}

/* ------------------------------
   HERO TEXT
------------------------------ */
.sam-hero-text {
    z-index: 5;
}

.sam-hero-text h1 {
    font-size: 2.7rem;
    margin: 0 0 12px;
    color: #fff;
}

.sam-hero-text .tagline {
    font-size: 1.25rem;
    color: #c9d3df;
    margin-bottom: 18px;
}

/* Quote bubble */
.sam-quote-holder {
    margin-top: 14px;
}

.sam-quote-bubble {
    padding: 10px 20px;
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    color: #fff;
    font-size: 1rem;
    opacity: 0;
    backdrop-filter: blur(12px);
    transition: opacity .35s ease;
}

.sam-quote-bubble.show {
    opacity: 1;
}

/* ------------------------------
   CONTENT SECTIONS
------------------------------ */
.sam-section {
    max-width: 900px;
    margin: 90px auto;
    padding: 0 20px;
}

.sam-section h2 {
    font-size: 1.9rem;
    margin-bottom: 16px;
    color: #fff;
}

.sam-section p {
    margin-bottom: 18px;
    line-height: 1.65;
}

.sam-section::after {
    content: "";
    width: 48px;
    height: 48px;
    background: url('/assets/images/icons/fly-icon.png') center/contain no-repeat;
    display: block;
    margin: 55px auto 0;
    opacity: 0.75;
}

/* ------------------------------
   LISTS
------------------------------ */
.sam-list {
    list-style: disc;
    padding-left: 20px;
}

.sam-list li {
    margin-bottom: 12px;
    line-height: 1.65;
}

/* ------------------------------
   CARD GRID
------------------------------ */
.sam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.sam-card {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.09);
}

/* ------------------------------
   CTA
------------------------------ */
.sam-cta {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.sam-btn {
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
}

.sam-btn.green {
    background: #0a8f55;
    border-color: #0a8f55;
}

/* ------------------------------
   MOBILE
------------------------------ */
@media (max-width: 700px) {
    .sam-hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .sam-portrait {
        width: 170px;
        height: 170px;
    }

    .sam-reflection {
        width: 120px;
        height: 32px;
    }
}