/* ==========================================================================
   SAWDA SPA GULSHAN - BASE STYLES & RESET (base.css)
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-obsidian);
  color: var(--color-cream-warm);
  font-family: var(--font-body);
  font-size: var(--font-size-body-reg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Heading Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-gold-champagne);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
h4 { font-size: var(--font-size-h4); font-family: var(--font-body); }
h5 { font-size: var(--font-size-h5); font-family: var(--font-body); }
h6 { font-size: var(--font-size-h6); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.05em; }

p {
  margin-bottom: var(--space-4);
  color: var(--color-cream-warm);
}

a {
  color: var(--color-gold-champagne);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-luxury);
}

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

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* WCAG 2.2 AA Visible Focus Indicators */
:focus-visible {
  outline: 2px solid var(--color-gold-champagne) !important;
  outline-offset: 4px !important;
}

/* Reduced Motion Safeguard */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Container System */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

.text-gold { color: var(--color-gold-champagne) !important; }
.text-muted { color: var(--color-text-muted) !important; }
.text-center { text-align: center !important; }
