/* ===========================
   FONTS
=========================== */
@font-face {
  font-family: "Jumper";
  src: url("../fonts/Jumper.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Kastroo";
  src: url("../fonts/Kastroo.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "StretchPro";
  src: url("../fonts/StretchPro.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ZTNature-Black";
  src: url("../fonts/ZTNature-Black.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   ROOT COLORS
=========================== */
:root {
  --bg: rgb(25,25,25);
  --text: #ffffff;
  --accent: rgb(255,12,12);
  --card: rgb(35,35,35);
  --blur: rgba(25,25,25,0.8);
}

/* ===========================
   GLOBAL
=========================== */
* { box-sizing: border-box; margin:0; padding:0; }
body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ===========================
   NAV / HOTBAR
=========================== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px); /* blur content under nav */
  background: var(--blur);
}

nav .logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid var(--accent);
}

nav .hotbar {
  display: flex;
  gap: 2rem;
  font-family: "StretchPro", sans-serif;
}

nav .hotbar a {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

nav .hotbar a:hover { color: var(--accent); }

/* ===========================
   HERO / HEADER
=========================== */
header {
  text-align: center;
  padding: 6rem 2rem 2rem 2rem;
}

header h1 {
  font-family: "Jumper", sans-serif;
  font-size: 6vw;
  color: var(--accent);
  letter-spacing: 0.04em;
  max-width: 90%;
  margin: auto;
}

header .typing {
  font-family: "ZTNature-Black", sans-serif;
  display: block;
  font-size: 2vw;
  color: white;
  margin-top: 1rem;
  min-height: 2em;
}

/* ===========================
   BUTTONS
=========================== */
button {
  font-family: "StretchPro", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--accent);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  margin-top: 2rem;
  transition: 0.2s ease, box-shadow 0.3s ease;
}

button:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px var(--accent);
}

/* ===========================
   MULTI-PANEL HOMEPAGE
=========================== */
.home-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 2rem;
  padding: 3rem 2rem;
}

.panel {
  background: var(--card);
  border-radius: 16px;
  padding: 2rem; /* longer preview */
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.panel:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}

.panel h3 {
  font-family: "Kastroo", sans-serif;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.panel p { color: #cbd5e1; }

/* ===========================
   BLOG CARDS / GRID
=========================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 1.5rem;
}

.blog-card {
  background: var(--card);
  border-radius: 16px;
  padding: 2rem; /* longer preview */
  border: 1px solid #333;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.blog-card h3 {
  font-family: "Kastroo", sans-serif;
  color: var(--accent);
}

.blog-card p { color: #cbd5e1; }

/* ===========================
   SHORT-FORM VIDEO
=========================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.5rem;
}

.video-box {
  background: #2a2a2a;
  border-radius: 18px;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.9rem;
  border: 1px solid #333;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.video-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px var(--accent);
}

/* ===========================
   CONTACT FORM
=========================== */
input, textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: none;
  background: #2a2a2a;
  color: white;
  font-family: system-ui, sans-serif;
}

textarea { resize: vertical; }

form button { width: auto; }

/* ===========================
   FOOTER
=========================== */
footer {
  background: var(--card);
  padding: 3rem 2rem;
  margin-top: 4rem;
  border-radius: 12px;
}

footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

footer h4 {
  font-family: "Kastroo", sans-serif;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
}

footer a:hover { color: var(--accent); }

footer .footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
}
