:root {
  --brand: #ffd700;        /* Gold */
  --brand-dark: #c9ad00;   /* Gold hover */
  --dark: #3d3b3c;         /* Sidebar dark */
  --light: #f8f9fa;
  --text-light: #f1f1f1;
  --text-muted: #d0d0d0;
}

body {
  background: var(--light);
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 72px;
  background: var(--dark);
  transition: 0.35s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar:hover { width: 260px; }

/* Logo */
.sidebar .logo {
  padding: 20px;
  text-align: center;
}
.sidebar .logo img {
  max-width: 160px;
  opacity: 0;
  transition: 0.3s;
}
.sidebar:hover .logo img { opacity: 1; }

/* Menu */
.sidebar a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}
.sidebar a:hover {
  background: var(--brand);
  color: #000;
}
.sidebar i {
  min-width: 26px;
  font-size: 18px;
  color: var(--brand);
}
.sidebar a:hover i { color: #000; }
.sidebar span {
  margin-left: 12px;
  opacity: 0;
  transition: 0.3s;
  font-weight: 500;
}
.sidebar:hover span { opacity: 1; }

/* Bottom */
.sidebar-bottom {
  padding: 15px;
  opacity: 0;
  transition: 0.3s;
}
.sidebar:hover .sidebar-bottom { opacity: 1; }

/* Social */
.social a {
  color: var(--brand);
  font-size: 18px;
  margin: 0 6px;
  transition: 0.3s;
}
.social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ================= MAIN ================= */
.main { margin-left: 72px; }

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('/assets/images/hero.webp') center/cover no-repeat;
}

.hero-content { position: relative; z-index: 2; }

/* Sections */
.section { padding: 90px 0; }

/* Buttons */
.btn-brand {
  background: var(--brand);
  color: #000;
  border: none;
  font-weight: 600;
}
.btn-brand:hover {
  background: var(--brand-dark);
  color: #000;
}

/* Headings & text */
h1, h2, h3, h4 { color: #111; }
.hero h1, .hero p { color: #fff; }

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-buttons .btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  font-size: 24px;
}
.floating-buttons .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-catalog { background: var(--brand); color: #000; }
.btn-call { background: #dc3545; color: #fff; }
.btn-whatsapp:hover { background: #1DA851; }
.btn-catalog:hover { background: var(--brand-dark); }
.btn-call:hover { background: #b32b37; }

/* ================= MOBILE ================= */
@media(max-width: 991px){
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }
  .sidebar:hover { width: 100%; }
  .sidebar span, .sidebar .logo img, .sidebar-bottom { opacity: 1; }
  .main { margin-left: 0; }
  .floating-buttons {
    right: 15px;
    bottom: 20px;
    flex-direction: row;
  }
  .floating-buttons .btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Product Highlight Box */
.product-highlight {
  background: #fff;
  border-left: 4px solid var(--brand);
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 16px;
  color: #333;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}
.product-highlight i { font-size: 20px; margin-right: 10px; }

/* ================= GALLERY ================= */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.gallery-card img {
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  border-left: 4px solid var(--brand);
  padding-left: 12px;
}
.btn-brand{
  background: var(--brand);
  color: #000;
  border: none;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn-brand:hover{
  background: var(--brand-dark);
  color: #000;
}
/* Brand Button Text Fix */
.btn-brand {
  background: var(--brand);
  color: #000 !important;     /* text black */
  font-weight: 600;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #000 !important;     /* hover pe bhi black */
}
.letter-spacing {
  letter-spacing: 2px;
}
