/* ============================================================
   PAGES.CSS - Page-specific layout classes
   All styles previously in @section Styles blocks
   ============================================================ */

/* --- Index page --- */
.home-header { height: 50vh; min-height: 420px; }

.album-feature {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 0;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(0,0,0,0.5), 0 0 1px var(--cyan-glow);
    max-width: 1200px;
    margin: 0 auto;
}

.album-cover-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.album-cover-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s, transform 0.3s;
}

.album-cover-panel:hover img {
    filter: brightness(0.3);
    transform: scale(1.04);
}

.album-cover-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.album-cover-panel:hover .album-cover-hover { opacity: 1; }

.album-detail-panel {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    border-left: 1px solid var(--border);
}

.album-feature-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-bright);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.album-feature-subtitle {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    color: var(--text-dim);
    font-style: italic;
}

.album-meta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.08em;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.album-meta span { color: var(--cyan); }

.secondary-notice {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--border);
    background: var(--bg-panel);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.secondary-notice-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

.secondary-notice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.secondary-notice:hover .secondary-notice-image img { opacity: 1; }

.secondary-notice-body {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    padding: 18px 24px 18px 0;
}

.secondary-notice-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--cyan);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 700;
    text-shadow: 0 0 8px var(--cyan);
}

.secondary-notice-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: var(--text-dim);
    flex: 1;
}

.secondary-notice-text strong { color: var(--text); }

.secondary-notice-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
    margin: 0;
    white-space: nowrap;
}

.section-no-top-pad { padding-top: 0; }
.section-updates { padding-top: 20px; padding-bottom: 0; }
.section-link { text-decoration: none; display: block; }

/* --- ChronoLogic page --- */
.album-covers-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.album-cover-img {
    max-width: 400px;
    width: 100%;
}

.image-label-italic {
    font-style: italic;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* --- TheBand page --- */
.members-centered .section-label,
.members-centered h2 { text-align: center; }

/* --- Conclusion page --- */
.conclusion-implications {
    padding: 30px;
    background: rgba(255, 68, 102, 0.05);
    text-align: center;
    margin-top: 40px;
}

.conclusion-implications-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-red);
}

/* --- Account / form pages --- */
.form-box {
    max-width: 480px;
    margin: 0 auto;
}

.form-box-wide {
    max-width: 540px;
    margin: 0 auto;
}

.form-box-centered {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

/* --- Shapes page --- */
.shapes-restricted-center { text-align: center; }

/* --- Personnel pages --- */
.personnel-alter-ego {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 20px 0;
    color: var(--accent-red);
    text-align: center;
}

.personnel-nav-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-red);
}

.personnel-nav-title-complete {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--cyan);
}

.personnel-nav-body { margin-bottom: 20px; }

/* --- Responsive --- */
@media (max-width: 768px) {
    .home-header { height: auto; min-height: 0; padding: 50px 20px 40px; }
    .album-feature { grid-template-columns: 1fr; }
    .album-cover-panel { height: 280px; }
    .album-detail-panel { border-left: none; border-top: 1px solid var(--border); padding: 28px 20px; }
    .album-feature-title { font-size: 2rem; }
    .secondary-notice-body { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 16px 16px 0; }
    .secondary-notice-image { width: 80px; height: 80px; }
    .album-covers-container { flex-direction: column; align-items: center; }
}
