/* public/css/about.css */
/* =========================================================
   ABOUT PAGE EXTENSIONS (reuses root vars from style.css)
   ========================================================= */

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("../img/hero2.jpg") center/cover fixed no-repeat;
    overflow: hidden;
    padding-top: 80px; /* Navbar spacing */
}
.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 0;
}
.about-hero > * { position: relative; z-index: 1; }

.hero-card--about {
    max-width: 800px;
}

/* ---------- Generic glass card helper ---------- */
.glass-card {
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: var(--glass-bg);
    background-image: var(--glass-highlight);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem 2.5rem;
    box-shadow: var(--glass-shadow);
}

/* ---------- STORY ---------- */
.story-section {
    padding-block: 6rem 5rem;
}
.story-layout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 900px) {
    .story-layout { grid-template-columns: 1fr; gap: 3rem; }
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.5rem;
    position: relative;
}
.timeline::before {
    content: "";
    position: absolute;
    left: .5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--glass-border);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -.3rem;
    top: .3rem;
    width: .85rem;
    height: .85rem;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(89,220,225,.2), 0 0 10px var(--primary);
}
.tl-year {
    font-size: .85rem;
    display: inline-block;
    opacity: .8;
    margin-bottom: .25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
}
.tl-title {
    margin: .1rem 0 .5rem;
    font-size: 1.25rem;
    font-weight: 700;
}
.tl-desc {
    margin: 0;
    color: var(--text-300);
    line-height: 1.6;
}

/* ---------- MANIFESTO ---------- */
.manifesto-section {
    padding-block: 5rem;
}
.manifesto-card {
    max-width: 980px;
    margin-inline: auto;
}
.value-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0;
    display: grid;
    gap: 2rem;
}
.value-list li h3 {
    margin: 0 0 .5rem;
    font-size: 1.3rem;
    color: var(--primary);
}
.value-list li p {
    margin: 0;
    color: var(--text-300);
    line-height: 1.6;
}

/* ---------- OATH ---------- */
.oath-section {
    padding-block: 6rem;
}
.oath-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) { .oath-layout { grid-template-columns:1fr; gap: 3rem; } }

.glass-frame {
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    background: var(--glass-bg);
}
.glass-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.glass-frame:hover img {
    transform: scale(1.05);
}

/* ---------- REFUND ---------- */
.refund-section {
    padding-block: 5rem;
}
.refund-card {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}
.small-print {
    font-size: .9rem;
    opacity: .7;
    margin-top: 1.5rem;
}

/* ---------- CONTACT ---------- */
.contact-section {
    padding-block: 6rem 7rem;
}
.contact-card {
    max-width: 960px;
    margin-inline: auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 2rem;
    margin: 2.5rem 0 3rem;
}
.contact-item h3 {
    margin: 0 0 .5rem;
    font-size: 1.1rem;
    opacity: .9;
    color: var(--primary);
}
.contact-link {
    color: var(--text-100);
    text-decoration: none;
    word-break: break-all;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.contact-link:hover {
    color: var(--primary);
    text-decoration: none;
    text-shadow: 0 0 8px rgba(89,220,225,0.4);
}
.contact-text {
    margin: 0;
    color: var(--text-300);
}
.btn-secondary.back-top {
  display: inline-block;
  margin: 1rem auto 0;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--glass-border);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary.back-top:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* ---------- Animations (fade-in on scroll) ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------- Utility ---------- */
.section-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.1;
}
.subtitle {
    margin-top: .75rem;
    color: var(--text-300);
    font-size: 1.1rem;
}
