:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-primary: #d4af37; /* Gold */
  --color-primary-hover: #f1cf59;
  --color-text: #f0f0f0;
  --color-text-muted: #a0a0a0;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo {
  font-family: var(--font-heading);
  font-weight: 400;
}

/* Buttons */
.btn-primary, .btn-outline, .btn-discover {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
  border: none;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%; /* For parallax */
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

/* Collections Section */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.collections-section {
  padding: 8rem 0;
  background-color: var(--color-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.collection-card {
  background: var(--color-surface);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

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

.card-img-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.collection-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

.btn-discover {
  background: rgba(212, 175, 55, 0.9);
  color: #000;
  border: none;
  backdrop-filter: blur(5px);
}

.btn-discover:hover {
  background: #fff;
}

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

.card-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.card-info p {
  color: var(--color-text-muted);
}

/* Craftsmanship Section */
.craftsmanship-section {
  padding: 0;
  background-color: var(--color-surface);
}

.craft-split {
  display: flex;
  flex-wrap: wrap;
}

.craft-img {
  flex: 1 1 50%;
  min-height: 600px;
}

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

.craft-content {
  flex: 1 1 50%;
  padding: 6rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.craft-content h2 {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.craft-content p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.craft-features {
  list-style: none;
  margin-bottom: 3rem;
}

.craft-features li {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.craft-features span {
  color: var(--color-primary);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Footer */
.footer {
  background-color: #050505;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-text-muted);
  max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links a, .footer-contact p {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #555;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
  .hero h1 { font-size: 3.5rem; }
  .craft-split { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
}
