/*
Theme Name: Parallel Custom Theme
Theme URI: https://paralleldeckchecker.com/
Author: Marc Sloan
Author URI: https://paralleldeckchecker.com/
Description: A lightweight custom theme for the Parallel TCG tools and pages.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: parallel-custom
*/


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

a {
color: inherit;
text-decoration: none;
}

ul {
    list-style: none;
}


/* BASE STYLES */
body {
    background-color: #272323;
    font-family: 'Chakra Petch', sans-serif;
    height: 5000px; 
    position: relative;   
}

/* NORMAL STYLES */
.top-bar {
    background-color: #758295;
    border-radius: 10px;
    width: 99%;
    margin-left: .5%;
    margin-top: .25%;
    padding-right: 15px;  
    margin-bottom: 1%;
    position: fixed;
    top: 2%;
    z-index: 1000;
    height: 50px; /* Set a fixed height */
}

.top-bar__content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%px;
    padding: 0 0px;
}

.bottom-bar {
    position: sticky;
    background-color: #758295;
    border-radius: 10px;
    width: 99%;
    margin-left: .5%;
    height: 50px;
    top: 90px;
    z-index: 20;
}

.bottom-bar__content {
    padding: 15px;
    max-width: 95%;
    margin-top: -25px;
    display: flex;
    align-self: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    column-gap: 0px;
    padding: 10 0px;
}

.header__img {
    width: 100%;
    height: 300px; /* Adjust as needed */
    object-fit: cover;
}

.hero_title {
    width: 100%;
    display: grid;
    justify-content:  center;
    font-family: 'Chakra Petch';
    color: --text-color;
    font-weight: 600;
    top: 1.5%;
    font-size: 2em;
    position: absolute;
    align-items: center;
    text-shadow: 2px 2px 4px #272323;
}

.hero_subtext {
    width: 100%;
    display: grid;
    justify-content:  center;
    font-family: 'Chakra Petch';
    color: --text-color;
    font-weight: 600;
    font-size: 1em;
    top: 3%;
    position: absolute;
    align-items: center;
    text-shadow: 2px 2px 4px #272323;  
}

.logo__img {
    height: 45px;
}

.logo__text {
    font-family: 'Chakra Petch';
    color: #def141;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav__list {
    display: flex;
}

.nav-bottom-left__list {  
    display: flex;
    column-gap: 40px;
}

.nav-bottom-right__list {
    display: flex;
    column-gap: 20px;
}

.dropdown {
    position: relative;
}

.dropdown:hover .dropdown__list {
    display: block;
}

.dropdown__list {
    /*background: #ffffff;*/
    border-radius: 5px;
    position: absolute;
    padding: 10px;
    right: 0;
    top: 70%;
    min-width: max-content;
    /*box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);*/
    display: none;   
}

.dropdown__item {
    padding: 10px 35px 10px 10px;
    border-radius: 6px;
    background: #ffffff;
    outline: solid;
    outline-width: 2px;
    outline-color: rgb(240, 240, 240);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    /*box-shadow: 2px 2px 10px rgb(68, 67, 67);*/
}

.dropdown__item:hover {
    background-color: rgb(234, 234, 233);   
}

.wallet_input {
    border-radius: 6px;
    outline: solid;
    outline-width: 2px;
    outline-color: #C9C6C6;
    padding: 5px 1px 1px 10px;
}

.nav__link {
    color: aliceblue;
    transition: all 0.2s;
    font-size: 20px;
}

.nav__link:hover,
.nav__link:focus {
    color: #272323;
}

.btn {
    color: azure;
    background-color: #504A4A;
    padding: 7px 6px;
    border-radius: 6px;
    outline: solid;
    outline-width: 1px;
    outline-color: #C9C6C6;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 2px 2px 10px rgb(68, 67, 67);
    white-space: nowrap;
}

.btn:hover {
    background-color: rgb(70, 58, 54);
}

.hamburger {
    display: none;
}

/* Donate strip */
.donation-strip {
  padding: 24px 16px;
  text-align: center;
  background: var(--footer-accent, #0b0f14);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.donation-title {
  margin: 0 0 14px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #fff;
}

.donation-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
}

.donation__img {
  display: block;
  height: 350px;           /* tweak as you like */
  width: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
  opacity: 0.98;
}

.donation-logos a:hover .donation__img,
.donation-logos a:focus-visible .donation__img {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  opacity: 1;
  outline: none;
}

.site-meta {
  text-align: center;
  padding: 8px 16px 24px;
  color: var(--text-muted, #98a2b3);
  font-size: 0.9rem;
}

/*___________________________________________________________________________________*/


/* ==============================
   PARALLEL THEME VARIABLES
============================== */
:root {
  --primary-color: #504A4A;
  --accent-color: #C9C6C6;
  --text-color: #ffffff;

  --top-nav-color: #333;
  --bottom-nav-color: #222;

  --button-bg: var(--primary-color);
  --button-text: var(--text-color);
  --button-outline: var(--accent-color);

  --dropdown-bg: var(--accent-color);
  --dropdown-text: var(--primary-color);

  --page-bg: #111111;
  --element-bg: #1c1c1c;
}


/* Themeable Component Styles */
body {
  background-color: var(--page-bg);
  color: var(--text-color);
}

.section, .card, .frame, .main_parent {
  background-color: var(--element-bg);
}

.top-bar {
  background-color: var(--top-nav-color);
}

.bottom-bar {
  background-color: var(--bottom-nav-color);
}

.top-bar,
.bottom-bar,
.btn,
.dropdown__item {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn {
  background-color: var(--button-bg);
  color: var(--button-text);
  border: 1px solid var(--button-outline);
}


.btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.nav__link {
  color: var(--text-color);
}

.nav__link:hover {
  color: var(--accent-color);
}

.dropdown__item {
  background-color: var(--dropdown-bg);
  color: var(--dropdown-text);
}


.dropdown__item:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
}


.auth-modal[hidden] { display: none !important; }
.auth-modal { position: fixed; inset: 0; z-index: 9999; }
.auth-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.auth-modal__dialog {
  position: relative; margin: 10vh auto 0; max-width: 480px;
  background: #fff; color: #111; border-radius: 12px; padding: 24px; box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.auth-modal__title { margin: 0 0 8px; font-size: 1.25rem; }
.auth-modal__text { margin: 0 0 16px; color: #444; }
.auth-modal__actions { display: flex; gap: 10px; justify-content: flex-end; }
.auth-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 8px; text-decoration: none; font-weight: 600; border: 1px solid transparent;
}
.auth-btn--primary { background: #1f4aff; color: #fff; }
.auth-btn--primary:hover { filter: brightness(0.95); }
.auth-btn--outline { background: #fff; color: #1f4aff; border-color: #1f4aff; }
.auth-btn--outline:hover { background: #f5f8ff; }
.auth-modal__close {
  position: absolute; top: 8px; right: 10px; background: transparent; border: 0; font-size: 24px; line-height: 1; cursor: pointer;
}


@import url('https://fonts.googleapis.com/css2?family=Aldrich&display=swap');