/*
Theme Name: Alenas Theme 2.0
Author: Alex Offerman
Description: Wordpress thema voor Alenas 2.0
Version: 1.0
*/
body {
    background-color: #0f0f0f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}
a {
    color: #eab260;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
.post-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.85rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nieuws-label {
  background-color: #eab260;
  color: #eab260;
}

.artikel-label {
  background-color: #121212;
  color: #eab260;
  border: 1.5px solid #eab260;
}

.shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmerAnim 2.5s infinite;
}

@keyframes shimmerAnim {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.community-gallery .wp-block-gallery,
.community-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.community-gallery .wp-block-image img,
.community-gallery .gallery img {
  width: 50%;
  height: auto;
  border: 2px solid #eab260;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.community-gallery .wp-block-image:hover img,
.community-gallery .gallery-item:hover img {
  transform: scale(1.03);
}
.community-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.community-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 2px solid #eab260;
  transition: transform 0.2s ease;
}

.community-gallery img:hover {
  transform: scale(1.03);
}
.menu-button {
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #eab260;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}


@keyframes shimmer {
  100% {
    left: 125%;
  }
}
.main-background {
  background-image: url('assets/images/bg-abstract-light.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* 📱 Mobiel: afbeelding beter schalen */
@media (max-width: 768px) {
  .main-background {
    background-size: cover;
    background-position: bottom center;
    background-attachment: scroll;
  }
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.open {
  max-height: 500px; /* of groter, afhankelijk van je content */
}

/*bullet punten boven video*/
.intro-highlights {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.intro-highlights .highlight {
  max-width: 200px;
}
.intro-highlights img {
  height: 80px;
  width: 80px;
  margin-bottom: 0.5rem;
}

/*knoppen onder de video*/
.cta-section {
  text-align: center;
  margin-top: 2rem;
}
.cta-section h3 {
  margin-bottom: 1rem;
  color: #eab260;
}
.cta-button {
  background-color: #eab260;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #f5c87b;
  transform: translateY(-1px);
  text-decoration: none; /* voorkomt onderstreping */
}


/*video container glassy card*/
.video-card {
  background: rgba(255, 255, 255, 0.05); /* semi-transparant */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
}


.video-card-header h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #eab260;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*Sessie tijden*/
.session-glass-card {
  background-color: #292a2c;
  color: #ffffff;
}

/*Member systeem*/
.dashboard-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.dashboard-card {
  background: #eab26087;
  border: 1px solid #eab260;
  border-radius: 12px;
  padding: 2rem;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  flex: 1 1 400px;
  max-width: 500px;
}

.exclusive-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.exclusive-list li {
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.exclusive-list li a {
  color: #eab260;
  text-decoration: none;
  font-weight: 500;
}

.exclusive-list li:hover {
  background: rgba(255, 255, 255, 0.08);
}
.dashboard-three-column {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.dashboard-grid-2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  flex: 1 1 300px;
  max-width: 400px;
}

.dash-hero {
  grid-column: 1 / -1;
  background: #1a1a1a; /* zelfde achtergrond als de andere kaarten */
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center; /* tekst centreren */
  display: flex;
  flex-direction: column;
  align-items: center; /* horizontaal centreren */
  justify-content: center; /* verticaal centreren */
}

.dash-wide {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dash-wide ul {
  padding-left: 0;
  list-style: none;
}
.dash-wide li {
  margin: 0.5rem 0;
}


.dashboard-column.tradesignals {
  background: #111;
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
  flex: 1;
}

.trade-signal-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
}

.signal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.signal-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #fff;
}

.direction-btn {
  padding: 0.4rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fff;
}

.direction-btn.buy {
  background: #137c34;
}

.direction-btn.sell {
  background: #b23232;
}

.signal-values {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.signal-row {
  display: flex;
  justify-content: space-between;
}

.signal-row.sl {
  color: #ff6b6b;
}

.signal-row.tp {
  color: #90ee90;
}

.disclaimer {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 1rem;
  text-align: center;
}
.risk {
  font-size: 0.95rem;
  color: rgba(116, 106, 255, 0.97);
  margin-top: 1rem;
  text-align: center;
}

.live-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  background-color: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/*Signaal timer*/
.countdown-box {
  background: #2a0f0f;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  text-align: center;
  border: 1px solid #b23232;
  border-radius: 10px;
  margin-top: 1rem;
  display: inline-block;
}

.countdown-box span {
  color: #ff4444;
}

.countdown-box.expired {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #888;
}

.countdown-box.expired span {
  color: #888;
}
.countdown-timer {
  background: #2e0d0d;
  border: 1px solid #a00;
  padding: 1rem;
  text-align: center;
  color: white;
  border-radius: 12px;
  margin-top: 1rem;
  font-size: 1.25rem;
}
.countdown-timer span {
  font-weight: bold;
  color: red;
}

/*uitlog knop*/
.logout-btn-red {
  display: inline-block;
  padding: 10px 20px;
  background-color: #c0392b;
  border: 1px solid #e74c3c;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
.logout-btn-red:hover {
  background-color: #a93226;
}

/*Login pagina*/
/* 🔸 Container centreren en stylen */
.login-container {
  max-width: 400px;
  margin: 0 auto;
  background-color: #1c1c1c;
  padding: 3rem 4rem;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* 🔸 Logo centreren */
.login-container .logo {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-container .logo img {
  max-width: 70px;
}

/* 🔸 Titel */
.login-container h2 {
  text-align: center;
  color: #eab260;
  margin-bottom: 2rem;
}

/* 🔸 Labels */
.login-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* 🔸 Inputvelden */
.login-container input[type="text"],
.login-container input[type="password"],
.login-container input[type="email"] {

  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  margin-bottom: 1.5rem;
  background: #f1f3fa;
  color: #121212;
}

/* 🔸 Checkbox netjes */
.login-container .remember-me {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.login-container .remember-me input {
  margin-right: 8px;
}

/* 🔸 Inlogknop */
.login-container input[type="submit"] {
  background-color: #eab260;
  color: #121212;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login-container input[type="submit"]:hover {
  background-color: #cf9f45;
}

/* 🔸 Registratielink */
.login-container .register-link {
  text-align: center;
  margin-top: 2rem;
}
.login-container .register-link a {
  color: #eab260;
  text-decoration: none;
  font-weight: 500;
}
.login-container .register-link a:hover {
  text-decoration: underline;
}


/* Login/Dashboard knop exact als menu knoppen maar met glazen stijl */
.glass-dashboard-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #eab260;
  border-radius: 6px;
  color: #eab260;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 12px;
  margin-top: 19.5px;
}

/*Login bewaren*/
.login-container .remember-me label {
  font-size: 0.95rem;
  color: #ddd;
  cursor: pointer;
}
.login-container .remember-me input[type="checkbox"] {
  transform: translateY(1px);
}


.glass-dashboard-btn:hover {
  background-color: #eab260;
  color: #121212;
  box-shadow: 0 0 8px rgba(234,178,96,0.4);
  transform: scale(1.05);
}

.glass-dashboard-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s;
  pointer-events: none;
}

.glass-dashboard-btn:hover::before {
  left: 125%;
}

/* Mobiel weergave */
@media (max-width: 768px) {
  .glass-dashboard-btn {
    margin: 0.5rem auto;
    display: block;
    text-align: center;
  }
}

/*Trading Termen*/
.accordion-toggle {
  background: #1a1a1a;
  color: #eab260;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #2a2a2a;
  padding: 0 1rem;
  border-radius: 6px;
}

.accordion-content.open {
  max-height: 300px; /* aanpassen naar behoefte */
  padding: 1rem;
}

/*Wachtende trade*/
.trade-alert-pulse {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.2rem;
  animation: pulseText 1.5s infinite;
}

@keyframes pulseText {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*Avatar*/
.dash-hero{
  background:#1a1a1a;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:2rem;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.5rem;
}
.avatar-circle{
  width:96px;height:96px;border-radius:50%;overflow:hidden;
  border:1px solid rgba(255,255,255,.12);background:#111;
  display:flex;align-items:center;justify-content:center;margin-bottom:.25rem;
}
.avatar-circle img{ width:96px;height:96px;object-fit:cover;border-radius:50%; }



