/* ============================================================
   Division 9 — No Specials Page (no-specials.html)
   Page-specific styles
   ============================================================ */

/* ── Layout ── */
body {
    display: flex;
    flex-direction: column;
}

.main-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* ── Content Section ── */
.content-section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    text-align: center;
}

.icon-container {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    background: rgba(13, 148, 136, 0.05);
}

.icon-container svg {
    width: 32px;
    height: 32px;
    color: var(--gold-primary);
}

.content-section h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 800px;
}

.content-section h1 span {
    color: var(--gold-primary);
    font-style: italic;
}

p.message {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.8;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--gold-primary);
    padding: 16px 32px;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.back-link:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

/* ── Header Right ── */
.header-right {
    justify-self: end;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 24px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
}

@media (max-width: 600px) {
    header {
        padding: 20px;
    }

    .logo-text,
    .logo-divider {
        display: none;
    }
}