:root {
  --color-bg: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-surface-hover: #2a2a2a;
  --color-primary: #d4af37; /* Gold accent */
  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;
  --font-main: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-primary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  margin-top: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(to right, #fff, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.1));
}

/* Products Section */
.products {
  padding: 8rem 5%;
  background: linear-gradient(to bottom, var(--color-bg), var(--color-surface));
}

.products h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--color-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.3);
}

.image-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .image-container img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.product-info .price {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
  padding: 8rem 5%;
  background: var(--color-bg);
}

.gallery h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(20%);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Contact Section */
.contact {
  padding: 8rem 5%;
  background: var(--color-bg);
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 4rem;
}

.contact-form-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  border-radius: 4px;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.submit-button {
  background: var(--color-primary);
  color: var(--color-bg);
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.submit-button:hover {
  opacity: 0.9;
}

.contact-info {
  padding-top: 5rem;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

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

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #050505;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards ease-out;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s forwards ease-out;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    padding-top: 0;
    text-align: center;
  }
}
