:root {
  --gold: #D4AF37;
  --gold-light: #FEDC56;
  --gold-dark: #AA8C2C;
  --bg-dark: #121212;
  --bg-card: #1E1E1E;
  --text-light: #F5F5F5;
  --text-dim: #A0A0A0;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
  font-family: 'Cinzel', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav a {
  margin: 0 15px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

.btn-primary {
  padding: 10px 25px;
  background: linear-gradient(45deg, var(--gold-dark), var(--gold));
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Centered layout since image is gone */
  padding: 0 10%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  width: 100%;
  z-index: 2;
  margin: 0 auto;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-gold {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img {
  max-width: 100%;
  max-height: 70vh;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transform: rotate(-5deg);
  will-change: transform;
}

/* Background Elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

.c1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}

.c2 {
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: 10%;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-logo {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0;
}

.mobile-menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero {
    padding: 0 5%;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
    z-index: 3;
  }

  .hero-image {
    max-width: 80%;
    width: 100%;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    color: var(--gold);
    cursor: pointer;
    font-size: 1.2rem;
  }
}

.products-section,
.about-section {
  padding: 80px 10%;
}

.section-title {
  text-align: center;
  color: var(--gold);
  margin-bottom: 50px;
  font-size: 2.5rem;
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
}

.product-card {
  background: linear-gradient(145deg, #1a1a1a, #222);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
  overflow: hidden;
  width: 320px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
  position: relative;
}

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

.card-img-wrapper {
  height: 320px;
  overflow: hidden;
  background: radial-gradient(circle at center, #2a2a2a, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.card-img {
  width: auto;
  max-width: 90%;
  max-height: 90%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s ease;
}

.product-card:hover .card-img {
  transform: scale(1.05) rotate(-2deg);
}

.card-info {
  padding: 25px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.card-info h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.product-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 48px;
}

.btn-details {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-details:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

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

.footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
}

.dev-credit {
  margin-top: 10px;
  font-size: 0.9em;
}

.dev-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.dev-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-section {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to top, #111, #1a1a1a);
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.contact-link.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: transparent;
}