/*
Theme Name: Flatirons Community Orchestra
Theme URI: https://flatironscommunityorchestra.org
Author: Web Design Team
Author URI: https://flatironscommunityorchestra.org
Description: Custom, modern, community-focused WordPress theme for the Flatirons Community Orchestra redesign.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fco-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, responsive-layout, theme-options
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ========================================================================== */
:root {
  /* Primary Brand Colors */
  --fco-navy: #001B2A;
  --fco-navy-light: #0B2545;
  --fco-navy-dark: #00121C;
  --fco-teal: #0E7C7B;
  --fco-teal-hover: #0a6362;
  --fco-teal-light: #E0F4F2;
  --fco-teal-soft: #EDF7F6;
  --fco-yellow: #FFC72C;
  --fco-yellow-hover: #f0b71b;
  --fco-yellow-light: #FEF8E7;
  --fco-purple: #7E57C2;
  --fco-purple-hover: #6c47b0;
  --fco-purple-light: #F4EEFB;
  --fco-purple-soft: #F9F5FD;
  
  /* Accent & Background Tones */
  --fco-coral: #FF7675;
  --fco-mint: #A8E6CF;
  --fco-cream: #FAF8F5;
  --fco-white: #FFFFFF;
  --fco-gray-100: #F7F8F9;
  --fco-gray-200: #E9ECEF;
  --fco-gray-300: #DEE2E6;
  --fco-gray-500: #6C757D;
  --fco-gray-700: #495057;
  --fco-gray-800: #343A40;
  --fco-gray-900: #212529;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Kalam', 'Caveat', cursive, sans-serif;

  /* Spacing & Layout */
  --container-max: 1240px;
  --container-narrow: 1040px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 27, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 27, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 27, 42, 0.12);
  --shadow-hover: 0 12px 32px rgba(0, 27, 42, 0.15);

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fco-gray-800);
  background-color: var(--fco-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--fco-navy);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Utility Containers */
.fco-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.fco-container-narrow {
  max-width: var(--container-narrow);
}

/* Section Spacing */
.fco-section {
  padding: 64px 0;
  position: relative;
}

@media (min-width: 992px) {
  .fco-section {
    padding: 80px 0;
  }
}

/* Card Footer & Calendar Button Full-Width Stack */
.fco-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--fco-gray-200);
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 10px !important;
  width: 100% !important;
}

.fco-card-price-wrap {
  display: block;
  width: 100%;
  text-align: left;
}

.fco-card-price {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--fco-teal);
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.fco-card-action-wrap {
  display: block;
  width: 100%;
}

.fco-btn-calendar,
.fco-card-footer .fco-btn {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 16px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  border-radius: var(--radius-full) !important;
}
