:root {
  --obsidian: #020b05;
  --emerald: #00ff88;
  --gold: #d4af37;
  --sapphire: #0066ff;
  --ruby: #ff0066;
  --glass: rgba(255, 255, 255, 0.05);
  --text-main: #e0f2e9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--obsidian);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- 2026 Dynamic Background --- */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 136, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
  filter: blur(80px);
  animation: move 20s infinite alternate;
}

@keyframes move {
  from {
    top: -10%;
    left: -10%;
  }
  to {
    top: 80%;
    left: 80%;
  }
}

/* --- Global Typography --- */
h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  text-transform: uppercase;
}

.text-3d {
  background: linear-gradient(180deg, #fff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
}

/* --- Futuristic Nav --- */
nav {
  position: fixed;
  width: 95%;
  left: 2.5%;
  top: 20px;
  z-index: 1000;
}

.blur-bg{
  background: rgba(3, 47, 18, 0.485);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 10px 30px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  height: 100px;
  text-decoration: none;
  letter-spacing: -1px;
  background: rgba(211, 248, 223, 0.826);
  backdrop-filter: blur(0px);
}
.logo img {
  height: 100%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 15px;
}
.nav-links li {
  position: relative;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  padding: 10px 15px;
}
.nav-links a:hover {
  color: var(--emerald);
}

/* Mega Dropdown */
.dropdown {
  position: absolute;
  top: 40px;
  background: var(--obsidian);
  border: 1px solid var(--emerald);
  min-width: 220px;
  display: none;
  padding: 15px 0;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.nav-links li:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 8px 20px;
  text-transform: none;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?auto=format&fit=crop&q=80&w=1920")
    center/cover;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--obsidian));
}

.hero-content {
  z-index: 10;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.8;
  margin-bottom: 20px;
}

.btn-trendy {
  padding: 20px 50px;
  background: var(--emerald);
  color: #000;
  text-decoration: none;
  font-weight: 800;
  border-radius: 10px;
  display: inline-block;
  transition: 0.4s;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}
.btn-trendy:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 50px var(--emerald);
}

/* --- Bento Grid Section --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 20px;
}

.bento-item {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.bento-item:hover {
  border-color: var(--emerald);
}

.item-1 {
  grid-column: span 6;
  background: url("../images/bento-item-1.png")
    center/cover;
}
.item-2 {
  grid-column: span 6;
}
.item-3 {
  grid-column: span 4;
}
.item-4 {
  grid-column: span 4;
}
.item-5 {
  grid-column: span 4;
}

.bento-item h3 {
  font-size: 1.8rem;
  color: var(--emerald);
  margin-bottom: 10px;
}
.bento-item p {
  font-size: 0.9rem;
  color: #a5b4ac;
}

/* --- Product Showcase --- */
.product-card {
  background: linear-gradient(145deg, #0a1f12, #020b05);
  border-radius: 40px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.5s;
  grid-column: span 3;
}

.product-card:hover {
  transform: perspective(1000px) rotateX(10deg);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.1);
}
.product-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
  filter: contrast(1.1);
}

/* --- Trendy Footer --- */
footer {
  background: #010502;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-flex {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 30px;
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 15px;
}
.footer-col a {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--emerald);
}

.address-box {
  color: #888;
  font-size: 0.9rem;
  line-height: 2;
}
.address-box span {
  color: #fff;
  display: block;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5 {
    grid-column: span 2;
    height: 350px;
  }
  .footer-flex {
    grid-template-columns: 1fr 1fr;
  }
}
