/* =========================
   Root Variables
========================= */
:root {
  --bg: #060607;
  --card: #0f1113;
  --muted: #9aa0a6;
  --accent1: #00d4ff;
  --accent2: #007bff;
}

/* =========================
   Global Styles
========================= */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: linear-gradient(180deg, var(--bg), #070709);
  color: #e9eef6;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Makes content area expand to push footer down */
main {
  flex: 1 0 auto;
  min-height: 60vh;
}

/* Footer stays at bottom if page is short */
footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* =========================
   Links
========================= */
a {
  color: var(--accent2);
  text-decoration: none !important;
}
a:hover {
  color: var(--accent1);
}

/* =========================
   Header / Navbar
========================= */
.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}
.brand-logo i {
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
small.text-muted {
    color: #00b5ff !important;
}
.topbar .small {
  font-size: 0.85rem;
}

.navbar .nav-link {
  color: #ccd1d8;
  transition: 0.3s;
}
.navbar .nav-link:hover {
  color: #fff;
}

/* =========================
   Hero Section
========================= */
.hero {
  background: url('/assets/images/banner.jpg') center/cover no-repeat fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/*.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,6,7,0.6), rgba(6,6,7,0.9));
}*/
.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  text-shadow: 0 6px 30px rgba(0,212,255,0.14);
}
.hero p.lead {
  color: var(--muted);
}

/* =========================
   Cards
========================= */
.card {
  background: var(--card);
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}
.card img {
  height: 200px;
  object-fit: cover;
}
.card .btn {
  border-radius: 6px;
}

/* =========================
   Sections
========================= */
.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}
.section-desc {
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

/* =========================
   Testimonials
========================= */
.testimonial {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius: 12px;
  padding: 1.6rem;
  text-align: center;
}

/* =========================
   Gallery
========================= */
.gallery-img {
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* =========================
   Buttons
========================= */
.btn-primary {
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  border: 0;
}
.btn-primary:hover {
  opacity: 0.9;
}
.btn-outline-light {
  border-color: rgba(255,255,255,0.08);
}

/* =========================
   Cart
========================= */
.cart-badge {
  font-size: 0.7rem;
  padding: 4px 6px;
}

/* =========================
   Footer
========================= */
footer {
  background: #0a0b0d;
  color: #cbd5e1;
}
footer a {
  color: #cbd5e1;
  text-decoration: none;
}
footer a:hover {
  color: var(--accent1);
}
footer .small {
  color: var(--muted);
}

/* =========================
   Animations (AOS tweaks)
========================= */
[data-aos] {
  transition-duration: 0.8s !important;
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
