/* =============================================
   MENU PAGES — Additional Styles
   (appended after main style.css)
   ============================================= */

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #1565c0 100%);
    padding: 36px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255,255,255,0.07) 0%, transparent 50%);
    pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 {
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p { color: #90caf9; font-size: 14px; max-width: 600px; margin: 0 auto 20px; }

/* Page Search */
.page-search-box {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    padding: 4px 4px 4px 18px;
    align-items: center;
}
.page-search-box span { font-size: 16px; margin-right: 6px; }
.page-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: var(--font-body);
    background: transparent;
    padding: 9px 0;
}

/* Page Content Wrapper */
.page-wrapper {
    max-width: 1200px;
    margin: 28px auto;
    padding: 0 16px;
}

/* Category Cards Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
}

.cat-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
}

.cat-card-head {
    padding: 12px 16px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ch-red    { background: linear-gradient(90deg, #b71c1c, #ef5350); }
.ch-blue   { background: linear-gradient(90deg, #0d47a1, #1e88e5); }
.ch-green  { background: linear-gradient(90deg, #1b5e20, #43a047); }
.ch-orange { background: linear-gradient(90deg, #e65100, #f57c00); }
.ch-purple { background: linear-gradient(90deg, #4a148c, #7b1fa2); }
.ch-teal   { background: linear-gradient(90deg, #004d40, #00897b); }

.cat-list { list-style: none; padding: 6px 0; margin: 0; }
.cat-list li { border-bottom: 1px dashed var(--border); }
.cat-list li:last-child { border-bottom: none; }
.cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    gap: 8px;
    transition: background 0.15s, color 0.15s;
}
.cat-list a:hover { background: #fffde7; color: var(--red); }
.cat-list a .date-info { font-size: 11px; color: var(--red); font-weight: 700; white-space: nowrap; }

/* Archive Box */
.archive-box {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-top: 24px;
    overflow: hidden;
}
.archive-head {
    background: var(--blue-dark);
    color: white;
    padding: 12px 18px;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
}
.archive-text {
    padding: 14px 18px;
    font-size: 13px;
    color: #555;
    line-height: 2;
}
.archive-text a { color: var(--blue); text-decoration: none; font-weight: 600; }
.archive-text a:hover { color: var(--red); }

/* Results Layout */
.results-layout { display: grid; grid-template-columns: 1fr 280px; gap: 20px; align-items: start; }

.sidebar-card {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.sidebar-head {
    background: var(--blue-dark);
    color: white;
    padding: 10px 14px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
}
.sidebar-list { list-style: none; padding: 8px 0; margin: 0; }
.sidebar-list li { border-bottom: 1px dashed var(--border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a {
    display: block;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: background 0.15s;
}
.sidebar-list a:hover { background: var(--blue-light); }

/* Content Page (About, Privacy, Disclaimer, Contact) */
.content-page {
    max-width: 860px;
    margin: 36px auto;
    padding: 0 16px 40px;
}
.content-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 20px;
}
.content-card h2 {
    font-family: var(--font-head);
    color: var(--blue-dark);
    font-size: 19px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.content-card p { color: #444; line-height: 1.85; font-size: 14.5px; margin-bottom: 12px; }
.content-card ul { margin: 10px 0 10px 20px; color: #444; line-height: 2; font-size: 14px; }

.info-strip {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 6px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--blue-dark);
}
.info-strip strong { display: block; margin-bottom: 4px; font-size: 15px; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg);
    border-radius: 8px;
    border: 1px solid var(--border);
}
.ci-icon { font-size: 24px; flex-shrink: 0; }
.ci-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.ci-value { font-size: 14px; color: var(--blue-dark); font-weight: 700; }
.ci-value a { color: var(--blue); text-decoration: none; }
.ci-value a:hover { color: var(--red); text-decoration: underline; }

/* Notice / Alert Box */
.notice-box {
    border: 1.5px dashed var(--red);
    background: var(--red-light);
    border-radius: 8px;
    padding: 16px 18px;
    margin-top: 24px;
}
.notice-box h4 { color: var(--red); font-family: var(--font-head); margin-bottom: 6px; font-size: 15px; }
.notice-box p { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }

@media (max-width: 900px) {
    .results-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: 1fr; }
}
