@charset "UTF-8";
/* ==========================================================================
   base.css - Amara Fetish Clinic
   Design tokens, reset & base layouts
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Montserrat:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  /* Color Palette (design.md) */
  --color-accent: #1b9c85;
  --color-accent-hover: #167a68;
  --color-navy: #0b1622;
  --color-navy-light: #152436;
  --color-navy-darker: #060c14;
  --color-white: #ffffff;
  --color-white-line: rgba(255, 255, 255, 0.15);
  --color-navy-line: rgba(11, 22, 34, 0.15);
  --color-off-white: #f4f5f2;
  --color-text-navy: #0b1622;
  --color-text-white: #ffffff;
  --color-text-muted: rgba(11, 22, 34, 0.65);
  --color-text-white-muted: rgba(255, 255, 255, 0.7);

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-heading: 500;

  /* Spacing & Layout */
  --container-max-width: 1600px;
  --container-padding: clamp(10px, 4vw, 3rem);
  --border-radius-base: 4px;
  --transition-speed: 250ms ease;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-white);
  background-color: var(--color-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  letter-spacing: 0.8px;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

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

/* Fine Dividers */
.divider-white {
  height: 1px;
  background-color: var(--color-white-line);
  border: none;
  width: 100%;
}

.divider-navy {
  height: 1px;
  background-color: var(--color-navy-line);
  border: none;
  width: 100%;
}

/* Focus styles for accessibility & touch */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
