:root {
  --gold: #d4af37;
  --gold-light: #f3d576;
  --gold-dim: #8a6f2a;
  --black: #050505;
  --surface: #121212;
  --surface-2: #1a1a1a;
  --border: rgba(212,175,55,0.18);
  --text-light: #f2ede1;
  --text-muted: #a3a3a3;
  --max-width: 1180px;
}

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

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--black);
  color: var(--text-light);
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo img { height: 52px; }
.logo-text {
  color: var(--gold-light);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .5px;
}

.main-nav ul {
  display: flex;
  gap: 40px;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: .98rem;
  position: relative;
  padding-bottom: 4px;
  transition: color .25s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s;
}

.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background: url("../images/hero-banner.jpg") center top / cover no-repeat, var(--black);
  color: var(--text-light);
  overflow: hidden;
  padding-bottom: 90px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.35) 45%, rgba(5,5,5,0.96) 92%),
    linear-gradient(90deg, rgba(5,5,5,0.55) 0%, transparent 25%, transparent 75%, rgba(5,5,5,0.55) 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--gold-light);
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 38px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  transition: all .3s ease;
  border: 1.5px solid var(--gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 0 0 rgba(212,175,55,0);
}

.btn-primary:hover {
  box-shadow: 0 8px 26px rgba(212,175,55,0.35);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--gold-light);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  transform: translateY(-2px);
}

/* Section shared */
.section-title {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: .5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin-bottom: 14px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 52px;
}

/* Gallery */
.gallery-section { padding: 110px 0; background: var(--black); }

.category-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: all .25s ease;
}

.tab-btn:hover { border-color: var(--gold); color: var(--gold-light); }

.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  color: var(--black);
}

.product-category {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212,175,55,0.12);
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-card.hidden { display: none; }

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(212,175,55,0.15);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover img { transform: scale(1.08); }

.product-info { padding: 20px; }

.product-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.gallery-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 0;
  font-size: 1.1rem;
}

/* About */
.about-section {
  background: var(--surface);
  color: var(--text-light);
  padding: 110px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.12rem;
}

/* Contact */
.contact-section { padding: 110px 0; background: var(--black); }

.contact-links {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 46px;
  min-width: 170px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  color: var(--text-light);
  font-weight: 700;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 32px rgba(212,175,55,0.18);
  color: var(--gold-light);
}

.contact-icon { font-size: 2.1rem; }

/* Footer */
.site-footer {
  background: var(--black);
  color: var(--text-muted);
  text-align: center;
  padding: 30px 0;
  font-size: .9rem;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 720px) {
  .main-nav ul {
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(14px);
    padding: 20px 28px;
    display: none;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .main-nav ul.open { display: flex; }
  .nav-toggle { display: block; }
}
