/* ============================================================
   OnlyEvents — index.css  |  Gen-Z UI (Full Replacement - No Hero Image)
   Drop-in replacement for: public/assets/front/css/pages/index.css
   ✅ Optimized for your current Blade (hero-right removed)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cascadia+Mono:ital,wght@0,200..700;1,200..700&display=swap');

/* ---------- Design Tokens ---------- */
:root{
  --oe-bg-0:#050611;
  --oe-bg-1:#070A16;

  --oe-surface: rgba(255,255,255,.06);
  --oe-surface2: rgba(255,255,255,.09);

  --oe-border: rgba(255,255,255,.12);
  --oe-border2: rgba(255,255,255,.18);

  --oe-text: rgba(255,255,255,.92);
  --oe-muted: rgba(255,255,255,.68);
  --oe-soft: rgba(255,255,255,.52);

  --oe-violet:#7C3AED;
  --oe-cyan:#22D3EE;
  --oe-pink:#FB7185;

  --oe-radius: 22px;
  --oe-radius-sm: 16px;

  --font-head: 'Cascadia Mono', monospace;
  --font-body: 'Cascadia Mono', monospace;

  --shadow-1: 0 18px 60px rgba(0,0,0,.55);
  --shadow-2: 0 10px 30px rgba(0,0,0,.35);

  --ring: 0 0 0 4px rgba(34,211,238,.16);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  color: var(--oe-text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x:hidden;

  background:
    radial-gradient(1200px 680px at 18% 10%, rgba(124,58,237,.24), transparent 60%),
    radial-gradient(900px 560px at 85% 18%, rgba(34,211,238,.18), transparent 58%),
    radial-gradient(900px 620px at 55% 92%, rgba(251,113,133,.14), transparent 62%),
    linear-gradient(180deg, var(--oe-bg-0), var(--oe-bg-1));
}

/* Subtle grain */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index:0;
  opacity:.45;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  background-size: 200px;
}

.container.oe-container{ position:relative; z-index:1; }

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

/* A11y focus */
:focus-visible{
  outline: none;
  box-shadow: var(--ring);
  border-radius: 12px;
}

/* ---------- Global “Panel/Card” look ---------- */
.oe-panel,
.oe-hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
  border: 1px solid var(--oe-border);
  border-radius: calc(var(--oe-radius) + 10px);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow:hidden;
  position:relative;
}

/* Gradient glow overlay */
.oe-panel::after,
.oe-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(700px 260px at 20% 10%, rgba(34,211,238,.16), transparent 55%),
    radial-gradient(780px 320px at 86% 18%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(780px 320px at 50% 95%, rgba(251,113,133,.12), transparent 62%);
  mix-blend-mode: screen;
  opacity:.95;
}

/* ---------- TOP BANNER SLIDER ---------- */
.oe-top-banner { margin: 18px 0 0; }

.oe-banner-slider{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  box-shadow:0 30px 80px rgba(15,23,42,.12);
}

.oe-banner-track{
  display: flex;
  width: 100%;
  transition: transform .55s ease;
}

.oe-banner-slide{
  min-width: 100%;
  display: block;
  text-decoration: none;
}

.oe-banner-slide img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px){
  .oe-banner-slide img{ height: 190px; }
}

.oe-banner-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 28px;
  line-height: 44px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.oe-banner-prev{ left: 12px; }
.oe-banner-next{ right: 12px; }

.oe-banner-dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.oe-banner-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
}

.oe-banner-dot.is-active{
  width: 20px;
  background: #fff;
}
/* Hide banner until ready (prevents 1 sec blank flash) */
.oe-banner-slider { opacity: 0; visibility: hidden; }
.oe-banner-slider.is-ready { opacity: 1; visibility: visible; transition: opacity .25s ease; }

/* Optional: keep some minimal height so layout doesn't jump */
.oe-banner-slide img { background: #f2f2f2; }

/* ---------- HERO + JOBS ---------- */
.oe-hero{ padding: 18px 0 50px; }

/* Hero card spacing (premium) */
.oe-hero-card{
  padding: 44px 48px 34px;
}

/* ✅ No hero image: force single column */
.oe-hero-grid{
  position:relative;
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items:center;
}

/* keep hidden even if markup remains somewhere */
.oe-hero-right{ display:none !important; }

.oe-hero-left{ min-width: 0; }

/* Typography */
.oe-h1{
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  max-width: 920px;
  background: linear-gradient(135deg, #fff 35%, var(--oe-cyan) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  background-clip:text;
}

.oe-sub{
  margin: 0 0 26px;
  color: var(--oe-muted);
  font-size: 15px;
  max-width: 760px;
}

/* Search: premium centered bar */
.oe-hero-search{
  display:grid;
  grid-template-columns: 1.25fr .9fr .8fr;
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  max-width: 980px;
  width: 100%;
}

.oe-sfield,
.oe-dd{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.oe-sfield:focus-within,
.oe-dd:focus-within{
  border-color: rgba(34,211,238,.55);
  background: rgba(34,211,238,.06);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(124,58,237,.18), 0 0 0 1px rgba(34,211,238,.18) inset;
}

.oe-ic{ opacity: .92; font-size: 16px; flex-shrink: 0; }

.oe-sfield input[type="search"]{
  width:100%;
  background: transparent;
  border:0;
  outline:none;
  color: var(--oe-text);
  font-size: 15px;
  font-family: var(--font-body);
}
.oe-sfield input::placeholder{ color: rgba(255,255,255,.55); }

.oe-dd-select{ position:relative; }
.oe-select{
  width:100%;
  background: transparent;
  border:0;
  outline:none;
  color: var(--oe-text);
  font-size: 15px;
  font-family: var(--font-body);
  appearance:none;
  -webkit-appearance:none;
  cursor:pointer;
}
.oe-select option{ background: #0e1020; color: var(--oe-text); }

.oe-caret{
  margin-left:auto;
  opacity:.85;
  font-size: 12px;
  color: var(--oe-soft);
}

/* Divider */
.oe-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  margin: 26px 0 14px;
  opacity: .85;
}

/* Section head */
.oe-section-head{
  padding: 12px 2px 0;
}
.oe-h2{
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(18px, 2.2vw, 26px);
  margin: 10px 0 0;
  letter-spacing: -0.01em;
}

/* ---------- JOB CARDS ---------- */
.oe-jobs{ padding: 18px 26px 26px; }

.oe-job-link{ text-decoration:none; color: inherit; display:block; }

.oe-job{
  height: 100%;
  border-radius: var(--r);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  position: relative;
}
.oe-job:hover{
  transform: translateY(-6px);
  border-color: rgba(34,211,238,.38);
  box-shadow: 0 22px 60px rgba(0,0,0,.5);
}

.oe-job-media{
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(1.04);
}
.oe-job-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.60));
}

.oe-chip{
  position:absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
}

.oe-job-body{ padding: 14px 14px 14px; }
.oe-job-title{
  margin: 0 0 10px;
  font-size: 15.5px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.oe-job-meta{
  color: var(--muted);
  font-size: 13px;
  min-height: 34px;
}

.oe-job-bottom{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.oe-pay{
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.oe-pay span{
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
}

.oe-pill2{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(34,211,238,.10);
  border: 1px solid rgba(34,211,238,.22);
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  font-weight: 600;
}

.oe-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 13px;
  color: #061018;
  background: linear-gradient(90deg, var(--brand2), var(--brand1));
  border: 0;
  box-shadow: 0 14px 28px rgba(34,211,238,.15);
  text-decoration:none;
  transition: transform .18s ease, filter .18s ease;
}
.oe-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.oe-empty{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
}

/* ---------- SECTION WRAPPER ---------- */
.oe-section{ padding: 18px 0 50px; }

/* Panel padding aligned */
.oe-testimonials .oe-panel,
.oe-faq .oe-panel{
  padding: 26px 22px 22px;
}

.oe-panel-top{
  display:flex;
  justify-content:center;
  padding-bottom: 8px;
}
.oe-logo{
  height: 34px;
  width:auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.oe-title{
  margin: 10px 0 6px;
  text-align:center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #fff 40%, var(--oe-cyan) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  background-clip:text;
}
.oe-subtitle{
  margin: 0 auto 18px;
  text-align:center;
  color: var(--oe-muted);
  max-width: 780px;
  font-size: 14.5px;
}

/* ---------- TESTIMONIALS ---------- */
.oe-tgrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.oe-tcard{
  border-radius: var(--oe-radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-2);
  padding: 14px 14px 12px;
  transition: transform .20s ease, border-color .20s ease, box-shadow .20s ease;
  position:relative;
  overflow:hidden;
}
.oe-tcard::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(420px 160px at 15% 0%, rgba(251,113,133,.12), transparent 60%),
    radial-gradient(420px 160px at 85% 0%, rgba(34,211,238,.10), transparent 60%);
  opacity:.6;
  pointer-events:none;
}
.oe-tcard:hover{
  transform: translateY(-6px);
  border-color: rgba(251,113,133,.28);
  box-shadow: 0 22px 70px rgba(0,0,0,.50);
}
.oe-tcard-wide{ grid-column: span 2; }

.oe-thead{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position:relative;
  z-index:1;
}

.oe-avatar-lg span{
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(124,58,237,.85), rgba(34,211,238,.70));
  color:#fff !important;
  font-family: var(--font-head) !important;
  font-weight: 900 !important;
}

.oe-stars{
  font-size: 14px;
  letter-spacing: 1px;
  color: #FFD166;
  text-shadow: 0 8px 18px rgba(0,0,0,.25);
  position:relative;
  z-index:1;
}

.oe-quote{
  margin: 0 0 10px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.55;
  position:relative;
  z-index:1;
}
.oe-tname{
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13.5px;
  position:relative;
  z-index:1;
}
.oe-trole{
  color: var(--oe-muted);
  font-size: 12.5px;
  font-weight: 700;
  position:relative;
  z-index:1;
}

/* Dots bar */
.oe-dotsbar{
  display:flex;
  justify-content:center;
  gap: 8px;
  padding: 16px 0 6px;
  opacity: .75;
}
.oe-dot{
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.30);
}
.oe-dot-active{
  width: 22px;
  background: linear-gradient(90deg, var(--oe-pink), var(--oe-violet));
}

/* ---------- CTA ---------- */
.oe-wide-cta{
  margin-top: 18px;
  border-radius: calc(var(--oe-radius) + 6px);
  background: linear-gradient(90deg, rgba(34,211,238,.14), rgba(124,58,237,.14));
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
  position: relative;
}
.oe-wide-cta::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(700px 250px at 20% 20%, rgba(34,211,238,.22), transparent 55%),
    radial-gradient(700px 250px at 80% 80%, rgba(124,58,237,.22), transparent 55%);
  pointer-events:none;
}
.oe-wide-cta-inner{
  position: relative;
  padding: 18px 16px;
  text-align:center;
}
.oe-wide-cta h3{
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
}
.oe-wide-cta p{
  margin: 0 0 12px;
  color: var(--oe-muted);
  font-size: 14px;
}
.oe-wide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 13px;
  text-decoration:none;
  color: #08121b !important;
  background: linear-gradient(90deg, var(--oe-pink), var(--oe-cyan));
  box-shadow: 0 18px 36px rgba(251,113,133,.18);
  transition: transform .18s ease, filter .18s ease;
}
.oe-wide-btn:hover{ transform: translateY(-1px); filter: brightness(1.04); }

.oe-wide-cta-blue{
  background: linear-gradient(90deg, rgba(34,211,238,.16), rgba(34,211,238,.06));
}
.oe-wide-btn-light{
  background: linear-gradient(90deg, #fff, rgba(255,255,255,.85));
}

/* ---------- FAQ ---------- */
.oe-accordion{ margin-top: 10px; }

.oe-acc-item{
  width:100%;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--oe-text);
  cursor:pointer;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
  margin-bottom: 10px;
}
.oe-acc-item:hover{
  transform: translateY(-2px);
  border-color: rgba(124,58,237,.32);
  background: rgba(124,58,237,.08);
}
.oe-acc-item.is-open{
  border-color: rgba(34,211,238,.32);
  background: rgba(34,211,238,.06);
}
.oe-acc-ic{
  opacity:.9;
  font-weight: 900;
  color: var(--oe-cyan);
  font-size: 18px;
}
.oe-acc-panel{
  margin: -2px 0 12px;
  padding: 0 14px 14px;
  color: rgba(255,255,255,.76);
  font-size: 14px;
  line-height: 1.55;
  display:none;
}

/* ---------- Entry animation ---------- */
@keyframes oeFadeUp{
  from{ opacity:0; transform: translateY(18px); }
  to{ opacity:1; transform: translateY(0); }
}
.oe-hero-card,
.oe-panel{
  animation: oeFadeUp .6s cubic-bezier(.22,1,.36,1) both;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px){
  .oe-banner-slide img{ height: 260px; }

  .oe-hero-card{
    padding: 28px 18px 20px;
  }
  .oe-hero-search{
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .oe-testimonials .oe-panel,
  .oe-faq .oe-panel{
    padding: 18px;
  }

  .oe-tgrid{ grid-template-columns: 1fr; }
  .oe-tcard-wide{ grid-column: auto; }
}

@media (max-width: 480px){
  .oe-banner-slide img{ height: 200px; }
  .oe-banner-nav{ width: 42px; height: 42px; }
}