/* Font imports - all fonts used throughout the site */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,400..700,50..100,0..1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;700&display=swap');

@media screen {
/*****************************************************
PAGE SETUP & CUSTOMIZATION

👉 Want to customize your site's colors?
   See guides/customizing-colors.md for quick changes
   See guides/using-themes.md to create a complete theme
*****************************************************/

/* --- Reset & Base --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  :root {
  /* ===== NAMED COLORS - Friendly Modern Palette ===== */
  /* Sage/green family (lightest to darkest) */
  --sage-pale: #b2cdbc;    /* Lightest sage tint */
  --sage: #6b8e7f;         /* Primary sage green */
  --sage-deep: #3d4e42;    /* Deep sage */
  --sage-dark: #2d3e35;    /* Darkest sage, almost black */

  /* Warm neutrals */
  --warm-white: #f5f3f0;   /* Warm off-white */
  --warm-light: #e8e4df;   /* Light warm tone for cards */
  --golden-wash: #f5ece0;  /* Very light golden tint for special sections */

  /* Accent colors */
  --golden-clay: #b8956a;  /* Warm clay */
  --golden-clay-dark: #8b6f47;  /* Darker warm clay for headings */
  --amber: #f59e0b;        /* Bright amber */

  /* ===== SEMANTIC COLOR SYSTEM ===== */
  /* Backgrounds */
  --bg-page: var(--warm-white);
  --bg-card: var(--warm-light);
  --bg-accent: var(--golden-wash);
  --bg-code: var(--sage-pale);
  --bg-nav: var(--sage-deep);

  /* Text */
  --text-body: #3d2b1a;
  --bs-body-color: #3d2b1a;
  --text-on-dark: var(--warm-white);
  --text-muted: #666;

  /* Accents & Interactive */
  --accent-primary: var(--sage);
  --accent-border: var(--golden-clay);
  --interactive-hover: var(--amber);

  /* Status colors */
  --success: #28a745;
  --warning: #ffc107;
  --warning-bg: #fff3cd;
  --error: #dc3545;
  --info: #5b9aa0;

  /* Utility */
  --overlay-dark: rgba(0, 0, 0, 0.8);
  --white: #ffffff;
  --border-light: rgba(0, 0, 0, 0.1);

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 4px 12px rgba(255, 193, 7, 0.4);

  /* Fonts */
  --font-heading: 'Fraunces', 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-serif: 'Lora', serif;
  --font-mono: 'Fira Mono', 'Consolas', 'Menlo', monospace;
  --font-handwriting: 'Caveat', cursive;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 1s ease-in-out;
}


html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-page);
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 48rem;
  margin: 0 auto;
  clear: both;
}

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



/*****************************************************
JUMBOTRON
*****************************************************/
.header-studio {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 28rem;
  overflow: hidden;
  background: #2a2d31;
}

.header-studio::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  height: 45%;
  background: linear-gradient(to bottom, transparent, rgba(42, 45, 49, 0.94));
  pointer-events: none;
}

.header-studio-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  opacity: 0.8;
}

.header-studio-grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.header-studio-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 2rem;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
  background: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.header-studio-caption a {
  margin-left: 0.35em;
  color: inherit;
  text-decoration: none;
  opacity: 0.86;
  pointer-events: auto;
}

.header-studio-caption a:hover {
  color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

.header-studio-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 62rem;
  margin-left: 3rem;
  padding: 3rem 5rem 4rem;
}

.header-studio-eyebrow {
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: rgba(232, 228, 223, 0.74);
  text-transform: uppercase;
}

.header-studio h1 {
  max-width: 12ch;
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-size: 5.45rem;
  font-weight: 650;
  line-height: 0.95;
  color: var(--warm-white);
  letter-spacing: 0;
  text-shadow:
    0 0 25px rgba(0, 0, 0, 0.88),
    0 0 55px rgba(0, 0, 0, 0.55);
  text-indent: -0.04em;
}

.header-studio--hero h1 {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.header-studio-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.header-studio-divider-line {
  width: 60px;
  height: 1px;
  background: rgba(232, 228, 223, 0.26);
}

.header-studio-divider span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: rgba(232, 228, 223, 0.55);
  text-transform: uppercase;
}

.header-studio p {
  max-width: 540px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.42;
  letter-spacing: 0.04em;
  color: rgba(245, 243, 240, 0.76);
}

.header-studio--section {
  height: 45vh;
  min-height: 20rem;
}

.header-studio--section::after {
  height: 55%;
}

.header-studio--section .header-studio-content {
  max-width: 44rem;
  margin-left: 2rem;
  padding: 2rem 3rem 3rem;
}

.header-studio--section h1 {
  font-size: 4.5rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.header-studio--banner {
  height: 24vh;
  min-height: 13rem;
}

.header-studio--banner::after {
  height: 70%;
}

.header-studio--banner .header-studio-content {
  max-width: none;
  margin-left: 2rem;
  padding: 1rem 2rem 2rem;
}

.header-studio--banner h1 {
  max-width: 24ch;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.05;
  text-indent: 0;
}

.header-studio-bg--photo {
  filter: saturate(1.05) brightness(0.85);
  mix-blend-mode: normal;
}

.header-studio-bg--woodcut {
  filter: saturate(1.05) brightness(0.85);
  mix-blend-mode: normal;
}

.header-studio-bg--etching {
  filter: grayscale(1) brightness(1.3) contrast(5) brightness(0.55) invert(1) sepia(0.5) hue-rotate(320deg) saturate(3);
  mix-blend-mode: screen;
}

.header-studio-bg--sketch,
.header-studio-bg--botanical {
  filter: grayscale(1) contrast(2.5) invert(1) sepia(0.6) hue-rotate(320deg) saturate(3) brightness(2);
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .header-studio {
    min-height: 22rem;
  }

  .header-studio-content {
    margin-left: 0;
    padding: 2rem 1.5rem 3.25rem;
  }

  .header-studio h1 {
    max-width: 11ch;
    font-size: 2.8rem;
  }

  .header-studio p {
    max-width: 90%;
    font-size: 1rem;
    line-height: 1.35;
  }

  .header-studio-caption {
    justify-content: flex-start;
    font-size: 0.62rem;
    text-align: left;
  }

  .header-studio--section,
  .header-studio--banner {
    min-height: 16rem;
  }
}

.jumbotron {
  /* Display & Positioning */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  /* Box Model */
  width: 100%;
  
  /* Typography */
  color: var(--warm-white);
  text-shadow: rgba(42, 29, 18, 0.7) 0.3em 0.3em 0.3em;
  
  /* Visual */
  background-size: cover; 
  background-repeat: no-repeat;
  opacity: 1;
}

.jumbotron p {
  text-align: center;
}

/* Jumbotron with gradient fade to background image */
.jumbotron-gradient {
  /* Display & Positioning */
  display: flex;
  align-items: center;

  /* Box Model */
  width: 100%;
  padding-left: var(--spacing-lg);

  /* Visual */
  background-blend-mode: normal;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.jumbotron-gradient .jumbotron-content {
  /* Box Model */
  max-width: 45rem;
  padding: var(--spacing-lg);

  /* Typography */
  color: var(--text-body);
}

.jumbotron-gradient h2 {
  /* Box Model */
  margin-top: 0;
  margin-bottom: var(--spacing-md);

  /* Typography */
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-heading);
}

.jumbotron-gradient .jumbotron-text {
  /* Typography */
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-body);
}

.jumbotron-gradient .jumbotron-text p {
  margin-bottom: var(--spacing-md);
}

/* Responsive: smaller padding and font on mobile */
@media (max-width: 768px) {
  .jumbotron-gradient {
    padding: var(--spacing-md);
    height: auto !important;
  }

  .jumbotron-gradient .jumbotron-content {
    max-width: 100%;
    padding: var(--spacing-md);
  }

  .jumbotron-gradient h2 {
    font-size: 1.5rem;
  }

  .jumbotron-gradient .jumbotron-text {
    font-size: 1rem;
  }
}


/*****************************************************
IMAGES
*****************************************************/

figure {
  /* Box Model */
  margin: 0;
  margin-bottom: var(--spacing-md);
  
  /* Positioning */
  clear: none;
}

.right {
  /* Positioning */
  float: right;
  
  /* Box Model */
  margin-left: var(--spacing-lg);
  margin-right: 0;
  margin-bottom: var(--spacing-md);
  
  /* Typography */
  text-align: left;
}

.left {
  /* Positioning */
  float: left;
  
  /* Box Model */
  margin-left: 0;
  margin-right: 1rem;
  margin-bottom: var(--spacing-md);
}

.center {
  /* Display */
  display: block;
  
  /* Box Model */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--spacing-md);
  
  /* Positioning */
  clear: both;
  
  /* Typography */
  text-align: center;
}

figcaption {
  /* Display */
  display: block;
  
  /* Box Model */
  margin: 0.4rem 0 1rem 0;
  padding: 0;
  clear: both;
  
  /* Typography */
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.1rem;
  text-align: justify;
  color: var(--text-body);
}

figcaption p {
  /* Box Model */
  margin: 0;
  padding: 0;
  
  /* Typography */
  font-size: 0.8rem;
  line-height: 1.2rem;
}

figcaption a {
  /* Typography */
  font-weight: normal;
  
  /* Visual */
  opacity: 0.5;
}

/*****************************************************
IMAGE CAROUSEL
*****************************************************/

.carousel {
  /* Display */
  overflow: hidden;

  /* Box Model */
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 0 auto;

  /* Visual */
  background: var(--bg-card);
  border-radius: var(--radius-lg);
}

.carousel-item img {
  /* Display */
  display: block;

  /* Box Model */
  width: auto;
  height: auto;
  max-height: 400px;
  margin: 0 auto;

  /* Visual */
  background: var(--bg-card);
  object-fit: contain;
}

p.carousel-caption {
  /* Positioning */
  position: relative;
  z-index: 2;
  
  /* Box Model */
  width: 100%;
  margin: 0.5rem 0 0 var(--spacing-lg);
  padding: 0;
  border: 0;
  
  /* Typography */
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: left;
  text-shadow: none;
  color: var(--text-muted);
}


/*****************************************************
FOOTER
*****************************************************/

footer {
  margin-top: auto;
}


/*****************************************************
BUTTONS
*****************************************************/

/* Primary CTA button */
.btn-primary {
  /* Display */
  display: inline-block;

  /* Box Model */
  padding: 1em 2em;

  /* Typography */
  font-family: var(--font-body);
  font-size: 1.2em;
  color: var(--white) !important;
  text-decoration: none !important;

  /* Visual */
  background: var(--accent-primary);
  border: none !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);

  /* Interactivity */
  transition: background-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
}

.btn-primary:hover {
  /* Typography */
  color: var(--white) !important;

  /* Visual */
  background: var(--interactive-hover);
  box-shadow: var(--shadow-lg);

  /* Transform */
  transform: translateY(-2px);
}

/* Secondary button - smaller, less prominent */
.btn-secondary {
  /* Display */
  display: inline-block;

  /* Box Model */
  padding: 0.6em 1.2em;

  /* Typography */
  font-family: var(--font-body);
  font-size: 0.95em;
  color: var(--white) !important;
  text-decoration: none !important;

  /* Visual */
  background: var(--accent-primary);
  border: none !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  /* Interactivity */
  transition: background-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
}

.btn-secondary:hover {
  /* Typography */
  color: var(--white) !important;

  /* Visual */
  background: var(--interactive-hover);
  box-shadow: var(--shadow-md);

  /* Transform */
  transform: translateY(-1px);
}


} /* end media screen */


/*****************************************************
BOOTSTRAP OVERRIDES
*****************************************************/

/* Override Bootstrap alert colors to use theme variables */
.alert-info {
  /* Visual */
  background-color: rgba(91, 154, 160, 0.15);
  border-color: var(--info);
  color: #2d5154;
}

.alert-info .alert-link {
  /* Typography */
  color: #1e3638;
}

.alert-warning {
  /* Visual */
  background-color: rgba(255, 193, 7, 0.15);
  border-color: var(--warning);
  color: #664d03;
}

.alert-success {
  /* Visual */
  background-color: rgba(40, 167, 69, 0.15);
  border-color: var(--success);
  color: #0f5132;
}

.alert-danger {
  /* Visual */
  background-color: rgba(220, 53, 69, 0.15);
  border-color: var(--error);
  color: #842029;
}


/*****************************************************************************/
/*
/* SMALL SCREEN
/*
/*****************************************************************************/

@media (max-width: 768px) {

  /* Remove container padding on mobile so images can be full width */
  .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Add padding back to text elements */
  .container p,
  .container h1,
  .container h2,
  .container h3,
  .container h4,
  .container h5,
  .container h6,
  .container ul,
  .container ol,
  .container blockquote,
  .container .pullquote,
  .container .alert {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
  }

  /* Make figures full width without padding */
  figure {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: var(--spacing-md) !important;
    float: none !important;
  }

  /* Remove floats from positioned figures */
  figure.left,
  figure.right {
    float: none !important;
  }

}
