/*
Theme Name: FullTransactions
Theme URI: https://fulltransactions.com
Author: FullTransactions
Author URI: https://fulltransactions.com
Description: Global Holding Platform – luxury dark gold WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fulltransactions
Tags: dark, luxury, gold, business, investment
*/

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8b6914;
  --black: #0a0a0a;
  --black-mid: #111111;
  --black-card: #141414;
  --black-border: #1e1e1e;
  --white: #ffffff;
  --white-dim: rgba(255,255,255,0.75);
  --white-muted: rgba(255,255,255,0.45);
  --font-display: 'Cinzel', serif;
  --font-body: 'Cormorant Garamond', serif;
  --font-ui: 'Montserrat', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

.section-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark));
}

.section-title::after {
  background: linear-gradient(to left, transparent, var(--gold-dark));
}

/* ========================================
   GOLD DIVIDER
   ======================================== */
.gold-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 1rem auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.btn:hover { color: var(--black); }
.btn:hover::before { opacity: 1; }

.btn-outline {
  border-color: rgba(201,168,76,0.5);
}

.btn-solid {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: transparent;
  color: var(--black);
}

.btn-solid:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

#site-header.scrolled {
  background: rgba(5,5,5,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-tagline {
  font-family: var(--font-ui);
  font-size: 0.52rem;
  letter-spacing: 0.35em;
  color: var(--white-muted);
  text-transform: uppercase;
}

/* Main Nav */
#main-nav ul {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

#main-nav ul li a {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

#main-nav ul li a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.5rem 1.3rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 2rem 80px;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,168,76,0.04) 0%, transparent 70%),
    var(--black);
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold-dark) 30%, var(--gold) 50%, var(--gold-dark) 70%, transparent 100%);
}

.hero-scarab {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,168,76,0.3);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Particle dots */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle 8s ease-in-out infinite;
}

@keyframes particle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.2; transform: translateY(-80px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* ========================================
   INTRO SECTION
   ======================================== */
#intro {
  padding: 80px 2rem;
  text-align: center;
  background: var(--black-mid);
  border-bottom: 1px solid var(--black-border);
}

#intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

#intro p {
  color: var(--white-muted);
  font-size: 1rem;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========================================
   OPPORTUNITIES SECTION
   ======================================== */
#opportunities {
  padding: 80px 2rem;
  background: var(--black);
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
}

.opportunity-card {
  background: var(--black-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.opportunity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(201,168,76,0.1);
  z-index: 2;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
  z-index: 3;
}

.opportunity-card:hover::before {
  border-color: rgba(201,168,76,0.4);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: filter 0.4s;
}

.opportunity-card:hover .card-image {
  filter: brightness(1) saturate(1.1);
}

.card-body {
  padding: 1.4rem 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.card-location {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.card-type {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--white-muted);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.view-all-wrap {
  text-align: center;
  margin-top: 2rem;
}

/* ========================================
   SYMBOL SECTION
   ======================================== */
#symbol {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #111008 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}

#symbol::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.symbol-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.symbol-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.symbol-text p {
  color: var(--white-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.symbol-icon {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}

/* ========================================
   HOW IT WORKS
   ======================================== */
#how-it-works {
  padding: 80px 2rem;
  background: var(--black-mid);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  color: var(--gold);
  transition: transform 0.3s;
}

.step-item:hover .step-icon {
  transform: scale(1.1) translateY(-4px);
}

.step-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--white-dim);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.4;
}

.how-cta {
  margin-top: 1rem;
}

/* ========================================
   GLOBAL SECTION
   ======================================== */
#global {
  padding: 80px 2rem 40px;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.world-map-wrap {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  opacity: 0.85;
}

.world-map-svg {
  width: 100%;
  height: auto;
}

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.footer-brand .logo-name {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.footer-brand p {
  color: var(--white-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 0.8rem;
}

.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--white-muted);
  transition: color 0.3s;
  letter-spacing: 0.04em;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

/* ========================================
   MOBILE NAV OVERLAY
   ======================================== */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,5,5,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(20px);
}

#mobile-nav.open { display: flex; }

#mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

#mobile-nav ul li a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white-dim);
  text-transform: uppercase;
}

#mobile-nav ul li a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: var(--font-display);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  #main-nav { display: none; }
  .hamburger { display: flex; }

  .opportunities-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .symbol-inner { grid-template-columns: 1fr; text-align: center; }
  .symbol-icon { width: 160px; height: 160px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.8rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ========================================
   HEADER ACTIONS (toggle + hamburger)
   ======================================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* ========================================
   THEME TOGGLE BUTTON (lună / soare)
   ======================================== */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.theme-toggle:hover {
  opacity: 1;
  transform: rotate(15deg);
  background: rgba(201,168,76,0.08);
}

.theme-toggle svg {
  width: 16px;
  height: 16px;
}

/* Dark mode: show moon, hide sun */
body:not(.light-mode) .icon-sun { display: none; }
body:not(.light-mode) .icon-moon { display: block; }

/* Light mode: show sun, hide moon */
body.light-mode .icon-moon { display: none; }
body.light-mode .icon-sun { display: block; }

/* ========================================
   LIGHT MODE — CSS VARIABLE OVERRIDES
   ======================================== */
body.light-mode {
  --black:        #f5f3ee;
  --black-mid:    #ede9e0;
  --black-card:   #ffffff;
  --black-border: #d8d0be;
  --white:        #1a1200;
  --white-dim:    rgba(30,20,0,0.8);
  --white-muted:  rgba(30,20,0,0.5);
  --text-muted:   rgba(30,20,0,0.5);
  background-color: #f5f3ee;
  color: #1a1200;
}

/* Light mode: header */
body.light-mode #site-header {
  background: rgba(245,243,238,0.96);
  border-bottom-color: rgba(201,168,76,0.35);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

body.light-mode #site-header.scrolled {
  background: rgba(240,237,228,0.99);
}

/* Light mode: logo name */
body.light-mode .logo-name { color: var(--gold-dark); }
body.light-mode .logo-tagline { color: rgba(30,20,0,0.45); }

/* Light mode: nav links */
body.light-mode #main-nav ul li a { color: rgba(30,20,0,0.7); }
body.light-mode #main-nav ul li a:hover { color: var(--gold-dark); }
body.light-mode .nav-cta { color: var(--gold-dark) !important; border-color: var(--gold-dark); }
body.light-mode .nav-cta:hover { background: var(--gold-dark); color: #fff !important; }

/* Light mode: hero */
body.light-mode #hero {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%),
    #f5f3ee;
}

body.light-mode .hero-title { color: var(--gold-dark); text-shadow: 0 0 60px rgba(139,105,20,0.2); }
body.light-mode .hero-subtitle { color: rgba(30,20,0,0.6); }
body.light-mode .hero-eyebrow { color: var(--gold-dark); }
body.light-mode .hero-particles span { background: var(--gold-dark); }

/* Light mode: sections */
body.light-mode #intro { background: #ede9e0; border-bottom-color: #d8d0be; }
body.light-mode #intro h2 { color: #1a1200; }
body.light-mode #intro p { color: rgba(30,20,0,0.55); }

body.light-mode #opportunities { background: #f5f3ee; }
body.light-mode .opportunity-card { background: #fff; }
body.light-mode .opportunities-grid { border-color: rgba(201,168,76,0.25); background: rgba(201,168,76,0.08); }
body.light-mode .card-body { border-top-color: rgba(201,168,76,0.25); }
body.light-mode .card-type { color: rgba(30,20,0,0.5); }
body.light-mode .card-price { color: #1a1200; }

body.light-mode #symbol {
  background: linear-gradient(135deg, #ede9e0 0%, #e8e1d0 50%, #ede9e0 100%);
  border-color: rgba(201,168,76,0.25);
}
body.light-mode .symbol-text h2 { color: #1a1200; }
body.light-mode .symbol-text p { color: rgba(30,20,0,0.6); }

body.light-mode #how-it-works { background: #ede9e0; }
body.light-mode .step-label { color: rgba(30,20,0,0.7); }

body.light-mode #global { background: #f5f3ee; }
body.light-mode .world-map-svg rect { fill: #e8e1d0; }

body.light-mode #cta-section {
  background: linear-gradient(180deg, #f5f3ee 0%, #ede9e0 100%) !important;
  border-top-color: rgba(201,168,76,0.25) !important;
}

body.light-mode #site-footer { background: #e8e1d0; border-top-color: rgba(201,168,76,0.3); }
body.light-mode .footer-brand p { color: rgba(30,20,0,0.55); }
body.light-mode .footer-col ul li a { color: rgba(30,20,0,0.55); }
body.light-mode .footer-bottom p { color: rgba(30,20,0,0.45); }

/* Light mode: noise overlay — subtler */
body.light-mode::before { opacity: 0.2; }

/* Light mode: mobile nav */
body.light-mode #mobile-nav { background: rgba(245,243,238,0.97); }
body.light-mode #mobile-nav ul li a { color: rgba(30,20,0,0.75); }
body.light-mode .mobile-close { color: var(--gold-dark); }
body.light-mode .hamburger span { background: var(--gold-dark); }

/* Light mode: buttons */
body.light-mode .btn { color: #1a1200; border-color: rgba(139,105,20,0.6); }
body.light-mode .btn:hover { color: #fff; }
body.light-mode .btn-solid { color: #fff; }
body.light-mode .btn-solid:hover { color: #fff; }
body.light-mode .nav-cta:hover { color: #fff !important; }

/* ========================================
   CARD LINK WRAP & OVERLAY (link pe card)
   ======================================== */
.card-link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.card-image-wrap {
  position: relative;
  overflow: hidden;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.opportunity-card:hover .card-overlay { opacity: 1; }

.card-view-btn {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.6);
  padding: 0.4rem 1.1rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}

/* ========================================
   HERO SCARAB IMAGE (dacă e selectată din galerie)
   ======================================== */
.hero-scarab-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}

/* ========================================
   SYMBOL CUSTOM IMAGE
   ======================================== */
.symbol-custom-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
}

/* ========================================
   WORLD MAP CUSTOM IMAGE
   ======================================== */
.world-map-custom-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 2rem auto 0;
  border-radius: 8px;
  opacity: 0.9;
}

/* ========================================
   TEXT MUTED (light/dark compatible)
   ======================================== */
:root { --text-muted: rgba(255,255,255,0.45); }

/* ========================================
   TRANSITION SMOOTH LA SCHIMBARE TEMĂ
   ======================================== */
body,
#site-header,
.opportunity-card,
.card-body,
#intro,
#symbol,
#how-it-works,
#global,
#site-footer {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* ========================================
   LOGO CUSTOM IMAGE
   ======================================== */
.logo-custom-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* ========================================
   LIGHT MODE — logo custom image filter
   ======================================== */
body.light-mode .logo-custom-img {
  filter: brightness(0.7) sepia(0.3);
}

/* ========================================
   CARD PLACEHOLDER SVG (fără imagine)
   ======================================== */
.card-placeholder-svg {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d0c00 0%, #1a1800 50%, #0d0c00 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}
.card-placeholder-svg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.card-placeholder-svg svg {
  position: relative;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.opportunity-card:hover .card-placeholder-svg svg {
  opacity: 1;
  transform: scale(1.1);
}
