@charset "utf-8";
/* ========== Watson Recording Studio — Global Styles ========== */

body {
    margin: 0;
    background: #0a0a0a;
    color: #f2f2f2;
    font-family: Arial, sans-serif;
}

/* HERO */
.hero {
    background: linear-gradient(to bottom, #000, #111);
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    color: #ffb347;
    letter-spacing: 2px;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
    opacity: 0.8;
}

.hero-buttons {
    margin-top: 30px;
}

.btn, .btn-outline, .btn-small {
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    margin: 6px;
    font-weight: bold;
}

.btn {
    background: #ffb347;
    color: #000;
}

.btn-outline {
    border: 2px solid #ffb347;
    color: #ffb347;
}

.btn-small {
    background: #222;
    color: #ffb347;
    border: 1px solid #ffb347;
}

/* SECTIONS */
section {
    padding: 60px 20px;
}

h2 {
    text-align: center;
    font-size: 36px;
    color: #ffb347;
    margin-bottom: 40px;
}

/* COLLECTIONS */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.collection-card {
    background: #111;
    padding: 30px;
    border: 1px solid #333;
    text-align: center;
    border-radius: 6px;
}

/* PRODUCTS */
.product-grid, .course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.product-card, .course-card {
    background: #111;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 6px;
    text-align: center;
}

.product-img, .course-img {
    background: #222;
    height: 160px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.price {
    display: block;
    margin: 10px 0;
    color: #ffb347;
    font-size: 20px;
}

/* MEMBERSHIP */
.membership {
    text-align: center;
    background: #111;
    padding: 80px 20px;
    border-top: 1px solid #333;
}
body {
  background: #000;
  color: #d4af37;
  font-family: 'Cinzel', serif;
  margin: 0;
}

/* NAV */
.gold-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(90deg, #000, #1a1a1a);
  border-bottom: 2px solid #d4af37;
}
.gold-nav .logo {
  font-size: 20px;
  font-weight: bold;
  color: #d4af37;
}
.gold-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}
.gold-nav li {
  cursor: pointer;
  font-weight: 600;
}

/* HERO */
.market-hero {
  text-align: center;
  padding: 60px 20px;
  background: radial-gradient(circle, #111 0%, #000 70%);
}
.market-hero h1 {
  font-size: 60px;
  color: #d4af37;
  text-shadow: 0 0 20px #d4af37;
}

/* GRID */
.market-grid {
  padding: 40px;
}
.market-section {
  margin-bottom: 60px;
}
.market-section h2 {
  font-size: 32px;
  border-left: 5px solid #d4af37;
  padding-left: 15px;
  margin-bottom: 20px;
}
.items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.item-card {
  background: #111;
  border: 1px solid #d4af37;
  padding: 20px;
  width: 200px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

/* FOOTER */
.gold-footer {
  text-align: center;
  padding: 30px;
  border-top: 2px solid #d4af37;
  background: #0a0a0a;
}
.footer-links {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
/* GLOBAL */
body {
  background: #000;
  color: #d4af37;
  font-family: 'Cinzel', serif;
  margin: 0;
}

/* NAV */
.gold-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(90deg, #000, #1a1a1a);
  border-bottom: 2px solid #d4af37;
}
.gold-nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 2px;
}
.gold-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.gold-nav li {
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}
.gold-nav li:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

/* FOOTER */
.gold-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
  background: #0a0a0a;
}
.gold-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}
.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
}
.footer-links span {
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.footer-links span:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}
/* GLOBAL MARKETPLACE THEME */
body.marketplace {
  background: #000;
  color: #d4af37;
  font-family: 'Cinzel', serif;
  margin: 0;
}

/* NAV */
body.marketplace .gold-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(90deg, #000, #1a1a1a);
  border-bottom: 2px solid #d4af37;
}

body.marketplace .gold-nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #d4af37;
  letter-spacing: 2px;
}

body.marketplace .gold-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

body.marketplace .gold-nav li {
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

body.marketplace .gold-nav li:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}

/* FOOTER */
body.marketplace .gold-footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
  background: #0a0a0a;
}

body.marketplace .gold-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

body.marketplace .footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

body.marketplace .footer-links span {
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

body.marketplace .footer-links span:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}
