/*
Theme Name: The After Hours Society
Theme URI: https://www.theafterhourssociety.com
Description: A custom, premium dark-mode theme for The After Hours Society.
Author: Antigravity
Author URI: https://google.com
Version: 1.9
Text Domain: after-hours
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=Montserrat:wght@200;300;400&display=swap');

:root {
    --bg-color: #030305;
    /* Deepest midnight */
    --surface-color: #0f0f13;
    --surface-color-transparent: rgba(15, 15, 19, 0.85);

    /* More "Champagne" Gold, less "Brass" */
    --primary-color: #F2D0A4;
    --primary-accent: #bf955e;

    /* Deep sensual red/purple undertone */
    --secondary-color: #4a0404;

    --text-color: #EAEAEA;
    --text-muted: #9ca3af;

    /* New Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition-speed: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);

    --glass-bg: rgba(20, 20, 25, 0.4);
    --glass-border: rgba(242, 208, 164, 0.15);
    --glass-blur: 15px;

    --glow-text: 0 0 15px rgba(242, 208, 164, 0.3);
    --glow-box: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* =========================================
   CRITICAL HERO STYLES (Moved to Top)
   ========================================= */
.ahs-hero {
    position: relative;
    min-height: 100vh;
    padding: clamp(90px, 10vh, 130px) 20px 60px;
    /* Allow the hero to expand without clipping long copy or the login panel */
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    /* Fallback */
}

.ahs-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Keep the mask + lounge visible on wide screens */
    background-position: 72% 55%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1 !important;
    /* Bottom */
    display: block !important;
    transform: translateZ(0);

    /* Lift the image out of the abyss — the overlay is already dark */
    filter: brightness(1.15) contrast(1.08) saturate(1.05);
    opacity: 0.95;
}

.ahs-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* The hero image is intentionally dark — keep the mood without blacking it out */
    background:
        radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.65));
    z-index: 2 !important;
    /* Middle */
    pointer-events: none;
}

.ahs-hero__inner {
    position: relative;
    z-index: 3 !important;
    /* Top */
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px;
}

.ahs-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin: 0 0 15px;
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.ahs-hero__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 50px;
    opacity: 0.9;
}

.ahs-hero__card {
    background: rgba(15, 15, 19, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: clamp(24px, 3.2vw, 40px);
    max-width: 760px;
    margin: 0 auto 24px;
    border-radius: 4px;
    height: auto;
    max-height: none;
    overflow: visible;
}

.ahs-hero__card p {
    font-size: 1.0rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.ahs-hero__card p:last-child {
    margin-bottom: 0;
}

.ahs-hero__features {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.ahs-hero__features img {
    mix-blend-mode: screen;
    opacity: 0.9;
    max-width: 280px;
    height: auto;
}


.ahs-hero__sigils{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 18px;
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-color);
}
.ahs-hero__sigils span.sep{ opacity: 0.35; }
.ahs-hero__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .ahs-hero {
        padding-top: 120px;
    }

    /* Mobile: keep composition balanced (avoid pinning too far right) */
    .ahs-hero__bg {
        background-position: 55% 75%;
    }

    .ahs-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .ahs-hero__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* END CRITICAL HERO STYLES */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    /* Lighter weight for elegance */
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: 0.02em;
    width: 100%;
    /* Prevent horizontal shift */
    margin: 0;
}

/* WP Admin Bar Fix */
body.admin-bar .header {
    top: 32px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1 {
    font-weight: 300;
    font-style: italic;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--primary-color);
    text-shadow: var(--glow-text);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 400;
    cursor: pointer;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn:hover {
    background: rgba(242, 208, 164, 0.1);
    box-shadow: 0 0 20px rgba(242, 208, 164, 0.2);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* Ghost button (keeps default but slightly brighter on dark hero) */
.btn-ghost {
    border-color: rgba(242, 208, 164, 0.9);
    color: rgba(242, 208, 164, 0.95);
}
.btn-ghost:hover {
    background: rgba(242, 208, 164, 0.12);
    color: #fff;
}

/* ============================================================
   ABOUT PAGE — Phase-0 polish (theme baked)
   ============================================================ */
.ahs-about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ahs-about-hero__veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.78) 55%, rgba(0,0,0,0.92) 100%);
}

.ahs-about-hero__inner {
    position: relative;
    padding-top: 140px; /* clears fixed header */
    padding-bottom: 60px;
    max-width: 980px;
    text-align: left;
}

.ahs-about-hero__title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: 2px;
}

.ahs-about-hero__subtitle {
    margin-top: 18px;
    max-width: 42rem;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.78);
}

.ahs-about-hero__actions {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ahs-about-story {
    background: #000;
}

.ahs-about-story__wrap {
    max-width: 980px;
    margin: 0 auto;
}

.ahs-about-story__copy {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.78);
}

.ahs-about-story__copy p {
    margin-bottom: 18px;
}

.ahs-about-split {
    background: rgba(10,10,10,1);
}

.ahs-about-split__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ahs-card {
    border: 1px solid rgba(242, 208, 164, 0.18);
    background: rgba(0,0,0,0.65);
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 0 40px rgba(0,0,0,0.35);
}

.ahs-card--muted {
    border-color: rgba(255,255,255,0.10);
}

.ahs-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.ahs-card ul {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.ahs-about-steps {
    background: #000;
}

.ahs-steps {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ahs-step {
    border: 1px solid rgba(242, 208, 164, 0.14);
    background: rgba(255,255,255,0.02);
    padding: 24px;
    border-radius: 14px;
}

.ahs-step__num {
    color: rgba(242, 208, 164, 0.9);
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.ahs-step__title {
    font-family: var(--font-headings);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.ahs-step__desc {
    color: rgba(255,255,255,0.70);
    line-height: 1.7;
}

.ahs-about-cta {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .ahs-about-split__grid {
        grid-template-columns: 1fr;
    }
    .ahs-steps {
        grid-template-columns: 1fr;
    }
    .ahs-about-hero__inner {
        text-align: center;
    }
    .ahs-about-hero__actions {
        justify-content: center;
    }
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--primary-color);
    text-shadow: var(--glow-text);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: linear-gradient(to bottom, rgba(3, 3, 5, 0.95), rgba(3, 3, 5, 0));
    transition: background 0.5s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: #fff;
    text-transform: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links li a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.nav-links li a.active,
.nav-links li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-family: var(--font-heading);
    font-style: italic;
    margin-bottom: 50px;
    color: var(--primary-color);
    opacity: 0.9;
}

/* Login/Password Form Styles */
.password-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(15, 15, 19, 0.9);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.post-password-form label {
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.post-password-form input[type="password"] {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.post-password-form input[type="submit"] {
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-password-form input[type="submit"]:hover {
    background: white;
    color: black;
}

/* Event List Styling */
.events-grid {
    display: grid;
    gap: 40px;
}

.event-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .event-card {
        flex-direction: row;
    }

    .event-image {
        width: 45%;
        height: auto;
        min-height: 300px;
    }

    .event-details {
        width: 55%;
    }
}

.event-image {
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.event-details {
    padding: 40px;
}

.event-date {
    color: var(--primary-color);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    display: block;
}

/* Login Form Styles */
.login-container {
    max-width: 450px;
    margin: 40px auto 0;
    background: rgba(15, 15, 19, 0.95);
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glow-box);
}

.login-form p {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-form input[type="text"],
.login-form input[type="password"] {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s;
}

.login-form input[type="text"]:focus,
.login-form input[type="password"]:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 15px rgba(242, 208, 164, 0.1);
}

.login-submit {
    margin-top: 30px;
}

.login-submit input[type="submit"] {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #000;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.login-submit input[type="submit"]:hover {
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.login-remember {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    list-style: none;
    flex-wrap: wrap;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   AHS Hero Layout Fixes (New Structure)
   ========================================= */
.ahs-hero {
    position: relative;
    min-height: 100vh;
    /* Ensures full height */
    padding: clamp(100px, 15vh, 150px) 20px 80px;
    /* Allow the hero to expand without clipping long copy or the login panel */
    overflow: visible;
    /* Contains the blur/overlay but allows scroll */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Wrapper */
.ahs-hero__bg {
    position: absolute;
    inset: 0;
    /* Keep the mask + lounge visible on wide screens */
    background-position: 70% 80%;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    transform: translateZ(0);
    /* Hardware accel to prevent seam tearing */

    /* Lift the image out of the abyss — the overlay is already dark */
    filter: brightness(1.15) contrast(1.08) saturate(1.05);
    opacity: 0.95;
}

/* Overlay Gradient */
.ahs-hero__overlay {
    position: absolute;
    inset: 0;
    /* The hero image is intentionally dark — keep the mood without blacking it out */
    background:
        radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

/* Inner Content Container */
.ahs-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    /* Centering Fix */
    text-align: center;
    padding-bottom: 40px;
}

/* Typography */
.ahs-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin: 0 0 15px;
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.ahs-hero__sub {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
    /* Gold */
    margin: 0 0 50px;
    opacity: 0.9;
}

/* The Glass Card (No Clipping!) */
.ahs-hero__card {
    background: rgba(15, 15, 19, 0.6);
    /* Slightly more transparent */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: clamp(24px, 3.2vw, 40px);
    max-width: 760px;
    margin: 0 auto 24px;
    border-radius: 4px;

    /* Crucial layout fixes */
    height: auto;
    max-height: none;
    overflow: visible;
}

.ahs-hero__card p {
    font-size: 1.0rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.ahs-hero__card p:last-child {
    margin-bottom: 0;
}

/* Features/Icons Row */
.ahs-hero__features {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.ahs-hero__features img {
    /* If the png has a black background, this blends it away */
    mix-blend-mode: screen;
    opacity: 0.9;
    max-width: 280px;
    height: auto;
}

/* CTA Buttons */
.ahs-hero__cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .ahs-hero {
        padding-top: 120px;
    }

    .ahs-hero__cta {
        flex-direction: column;
        align-items: center;
    }

    .ahs-hero__cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================
   Expansion Pages (Events / Rules / Reservation / About / Dashboard / Apply)
   ========================= */

.section-padding{ padding: 80px 0; }
.text-center{ text-align:center; }

.form-group{ margin-bottom: 18px; }
.form-label{ display:block; margin-bottom: 8px; font-size: 0.85rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.form-control{
  width:100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  outline: none;
}
.form-control:focus{
  border-color: rgba(242, 208, 164, 0.65);
  box-shadow: 0 0 0 2px rgba(242, 208, 164, 0.10);
}

.feature-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 26px;
}

.event-card{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  margin-bottom: 28px;
}
.event-image{
  min-height: 220px;
  background-size: cover;
  background-position: center;
}
.event-details{ padding: 26px; }
.event-date{
  display:inline-block;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(242, 208, 164, 0.9);
  margin-bottom: 10px;
}

@media (max-width: 860px){
  .event-card{ grid-template-columns: 1fr; }
  .event-image{ min-height: 200px; }
}

/* Reservation page */
.reservation-summary{
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border: 1px solid rgba(242, 208, 164, 0.45);
  margin-bottom: 30px;
}
.ticket-option{
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.ticket-option:hover,
.ticket-option.selected{
  border-color: rgba(242, 208, 164, 0.75);
  background: rgba(242, 208, 164, 0.06);
}
.ticket-option h4{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 8px;
}
.ticket-option.pulse-attention{
  animation: ahsPulse 0.25s ease-in-out 0s 3;
}
@keyframes ahsPulse{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-2px); }
  100%{ transform: translateY(0); }
}

/* ================================
   WOOCOMMERCE VISIBILITY FIX
   Ensures My Account / Dashboard content isn't black-on-black
   ================================ */

.woocommerce,
.woocommerce-page {
    color: var(--text-color);
}

.woocommerce a,
.woocommerce-page a {
    color: var(--text-color);
}

.woocommerce a:hover,
.woocommerce-page a:hover {
    color: var(--primary-color);
}

.woocommerce p,
.woocommerce-page p,
.woocommerce li,
.woocommerce-page li,
.woocommerce table,
.woocommerce-page table,
.woocommerce .woocommerce-MyAccount-content,
.woocommerce-page .woocommerce-MyAccount-content {
    color: var(--text-color);
}

/* Make WC notices readable */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background: rgba(15, 15, 19, 0.95);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

/* My Account navigation styling */
.woocommerce-MyAccount-navigation {
    background: rgba(15, 15, 19, 0.75);
    border: 1px solid var(--glass-border);
    padding: 18px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.woocommerce-MyAccount-navigation li.is-active a {
    color: var(--primary-color);
    text-shadow: var(--glow-text);
}

/* Inputs on dark background */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="password"],
.woocommerce textarea,
.woocommerce select {
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
}

.woocommerce label {
    color: var(--text-muted);
}

/* Buttons */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
    background: var(--primary-color);
    color: #000;
}
