/*
 * Responsive framing shared across the classic salilda.com pages.
 * The layout keeps the central content within a soft bounding box so that
 * older templates inherit the refreshed presentation used on tribute_home.html.
 */
body {
    background: linear-gradient(180deg, #f6ecd8 0%, #fffaf3 55%, #f1f5f9 100%);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #3f1c12;
    text-align: center;
    margin: 0;
}

#body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(112, 72, 39, 0.18);
    box-sizing: border-box;
    text-align: left;
}

#body::after {
    content: "";
    display: block;
    clear: both;
}

#header,
#footer {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

#header {
    margin-bottom: 2.5rem;
    padding: 0;
}

#footer {
    margin-top: 3rem;
    padding: 2rem 0 1.5rem;
}

#header h1 {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: url(/images/salilda_logo_header_a.png) center / cover no-repeat;
    aspect-ratio: 1200 / 260;
    max-height: clamp(140px, 24vw, 240px);
    border-radius: 0;
}

#header h1 a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
}

@supports not (aspect-ratio: 1 / 1) {
    #header h1 {
        height: clamp(140px, 24vw, 240px);
    }
}

#header ul,
#footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    padding: 0.85rem 0;
}

#header ul li,
#footer ul li {
    margin: 0;
    display: inline-flex;
    align-items: center;
    font: 16px/1.4 "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    text-transform: lowercase;
}

#header ul li a,
#footer ul li a {
    color: #81361b;
}

#footer {
    border-top: solid 2px rgba(129, 54, 27, 0.35);
}

@media (max-width: 900px) {
    #body {
        padding: 0 1rem 2.5rem;
        border-radius: 20px;
    }

    #recent-updates,
    #menu {
        float: none;
        width: 100%;
        margin: 0 0 2rem;
    }

    #menu img {
        max-width: 100%;
        height: auto;
    }

    #cse,
    #social-links {
        position: static;
        width: auto;
        margin: 1rem 0;
        text-align: center;
    }
}

.tribute-home {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #1c1c1c;
    background: linear-gradient(180deg, #f8f3ed 0%, #ffffff 45%, #f1f5f9 100%);
    padding: 0 1.5rem 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tribute-home a {
    color: #8a3b1a;
    text-decoration: none;
}

.tribute-home a:hover,
.tribute-home a:focus {
    text-decoration: underline;
}


.hero {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 2.5rem;
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(51, 22, 15, 0.12);
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: #b15b25;
    margin-bottom: 0.75rem;
}

.hero__text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 1rem;
    color: #2c1410;
}

.hero__lede {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
    color: #533024;
}

.hero__visual {
    text-align: center;
}

.hero__visual img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.hero__caption {
    font-style: italic;
    margin-top: 0.75rem;
    color: #5d3d32;
}

.about,
.timeline,
.features,
.community,
.newsletter {
    margin-bottom: 3rem;
}

.about h3,
.timeline h3,
.features h3,
.community h3,
.newsletter h3 {
    font-size: 1.65rem;
    color: #2c1410;
    margin-bottom: 1rem;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.about__grid article {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(51, 22, 15, 0.08);
}

.about__grid h4 {
    margin-top: 0;
    color: #8a3b1a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.about__grid p {
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.timeline ol {
    list-style: none;
    margin: 0;
    padding: 0;
    border-left: 3px solid rgba(138, 59, 26, 0.25);
}

.timeline li {
    padding-left: 1.5rem;
    margin-bottom: 1.75rem;
    position: relative;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -0.62rem;
    top: 0.4rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: #b15b25;
    box-shadow: 0 0 0 4px rgba(177, 91, 37, 0.2);
}

.timeline__year {
    font-weight: 700;
    color: #8a3b1a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.4rem;
}

.timeline p {
    margin: 0;
    line-height: 1.6;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fffaf5;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 15px 40px rgba(51, 22, 15, 0.08);
    border: 1px solid rgba(138, 59, 26, 0.15);
}

.feature-card h4 {
    margin-top: 0;
    color: #b15b25;
    font-size: 1.15rem;
}

.feature-card p {
    line-height: 1.6;
}

.community {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: inset 0 0 0 1px rgba(138, 59, 26, 0.1);
}

.community__content ul {
    padding-left: 1.2rem;
}

.community__content li {
    margin-bottom: 0.6rem;
}

.community__media img {
    max-width: 200px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.newsletter {
    text-align: center;
    background: linear-gradient(135deg, rgba(177, 91, 37, 0.1), rgba(177, 91, 37, 0.2));
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 18px 45px rgba(51, 22, 15, 0.1);
}

.newsletter p {
    max-width: 580px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.button {
    display: inline-block;
    background: #8a3b1a;
    color: #fff !important;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(138, 59, 26, 0.35);
}

.button:hover,
.button:focus {
    background: #b15b25;
}

.site-footer {
    text-align: center;
    font-size: 0.9rem;
    color: #4b2b21;
    margin-top: 3rem;
}

.site-footer__note {
    margin-top: 0.35rem;
    color: #7a584b;
}

@media (max-width: 600px) {
    #header h1 a {
        font-size: 1.7rem;
    }

    .hero {
        padding: 1.75rem;
    }

    .hero__text h2 {
        font-size: 2rem;
    }

    .social-panel {
        padding: 1rem;
    }
}
