/* ============================================
   TeleAdoración – Global Variables & Reset
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Primary Colors */
  --ta-blue-dark: #0a1628;
  --ta-blue-primary: #1a2a4a;
  --ta-blue-accent: #2c4a7c;
  --ta-gold: #c9a84c;
  --ta-gold-light: #e0c56a;
  --ta-white: #ffffff;
  --ta-light-gray: #f5f5f5;
  --ta-gray: #999999;
  --ta-dark-gray: #333333;
  --ta-overlay: rgba(10, 22, 40, 0.85);
  --ta-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --ta-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.25);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-mid: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--ta-dark-gray);
  background: var(--ta-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
