@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800&family=Inter:wght@300;400;600&display=swap');

:root {
  --color-bg: #050505;
  --color-surface: rgba(20, 20, 20, 0.7);
  --color-surface-hover: rgba(35, 35, 35, 0.9);
  --color-gold: #d4af37;
  --color-gold-light: #fce28b;
  --color-gold-dark: #997a15;
  --color-text: #f0f0f0;
  --color-text-muted: #aaaaaa;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;

  --glass-border: 1px solid rgba(212, 175, 55, 0.15);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-text {
  background: linear-gradient(to right, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-dark));
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  color: var(--color-bg);
  border-color: transparent;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: var(--glass-border);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
}

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

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

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

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

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
    url('hero.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: -1;
  mix-blend-mode: luminosity;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.5s;
}

.hero-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

/* Products Section */
.products {
  padding: 8rem 0;
}

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

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

.product-card {
  background: var(--color-surface);
  border: var(--glass-border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  background: var(--color-surface-hover);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
}

.product-image-wrapper {
  width: 100%;
  height: 350px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.product-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background: rgba(10, 10, 10, 0.9);
  border-top: var(--glass-border);
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--color-text-muted);
}

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

.copyright {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
}

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

  .nav-links {
    display: none;
    /* simple mobile nav for now */
  }
}

.line-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #06c755;
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(6, 199, 85, 0.6);
  z-index: 9999;
}

.line-float:hover {
  transform: scale(1.05);
}

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.amulet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.amulet-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  backdrop-filter: blur(10px);
}

.amulet-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.25),
    0 0 30px rgba(255, 215, 0, 0.18),
    0 0 60px rgba(255, 215, 0, 0.12);
  border-color: gold;
}

.amulet-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

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

.amulet-card h3 {
  color: gold;
  padding: 16px 16px 0;
}

.amulet-card p {
  padding: 0 16px 20px;
  color: #ddd;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: gold;
  letter-spacing: 3px;
  font-size: 14px;
}

.section-title h2 {
  font-size: 48px;
  color: white;
  margin: 10px 0;
}

.section-title p {
  color: #aaa;
  font-size: 18px;
}

.footer {
  text-align: center;
  padding: 80px 20px;
  background: #050505;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer h2 {
  color: gold;
  font-size: 40px;
  margin-bottom: 20px;
}

.footer p {
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: gold;
}

.copyright {
  color: #666;
  font-size: 14px;
}