﻿@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;900&display=swap");

/* Colors */
:root {
  --blue: #007ac2;
  --blue-light: #00ffff;
  --blue-dark: #005191;
  --blue-darker: #040306;
  --orange: #fbb03b;
  --yellow: #ffff00;
  --bg: #0b0f14;
  --panel: #121924;
  --panel-light: #182233;
  --text: #f5f7fb;
  --muted: #d4e5fc;
  --card-radius: 8px;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  text-decoration: none;
}

a:not([class]):hover {
  text-decoration: underline;
  font-weight: bold;
}

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

section > * + * {
  margin-top: 1em;
}

.btn {
  font: inherit;
}

/* STYLES
---------------------------------- */
body {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

h2 {
  line-height: 1.5;
}

p {
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.5;
}

section {
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

a:not([class]) {
  color: #8fd8ff;
}

.btn {
  display: inline-block;
  background: #eee;
  padding: 1rem 1.5rem;
  text-decoration: none;
}

.card {
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #eee;
  box-shadow: 0 1px 3px rgba(100, 100, 100, 0.5);
  padding: 1rem;
}

/* HEADER
---------------------------------- */
header {
  background: linear-gradient(to bottom, var(--blue-darker) 50%, transparent);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 1rem 1rem;
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

.smi-logo {
  width: 240px;
}

.smi-logo img {
  width: 100%;
}

.showLogo-wrapper img {
  width: 200px;
}

/* MAIN
---------------------------------- */
#sec-hero {
  background: no-repeat var(--blue-darker) url(../images/2026_EW_KV.png) top
    center;
  background-size: 100% auto;
  /* background-attachment: fixed; */
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 50vh;
  margin: 0 auto;
  padding: 7rem 5vw 5rem;
  position: relative;
  animation: fadeAndScale 1.1s ease-in-out;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(4, 3, 6, 0) 0%,
    rgba(4, 3, 6, 0.15) 90%,
    rgba(4, 12, 24, 0.25) 95%,
    rgba(4, 10, 30, 1) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1368px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50vh;
}

.hero-title {
  color: #fff;
  font-size: clamp(32px, 3.2vw + 1rem, 72px);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  line-height: 1.25;
  text-wrap: balance;
  margin-bottom: 1em;
}

.hero-title span {
  background: linear-gradient(120deg, #8fd8ff, #ffeabd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  margin-bottom: 2rem;
  /* max-width: 560px; */
}

.hero-content p {
  color: var(--muted);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  margin-bottom: 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7ed2ff;
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 1.25rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00c2ff, #007ac2);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 160, 220, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 160, 220, 0.45);
}

.btn-secondary {
  border: 1px solid rgba(143, 216, 255, 0.6);
  color: #cfeaff;
  background: rgba(10, 20, 30, 0.6);
}

.btn-secondary:hover {
  border-color: #8fd8ff;
  color: #ffffff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: rgba(18, 25, 36, 0.8);
  border: 1px solid rgba(143, 216, 255, 0.25);
  color: #d7e7f8;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hero-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.inner-wrapper {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #0b0f149c 0%, #0b111a 60%, #0d142069 100%);
  color: #fff;
  padding-top: 2rem;
}

main {
  margin: 0 auto;
  max-width: 1400px;
  padding-bottom: 3rem;
  width: 100%;
}

main h2 {
  color: #bfe7ff;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2.2rem);
  text-align: center;
  letter-spacing: 1px;
  text-wrap: balance;
}

.section {
  margin-bottom: 4rem;
  padding: 0 1.5rem;
  width: 100%;
}

.section-lead {
  max-width: 820px;
  margin: 1rem auto 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
}

.section-kicker {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7ed2ff;
  background: rgba(0, 160, 220, 0.12);
  border: 1px solid rgba(0, 160, 220, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0 auto 1rem;
}

.section-body {
  /* max-width: 820px; */
  margin: 0 auto 2rem;
  text-align: center;
  color: #c1cfdf;
  font-size: 1rem;
  line-height: 1.7;
}

.glow-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.glow-band span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 160, 220, 0.12);
  border: 1px solid rgba(0, 160, 220, 0.3);
  color: #cfeaff;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 160, 220, 0.15);
}

/* PRODUCTS
---------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--panel);
  border-radius: var(--card-radius);
  padding: 1rem 1.5rem;
  border: 1px solid rgba(125, 180, 220, 0.2);
  box-shadow: 0 10px 30px rgba(4, 8, 16, 0.35);
  text-align: left;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0, 160, 220, 0.08), transparent 60%);
  opacity: 0;
  transition: 0.3s ease;
}

.product-card:hover::after {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 120, 200, 0.25);
}

.product-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: .95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

.btn-row {
  text-align: center;
  margin: 3rem 0;
}

/* SHOW-INFO
---------------------------------- */
.section-header {
  text-align: center;
}

.event-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.event-grid {
  margin: 2rem auto 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  width: 100%;
}

.event-copy {
  color: #c1cfdf;
  line-height: 1.8;
}

.event-copy p + p {
  margin-top: 1rem;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.event-card {
  background: transparent;
  padding: 1.5rem;
  border-radius: var(--card-radius);
  border: 1px solid rgba(143, 216, 255, 0.15);
  text-align: center;
}

.event-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.event-card strong {
  /* gradient  */
  background: linear-gradient(120deg, #8fd8ff, #8cf2f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.5rem;
}

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

/* SHOW-REGISTER
---------------------------------- */
/* .show-register {} */

.ecode-card {
  background: linear-gradient(
    135deg,
    rgba(18, 25, 36, 0.95),
    rgba(20, 32, 48, 0.9)
  );
  border-radius: var(--card-radius);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  border: 1px solid rgba(255, 210, 120, 0.3);
  box-shadow: 0 20px 40px rgba(5, 8, 14, 0.4);
  position: relative;
  overflow: hidden;
}

.ecode-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 214, 128, 0.15),
    transparent 55%
  );
  pointer-events: none;
}

.ecode-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.ecode-info p {
  /* font-size: 1rem; */
  color: var(--muted);
}

.ecode-info .notes {
  display: block;
  margin-top: 0.75rem;
  color: #9bb0c8;
}

.ecode-info a {
  color: #8cf2f7;
  font-weight: 700;
}

.ecode-actions {
  margin-top: 1.5rem;
}

.ecode-chip {
  background: radial-gradient(circle, rgba(0, 0, 0, 0.9), rgba(0, 0, 68, 0.9));
  border-radius: var(--card-radius);
  color: #dfe7f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 1.5rem;
  text-align: center;
  min-height: 120px;
}

.ecode-chip span {
  color: var(--orange);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.1rem + 0.8vw, 2rem);
  margin-left: 0.5rem;
}

/* CONTACT-INFO
---------------------------------- */

#contact-info {
  text-align: center;
}

/* FOOTER
---------------------------------- */
footer {
  background: #b0d9e7;
  border-top: 1px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: fixed;
  bottom: 0; */
  width: 100%;
  padding: 1.2rem 2%;
}
.footer-inner {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.address {
  color: #333;
  font-size: 0.95rem;
  font-weight: bold;
}

/* .social-links {} */

.social-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-links ul li {
  float: left;
}

.social-links ul li a {
  display: block;
  margin: 8px;
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: 0.3s;
}

.social-links ul li a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-links ul li a svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1280px) {
  #sec-hero {
    min-height: 100vh;
  }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .event-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 990px) {
  footer {
    flex-direction: column;
    position: relative;
  }
}

@media (max-width: 768px) {
  #sec-hero {
    background: no-repeat var(--blue-darker)
      url(../images/2026_EW_KV-mobile.png) top center;
    background-size: cover;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: 100%;
  }

  .smi-logo {
    width: 180px;
  }

  .showLogo-wrapper {
    width: 180px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .smi-logo {
    width: 180px;
  }

  .showLogo-wrapper {
    width: 150px;
  }

  .showLogo-wrapper img {
    width: 160px;
  }

  .contact-card {
    flex-direction: column;
  }
}

@keyframes fadeAndScale {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
