/** Shopify CDN: Minification failed

Line 115:1 Expected "}" to go with "{"

**/
/*
  Summit Life | Theme - Base Stylesheet
  
  NOTE: @font-face rules and CSS color variable definitions are now located
  in layout/theme.liquid. They are generated dynamically from the settings
  in config/settings_schema.json.

  This file contains the structural styles that USE those variables.
*/

/*
  Summit Life | Theme - Base Stylesheet
*/

/* 1. LOCAL FONT DEFINITIONS
   This tells the browser where to find the local font files.
   Be sure to update filenames if they are different.
   ------------------------------------------------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('{{ "montserrat-v25-latin-700.woff2" | asset_url }}') format('woff2'); 
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('{{ "open-sans-v34-latin-regular.woff2" | asset_url }}') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('{{ "open-sans-v34-latin-600.woff2" | asset_url }}') format('woff2');
}

/* BASE TYPOGRAPHY & LAYOUT STYLES (This section remains the same) */
body {
/* ... etc ... */

/* BASE TYPOGRAPHY & LAYOUT STYLES */
body {
  background-color: var(--color-background);
  color: var(--color-text-primary);
  font-family: var(--font-body-family);
  font-size: 16px;
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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


/* GLOBAL HELPER CLASSES */
.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}


/* COMMON ELEMENT STYLES */
a {
  color: var(--color-accent-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button.primary, 
a.button.primary {
  background-color: var(--color-accent-primary);
  color: var(--color-text-headings);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-heading-family);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 0;
}

/* ACCESSIBILITY STYLES */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}