/**
 * Base Styles - Reset, Typography, Body
 * Gold & White Elegant Theme
 */

/* Box Sizing Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Document */
html {
  scroll-behavior: smooth;
}

/* Body */
body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-hero);
  letter-spacing: var(--tracking-wide);
  font-weight: 300;
}

h2 {
  font-size: var(--text-3xl);
  letter-spacing: var(--tracking-normal);
  font-weight: 400;
}

h3 {
  font-size: var(--text-2xl);
  letter-spacing: var(--tracking-normal);
  font-weight: 400;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 500;
}

p {
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

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

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

em, i {
  font-style: italic;
}

strong, b {
  font-weight: 600;
  color: var(--color-text-primary);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Form Elements */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Selection */
::selection {
  background: var(--color-gold-light);
  color: var(--color-text-primary);
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Text Utilities */
.text-gold {
  color: var(--color-gold-rich);
}

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

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* Display Utilities */
.hidden {
  display: none !important;
}

/* Elegant Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--gradient-gold);
  opacity: 0.5;
}

.divider-icon {
  color: var(--color-gold);
  font-size: 1.2rem;
}
