@import url("font.css");

* {
  font-family: "Vazirmatn", sans-serif;
}
html{
   background-color: #0a0a0a;
}

body {
  background-color: #0a0a0a;
  color: #fff;
}

a{
  color: var(--color1);
  text-decoration: none !important;
}

a:hover{
  color: var(--color2);
}

.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff !important;
}

.nav-link {
  color: #ccc !important;
  margin: 0 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff !important;
}

.navbar-toggler-icon{
  background-color: #ccc !important;
}

.btn-outline-light {
  border-color: #666;
  color: #fff;
}

.bg-dark{
  background-color: rgb(25, 25, 25) !important;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  background-size: cover;
  background-position: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #c9a961;
  font-size: 4rem;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: #ccc;
  margin: 2rem 0;
  line-height: 1.8;
}

.btn-gold {
  background-color: #c9a961;
  color: #000;
  padding: 0.8rem 2rem;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
  width: 10rem !important;
}

.btn-gold:hover {
  background-color: #d4b76e;
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid #c9a961;
  color: #c9a961;
  padding: 0.8rem 2rem;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-gold:hover {
  background-color: #c9a961;
  color: #000;
}

.stats-section {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c9a961;
}

.stat-label {
  color: #999;
  font-size: 0.9rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.section-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.category-card {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 300px;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.icon-badge {
  width: 50px;
  height: 50px;
  background-color: rgba(201, 169, 97, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.project-card {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  height: 400px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
}

.feature-icon {
  font-size: 3rem !important;
  color: #c9a961;
  margin-bottom: 1rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
}

.footer {
  background-color: #000;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

.footer-link {
  color: #999;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #c9a961;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #333;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  color: #999;
  transition: all 0.3s;
}

.social-icon:hover {
  border-color: #c9a961;
  color: #c9a961;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  padding: 0.8rem;
  flex: 1;
}

.newsletter-form button {
  background-color: #c9a961;
  border: none;
  padding: 0.8rem 2rem;
  color: #000;
  font-weight: 600;
}

.instagram-banner {
  background-color: #1e1e1e;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  margin: 3rem 2rem !important;
}

/* Left text section */
.banner-text {
  min-width: 160px;
  color: #fff;
  text-align: right;
}

.banner-text .handle {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.banner-text .tagline {
  font-size: 13px;
  color: #e0e0e0;
  margin-bottom: 10px;
  line-height: 1.6;
}

.banner-text .arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #555;
  border-radius: 50%;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.banner-text .arrow-btn:hover {
  border-color: #fff;
  color: #fff;
}

/* Images section */
.banner-images {
  display: flex;
  gap: 6px;
  flex: 1;
  overflow: hidden;
}

.banner-images img {
  width: 130px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Right CTA section */
.banner-cta {
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.banner-cta .bi-instagram {
  font-size: 22px;
  color: #c8a96e;
}

.banner-cta .cta-label {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  line-height: 1.5;
}

.banner-cta .plus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #555;
  border-radius: 50%;
  color: #aaa;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.banner-cta .plus-btn:hover {
  border-color: #c8a96e;
  color: #c8a96e;
}

/* Divider lines */
.vdivider {
  width: 1px;
  height: 60px;
  background-color: #333;
  flex-shrink: 0;
}

.shafagh-banner {
  background: linear-gradient(to left, #111 0%, #1a1a1a 50%, #0e0e0e 100%);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: stretch;
  margin: 3rem 2rem !important;
}

/* ===== RIGHT: Why Shafagh ===== */
.section-why {
  padding: 28px 28px 20px;
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid #2a2a2a;
}

.section-why h2 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-why p {
  font-size: 0.78rem;
  color: #bbb;
  line-height: 2;
  margin-bottom: 0;
}

.features {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 6px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8a96e;
  font-size: 18px;
  transition: border-color 0.2s;
  margin: 0 auto !important;
}

.feature-icon:hover {
  border-color: #c8a96e;
}

.feature-label {
  font-size: 0.65rem;
  color: #aaa;
  text-align: center;
  white-space: nowrap;
}

/* ===== CENTER: Product Images ===== */
.section-products {
  flex: 0 0 38%;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}

/* Gold arc ring */
.arc-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid #c8a96e;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  opacity: 0.55;
  /* clip bottom half so only top arc shows */
  clip-path: ellipse(110px 110px at 50% 50%);
}

.products-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding-bottom: 0;
}

.products-wrap img {
  border-radius: 6px;
  object-fit: cover;
  filter: brightness(0.9);
}

.prod-tall {
  width: 60px;
  height: 140px;
}
.prod-lantern {
  width: 70px;
  height: 120px;
}
.prod-spot {
  width: 65px;
  height: 100px;
}

/* ===== LEFT: Brand Info ===== */
.section-brand {
  width: 41.66666667%;
  flex: 0 0 24%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #0e0e0e, #161616);
}

.section-brand .new-col {
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-brand h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 2px;
  line-height: 1;
}

.era {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: #c8a96e;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: justify;
}

.btn-collection {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid #c8a96e;
  border-radius: 4px;
  color: #c8a96e;
  font-size: 0.72rem;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s;
}

.btn-collection:hover {
  background: #c8a96e;
  color: #111;
}
