@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  --gold-primary: #d4af37;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --text-light: #f8f9fa;
  --text-muted: #a0a0a0;
}

html, body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Playfair Display", serif;
}

/* Typography & Colors */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--gold-primary); /* fallback */
}

/* Navbar */
.navbar {
  background-color: rgba(5, 5, 5, 0.8) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.nav-link {
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  color: var(--gold-light) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background-color: var(--gold-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border-color: rgba(212, 175, 55, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Hero Section */
#hero {
  position: relative;
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 80vh;
}

.hero-img-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  transition: transform 10s ease;
}

#hero:hover .hero-img-container img {
  transform: scale(1.05);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
  animation: fadeInDown 1s ease;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title { font-size: 5rem; }
  .hero-subtitle { font-size: 1.3rem; }
}

/* Product Cards */
.catalogue-container {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 2px;
}

.product-card {
  background-color: #121212;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  z-index: 10;
}

.product-carousel {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: #000;
}

.product-carousel .carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product-carousel .carousel-inner, .product-carousel .carousel-item {
  height: 100%;
}

.product-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-carousel img {
  transform: scale(1.08); /* Zoom effect on hover */
}

/* Styling carousel controls to be subtle and gold */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(21%) saturate(1661%) hue-rotate(345deg) brightness(85%) contrast(92%);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(0deg, #0a0a0a 0%, #121212 100%);
}

.product-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-price {
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Custom Buttons */
.btn-gold {
  background-color: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 0.75rem 2rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-gold:hover {
  background-color: var(--gold-primary);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* About Page */
.about-section {
  padding: 6rem 0;
}

.about-subtitle {
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.about-image-wrapper {
  position: relative;
  padding: 2rem;
}
.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80%; height: 80%;
  border: 2px solid var(--gold-primary);
  z-index: 0;
}
.about-image {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
  box-shadow: -15px 15px 30px rgba(0,0,0,0.8);
}

/* Footer (optional but good practice) */
footer {
  background-color: #050505;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}
.footer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 1px;
}
