/* Edited 6/09/25 4pm */
/* Edited 4/25/25 11am */
/* Edited 4/23/25 11am */
/* Edited 4/15/25 1pm */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
@import 'defaults.css';
@import 'variables.css';



@font-face {
  font-family: 'monument_groteskregular';
  src: url('monumentgrotesk-regular-webfont.woff2') format('woff2'),
       url('monumentgrotesk-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'Menlo Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Menlo Regular'), url('Menlo-Regular.woff') format('woff');
  }

:root {
  overscroll-behavior: none;
  --padding: 1.5rem;
  --small-padding: .4rem;
  --padding-regular: 1rem;
  --h2-bottom-padding: .5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #f0c674;
  --color-code-green:       #a7bd68;
  --color-code-aqua:        #8abeb7;
  --color-code-blue:        #7e9abf;
  --color-code-purple:      #b294bb;
  --font-family-sans: "Monument_GroteskRegular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-mono: "Menlo Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  --font-family-serif: "Times New Roman", Times, serif;
  /* Font Sizes Mobile */
  --caption-font-size: 12px;
  --font-size-h1: 16px;
  --font-size-h2: 30px;
  --font-size-h3: 20px;
  --font-size-h4: 16px;
  --font-size-nav: 16px;
  --font-size-body-1: 16px;
  --font-size-body-2: 16px;
  --font-size-body-3: 16px;
  --font-size-body-4: 16px;

 

 /* Line Heights */
 --caption-line-height: 1.25;
 --line-height-h1: 1.1;
 --line-height-h2: 0.9;
 --line-height-h3: 1.1;
 --line-height-h4: 1.2;
 --line-height-nav: 1.1;
 --line-height-body-1: 1.25;
 --line-height-body-2: 1.1;
 --line-height-body-3: 1.2;
 --line-height-body-4: 1.1;

}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;

  /* THEME 1 COLORS */
  --theme1-navy: lch(18% 12 282);
  --theme1-salmon: lch(63.5% 69 31);
  --theme1-cream: lch(96% 5 52);
  --theme1-red: lch(50% 68 31);
  --theme1-pink: lch(91% 13 26);
  --theme1-purple: lch(28% 38 304);
  --theme1-beige: lch(84% 7 20);

  /* THEME 2 COLORS */
  --theme2-navy-dark: lch(15% 11 237);  /* Dark Navy */
  --theme2-navy-medium: lch(32% 15.5 256);  /* Medium Navy */
  --theme2-navy-light: lch(63% 15 247);  /* Light Navy */
  --theme2-red: lch(51% 60 10);  /* Red */
  --theme2-pink: lch(71% 48 0);  /* Pink */
  --theme2-pink-light: lch(90% 15 350);  /* Light Pink */
  --theme2-lilac: lch(92% 5 285);  /* Lilac */

  /* THEME 3 COLORS */
  --theme3-navy: lch(15% 15 290);  /* Navy */
  --theme3-olive: lch(31% 11 135);  /* Olive Green */
  --theme3-indigo: lch(31% 52 295);  /* Indigo */
  --theme3-red: lch(53% 65 32);  /*  Red */
  --theme3-coral: lch(63% 67 32);  /* Coral */
  --theme3-aqua: lch(88% 20 197);  /* Aqua */
  --theme3-cream: lch(93% 5 31);  /* Cream */

  /* THEME 4 COLORS */
  --theme4-dark-teal: lch(20% 7 198);  /* Dark Teal */
  --theme4-dark-olive: lch(33% 2 135);  /* Dark Olive */
  --theme4-teal: lch(50% 28 197);  /* Teal */
  --theme4-cyan: lch(67% 28 197);  /* Cyan */
  --theme4-light-aqua: lch(85% 11 197);  /* Light Aqua */
  --theme4-gold: lch(86% 67 85);  /* Gold */
  --theme4-cream: lch(93% 10 85);  /* Cream */

  /* THEME 5 COLORS */
  --theme5-navy-dark: lch(15% 45 296);  
  --theme5-blue: lch(25% 78 296); 
  --theme5-magenta: lch(49% 80 335);  
  --theme5-bright-pink: lch(69.4% 80 325);  
  --theme5-light-pink: lch(88% 22 315);  
  --theme5-lavender: lch(92% 10 305);  
  --theme5-gray-light: lch(96% 2 295);  
}

/* THEME 1  */
/* 1A */
html.theme1_A {
  --body-1-color: var(--theme1-navy);
  --body-2-color: var(--theme1-navy);
  --body-3-color: var(--theme1-salmon);
  --nav-color: var(--theme1-cream);
  --body-1-event-color: var(--theme1-cream);
  --header-bg: var(--theme1-navy);
  --h1-color: #ec2626;
  --h2-color: var(--theme1-red);
  --h3-color: var(--theme1-red);
  --h2-artist-name-1: var(--theme1-salmon);
  --h2-artist-name-2: var(--theme1-beige);
  --h2-artist-name-3: var(--theme1-cream);
  --caption-color: var(--theme1-pink);
  --button-color: var(--theme1-red);
  --button-color-hover: var(--theme1-salmon);
  --button-color-active: var(--theme1-pink);
  --button-text-color: var(--theme1-cream);
  --button-text-color-active: var(--theme1-purple);
  --button-text-color-hover: var(--theme1-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme1-beige);
  --about-h3-color: var(--theme1-navy);
  --events-h3-bg: var(--theme1-red);
  --events-h3-color: var(--theme1-cream);
  --more-h3-bg: var(--theme1-pink);
  --more-h3-color: var(--theme1-navy);
  --image-bg: var(--theme1-purple);
  --quote-color: var(--theme1-cream);
  --text-bg: var(--theme1-cream);
  --text-2-bg: var(--theme1-salmon);
  --text-3-bg: var(--theme1-navy);
}

/* 1B */
html.theme1_B {
  --body-1-color: var(--theme1-navy);
  --body-2-color: var(--theme1-navy);
  --body-3-color: var(--theme1-salmon);
  --nav-color: var(--theme1-cream);
  --body-1-event-color: var(--theme1-cream);
  --header-bg: var(--theme1-purple);
  --h1-color: #ec2626;
  --h2-color: var(--theme1-salmon);
  --h3-color: var(--theme1-salmon);
  --h2-artist-name-1: var(--theme1-salmon);
  --h2-artist-name-2: var(--theme1-beige);
  --h2-artist-name-3: var(--theme1-cream);
  --caption-color: var(--theme1-pink);
  --button-color: var(--theme1-red);
  --button-color-hover: var(--theme1-salmon);
  --button-color-active: var(--theme1-pink);
  --button-text-color: var(--theme1-cream);
  --button-text-color-active: var(--theme1-purple);
  --button-text-color-hover: var(--theme1-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme1-salmon);
  --about-h3-color: var(--theme1-purple);
  --events-h3-bg: var(--theme1-purple);
  --events-h3-color: var(--theme1-salmon);
  --more-h3-bg: var(--theme1-salmon);
  --more-h3-color: var(--theme1-navy);
  --image-bg: var(--theme1-beige);
  --quote-color: var(--theme1-navy);
  --text-bg: var(--theme1-pink);
  --text-2-bg: var(--theme1-beige);
  --text-3-bg: var(--theme1-purple);
}
/* 1C */
html.theme1_C {
  --body-1-color: var(--theme1-navy);
  --body-2-color: var(--theme1-navy);
  --body-3-color: var(--theme1-salmon);
  --nav-color: var(--theme1-navy);
  --body-1-event-color: var(--theme1-navy);
  --header-bg: var(--theme1-pink);
  --h1-color: #ec2626;
  --h2-color: var(--theme1-salmon);
  --h3-color: var(--theme1-salmon);
  --h2-artist-name-1: var(--theme1-salmon);
  --h2-artist-name-2: var(--theme1-purple);
  --h2-artist-name-3: var(--theme1-navy);
  --caption-color: var(--theme1-navy);
  --button-color: var(--theme1-red);
  --button-color-hover: var(--theme1-salmon);
  --button-color-active: var(--theme1-beige);
  --button-text-color: var(--theme1-cream);
  --button-text-color-active: var(--theme1-purple);
  --button-text-color-hover: var(--theme1-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme1-purple);
  --about-h3-color: var(--theme1-cream);
  --events-h3-bg: var(--theme1-navy);
  --events-h3-color: var(--theme1-red);
  --more-h3-bg: var(--theme1-beige);
  --more-h3-color: var(--theme1-purple);
  --image-bg: var(--theme1-cream);
  --quote-color: var(--theme1-navy);
  --text-bg: var(--theme1-beige);
  --text-2-bg: var(--theme1-cream);
  --text-3-bg: var(--theme1-pink);
}
/* 1D */
html.theme1_D {
  --body-1-color: var(--theme1-navy);
  --body-2-color: var(--theme1-navy);
  --body-3-color: var(--theme1-salmon);
  --nav-color: var(--theme1-red);
  --body-1-event-color: var(--theme1-navy);
  --header-bg: var(--theme1-cream);
  --h1-color: #ec2626;
  --h2-color: var(--theme1-navy);
  --h3-color: var(--theme1-navy);
  --h2-artist-name-1: var(--theme1-salmon);
  --h2-artist-name-2: var(--theme1-purple);
  --h2-artist-name-3: var(--theme1-navy);
  --caption-color: var(--theme1-navy);
  --button-color: var(--theme1-red);
  --button-color-hover: var(--theme1-salmon);
  --button-color-active: var(--theme1-salmon);
  --button-text-color: var(--theme1-navy);
  --button-text-color-active: var(--theme1-cream);
  --button-text-color-hover: var(--theme1-navy);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme1-purple);
  --about-h3-color: var(--theme1-salmon);
  --events-h3-bg: var(--theme1-beige);
  --events-h3-color: var(--theme1-red);
  --more-h3-bg: var(--theme1-navy);
  --more-h3-color: var(--theme1-pink);
  --image-bg: var(--theme1-salmon);
  --quote-color: var(--theme1-cream);
  --text-bg: var(--theme1-pink);
  --text-2-bg: var(--theme1-cream);
  --text-3-bg: var(--theme1-cream);
}


/* THEME 2  */
/* 2A */
html.theme2_A {
  --body-1-color: var(--theme2-navy-dark);
  --body-2-color: var(--theme2-navy-dark);
  --body-3-color: var(--theme2-pink);
  --nav-color: var(--theme2-pink-light);
  --body-1-event-color: var(--theme2-lilac);
  --header-bg: var(--theme2-navy-dark);
  --h1-color: #ec2626;
  --h2-color: var(--theme2-navy-light);
  --h3-color: var(--theme2-pink);
  --h2-artist-name-1: var(--theme2-navy-light);
  --h2-artist-name-2: var(--theme2-pink);
  --h2-artist-name-3: var(--theme2-pink-light);
  --caption-color: var(--theme2-lilac);
  --button-color: var(--theme2-red);
  --button-color-hover: var(--theme2-pink);
  --button-color-active: var(--theme2-pink-light);
  --button-text-color: var(--theme2-pink-light);
  --button-text-color-active: var(--theme2-navy-dark);
  --button-text-color-hover: var(--theme2-navy-dark);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme2-pink);
  --about-h3-color: var(--theme2-navy-dark);
  --events-h3-bg: var(--theme2-red);
  --events-h3-color: var(--theme2-navy-dark);
  --more-h3-bg: var(--theme2-navy-medium);
  --more-h3-color: var(--theme2-lilac);
  --image-bg: var(--theme2-navy-medium);
  --quote-color: var(--theme2-pink-light);
  --text-bg: var(--theme2-lilac);
  --text-2-bg: var(--theme2-pink);
  --text-3-bg: var(--theme2-navy-dark);
}
/* 2B */
html.theme2_B {
  --body-1-color: var(--theme2-navy-dark);
  --body-2-color: var(--theme2-navy-dark);
  --body-3-color: var(--theme2-pink-light);
  --nav-color: var(--theme2-pink-light);
  --body-1-event-color: var(--theme2-lilac);
  --header-bg: var(--theme2-navy-medium);
  --h1-color: #ec2626;
  --h2-color: var(--theme2-pink);
  --h3-color: var(--theme2-pink);
  --h2-artist-name-1: var(--theme2-pink);
  --h2-artist-name-2: var(--theme2-pink-light);
  --h2-artist-name-3: var(--theme2-lilac);
  --caption-color: var(--theme2-lilac);
  --button-color: var(--theme2-red);
  --button-color-hover: var(--theme2-pink);
  --button-color-active: var(--theme2-pink-light);
  --button-text-color: var(--theme2-pink-light);
  --button-text-color-active: var(--theme2-navy-dark);
  --button-text-color-hover: var(--theme2-lilac);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme2-pink);
  --about-h3-color: var(--theme2-navy-dark);
  --events-h3-bg: var(--theme2-navy-light);
  --events-h3-color: var(--theme2-navy-dark);
  --more-h3-bg: var(--theme2-pink);
  --more-h3-color: var(--theme2-navy-dark);
  --image-bg: var(--theme2-navy-light);
  --quote-color: var(--theme2-navy-dark);
  --text-bg: var(--theme2-pink-light);
  --text-2-bg: var(--theme2-lilac);
  --text-3-bg: var(--theme2-navy-dark);
}
/* 2C */
html.theme2_C {
  --body-1-color: var(--theme2-navy-dark);
  --body-2-color: var(--theme2-navy-dark);
  --body-3-color: var(--theme2-red);
  --nav-color: var(--theme2-navy-dark);
  --body-1-event-color: var(--theme2-navy-dark);
  --header-bg: var(--theme2-pink-light);
  --h1-color: #ec2626;
  --h2-color: var(--theme2-red);
  --h3-color: var(--theme2-red);
  --h2-artist-name-1: var(--theme2-red);
  --h2-artist-name-2: var(--theme2-navy-dark);
  --h2-artist-name-3: var(--theme2-navy-light);
  --caption-color: var(--theme2-navy-dark);
  --button-color: var(--theme2-red);
  --button-color-hover: var(--theme2-pink);
  --button-color-active: var(--theme2-lilac);
  --button-text-color: var(--theme2-pink-light);
  --button-text-color-active: var(--theme2-navy-dark);
  --button-text-color-hover: var(--theme3-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme2-navy-medium);
  --about-h3-color: var(--theme2-pink-light);
  --events-h3-bg: var(--theme2-red);
  --events-h3-color: var(--theme2-lilac);
  --more-h3-bg: var(--theme2-pink);
  --more-h3-color: var(--theme2-navy-dark);
  --image-bg: var(--theme2-lilac);
  --quote-color: var(--theme2-navy-dark);
  --text-bg: var(--theme2-pink-light);
  --text-2-bg: var(--theme2-lilac);
  --text-3-bg: var(--theme2-pink-light);
}
/* 2D */
html.theme2_D {
  --body-1-color: var(--theme2-navy-dark);
  --body-2-color: var(--theme2-navy-dark);
  --body-3-color: var(--theme2-red);
  --nav-color: var(--theme2-red);
  --body-1-event-color: var(--theme2-navy-dark);
  --header-bg: var(--theme2-lilac);
  --h1-color: #ec2626;
  --h2-color: var(--theme2-red);
  --h3-color: var(--theme2-red);
  --h2-artist-name-1: var(--theme2-red);
  --h2-artist-name-2: var(--theme2-navy-medium);
  --h2-artist-name-3: var(--theme2-navy-dark);
  --caption-color: var(--theme2-navy-dark);
  --button-color: var(--theme2-red);
  --button-color-hover: var(--theme2-pink);
  --button-color-active: var(--theme2-pink-light);
  --button-text-color: var(--theme2-lilac);
  --button-text-color-active: var(--theme2-navy-dark);
  --button-text-color-hover: var(--theme3-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme2-pink);
  --about-h3-color: var(--theme2-navy-dark);
  --events-h3-bg: var(--theme2-navy-light);
  --events-h3-color: var(--theme2-navy-dark);
  --more-h3-bg: var(--theme2-red);
  --more-h3-color: var(--theme2-lilac);
  --image-bg: var(--theme2-pink-light);
  --quote-color: var(--theme2-navy-dark); 
  --text-bg: var(--theme2-lilac);
  --text-2-bg: var(--theme2-lilac);
  --text-3-bg: var(--theme2-lilac);
}

/* THEME 3 */
/* 3A */
html.theme3_A {
  --body-1-color: var(--theme3-coral);
  --body-2-color: var(--theme3-navy);
  --body-3-color: var(--theme3-coral);
  --nav-color: var(--theme3-cream);
  --body-1-event-color: var(--theme3-cream);
  --header-bg: var(--theme3-navy);
  --h1-color: #ec2626;
  --h2-color: var(--theme3-coral);
  --h3-color: var(--theme3-aqua);
  --h2-artist-name-1: var(--theme3-coral);
  --h2-artist-name-2: var(--theme3-aqua);
  --h2-artist-name-3: var(--theme3-cream);
  --caption-color: var(--theme2-navy-dark);
  --button-color: var(--theme3-red);
  --button-color-hover: var(--theme3-coral);
  --button-color-active: var(--theme3-cream);
  --button-text-color: var(--theme3-cream);
  --button-text-color-active: var(--theme3-navy);
  --button-text-color-hover: var(--theme3-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme3-aqua);
  --about-h3-color: var(--theme3-navy);
  --events-h3-bg: var(--theme3-indigo);
  --events-h3-color: var(--theme3-aqua);
  --more-h3-bg: var(--theme3-indigo);
  --more-h3-color: var(--theme3-cream);
  --image-bg: var(--theme3-indigo);
  --quote-color: var(--theme3-cream); 
  --text-bg: var(--theme3-navy);
  --text-2-bg: var(--theme3-coral);
  --text-3-bg: var(--theme3-navy);
}
/* 3B */
html.theme3_B {
  --body-1-color: var(--theme3-cream);
  --body-2-color: var(--theme3-navy);
  --body-3-color: var(--theme3-aqua);
  --nav-color: var(--theme3-cream);
  --body-1-event-color: var(--theme3-cream);
  --header-bg: var(--theme3-olive);
  --h1-color: #ec2626;
  --h2-color: var(--theme3-coral);
  --h3-color: var(--theme3-aqua);
  --h2-artist-name-1: var(--theme3-coral);
  --h2-artist-name-2: var(--theme3-aqua);
  --h2-artist-name-3: var(--theme3-cream);
  --caption-color: var(--theme2-cream);
  --button-color: var(--theme3-red);
  --button-color-hover: var(--theme3-coral);
  --button-color-active: var(--theme3-cream);
  --button-text-color: var(--theme3-cream);
  --button-text-color-hover: var(--theme3-cream);
  --button-text-color-active: var(--theme3-navy);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme3-red);
  --about-h3-color: var(--theme3-cream);
  --events-h3-bg: var(--theme3-navy);
  --events-h3-color: var(--theme3-cream);
  --more-h3-bg: var(--theme3-coral);
  --more-h3-color: var(--theme3-navy);
  --image-bg: var(--theme3-navy);
  --quote-color: var(--theme3-cream); 
  --text-bg: var(--theme3-indigo);
  --text-2-bg: var(--theme3-cream);
  --text-3-bg: var(--theme3-navy);
}
/* 3C */
html.theme3_C {
  --body-1-color: var(--theme3-navy);
  --body-2-color: var(--theme3-indigo);
  --body-3-color: var(--theme3-coral);
  --nav-color: var(--theme3-aqua);
  --body-1-event-color: var(--theme3-cream);
  --header-bg: var(--theme3-indigo);
  --h1-color: #ec2626;
  --h2-color: var(--theme3-coral);
  --h3-color: var(--theme3-coral);
  --h2-artist-name-1: var(--theme3-coral);
  --h2-artist-name-2: var(--theme3-aqua);
  --h2-artist-name-3: var(--theme3-cream);
  --caption-color: var(--theme2-cream);
  --button-color: var(--theme3-red);
  --button-color-hover: var(--theme3-coral);
  --button-color-active: var(--theme3-cream);
  --button-text-color: var(--theme3-cream);
  --button-text-color-active: var(--theme3-navy);
  --button-text-color-hover: var(--theme3-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme3-navy);
  --about-h3-color: var(--theme3-coral);
  --events-h3-bg: var(--theme3-indigo);
  --events-h3-color: var(--theme3-aqua);
  --more-h3-bg: var(--theme3-coral);
  --more-h3-color: var(--theme3-navy);
  --image-bg: var(--theme3-aqua);
  --quote-color: var(--theme3-navy); 
  --text-bg: var(--theme3-cream);
  --text-2-bg: var(--theme3-aqua);
  --text-3-bg: var(--theme3-indigo);
}

/* 3D */
html.theme3_D {
  --body-1-color: var(--theme3-navy);
  --body-2-color: var(--theme3-coral);
  --body-3-color: var(--theme3-coral);
  --nav-color: var(--theme3-indigo);
  --body-1-event-color: var(--theme3-navy);
  --header-bg: var(--theme3-aqua);
  --h1-color: #ec2626;
  --h2-color: var(--theme3-navy);
  --h3-color: var(--theme3-navy);
  --h2-artist-name-1: var(--theme3-navy);
  --h2-artist-name-2: var(--theme3-indigo);
  --h2-artist-name-3: var(--theme3-red);
  --caption-color: var(--theme3-navy);
  --button-color: var(--theme3-red);
  --button-color-hover: var(--theme3-coral);
  --button-color-active: var(--theme3-coral);
  --button-text-color: var(--theme3-navy);
  --button-text-color-active: var(--theme3-cream);
  --button-text-color-hover: var(--theme3-navy);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme3-coral);
  --about-h3-color: var(--theme3-navy);
  --events-h3-bg: var(--theme3-indigo);
  --events-h3-color: var(--theme3-cream);
  --more-h3-bg: var(--theme3-coral);
  --more-h3-color: var(--theme3-navy);
  --image-bg: var(--theme3-cream);
  --quote-color: var(--theme3-navy); 
  --text-bg: var(--theme3-cream);
  --text-2-bg: var(--theme3-navy);
  --text-3-bg: var(--theme3-olive);
}

/* THEME 4 */

/* 4A */
html.theme4_A {
  --body-1-color: var(--theme4-light-aqua);
  --body-2-color: var(--theme4-dark-teal);
  --body-3-color: var(--theme4-gold);
  --nav-color: var(--theme4-cream);
  --body-1-event-color: var(--theme4-cream);
  --header-bg: var(--theme4-dark-teal);
  --h1-color: #ec2626;
  --h2-color: var(--theme4-gold);
  --h3-color: var(--theme4-gold);
  --h2-artist-name-1: var(--theme4-gold);
  --h2-artist-name-2: var(--theme4-light-aqua);
  --h2-artist-name-3: var(--theme4-cyan);
  --caption-color: var(--theme4-cream);
  --button-color: var(--theme4-gold);
  --button-color-hover: var(--theme4-cream);
  --button-color-active: var(--theme4-cyan);
  --button-text-color: var(--theme4-dark-teal);
  --button-text-color-active: var(--theme4-dark-teal);
  --button-text-color-hover: var(--theme4-dark-teal);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme4-teal);
  --about-h3-color: var(--theme4-gold);
  --events-h3-bg: var(--theme4-cream);
  --events-h3-color: var(--theme4-teal);
  --more-h3-bg: var(--theme4-cyan);
  --more-h3-color: var(--theme4-dark-teal);
  --image-bg: var(--theme4-dark-olive);
  --quote-color: var(--theme4-cream); 
  --text-bg: var(--theme4-dark-teal);
  --text-2-bg: var(--theme4-light-aqua);
  --text-3-bg: var(--theme4-dark-teal);
}

/* 4B */
html.theme4_B {
  --body-1-color: var(--theme4-dark-teal);
  --body-2-color: var(--theme4-dark-teal);
  --body-3-color: var(--theme4-light-aqua);
  --nav-color: var(--theme4-light-aqua);
  --body-1-event-color: var(--theme4-cream);
  --header-bg: var(--theme4-teal);
  --h1-color: #ec2626;
  --h2-color: var(--theme4-gold);
  --h3-color: var(--theme4-gold);
  --h2-artist-name-1: var(--theme4-gold);
  --h2-artist-name-2: var(--theme4-light-aqua);
  --h2-artist-name-3: var(--theme4-dark-teal);
  --caption-color: var(--theme3-cream);
  --button-color: var(--theme4-gold);
  --button-color-hover: var(--theme4-cream);
  --button-color-active: var(--theme4-cyan);
  --button-text-color: var(--theme4-dark-teal);
  --button-text-color-active: var(--theme4-dark-teal);
  --button-text-color-hover: var(--theme4-dark-teal);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme4-cyan);
  --about-h3-color: var(--theme4-dark-teal);
  --events-h3-bg: var(--theme4-dark-olive);
  --events-h3-color: var(--theme4-gold);
  --more-h3-bg: var(--theme4-gold);
  --more-h3-color: var(--theme4-dark-teal);
  --image-bg: var(--theme4-dark-teal);
  --quote-color: var(--theme4-light-aqua); 
  --text-bg: var(--theme4-light-aqua);
  --text-2-bg: var(--theme4-cream);
  --text-3-bg: var(--theme3-olive);
}

/* 4C */
html.theme4_C {
  --body-1-color: var(--theme4-cream);
  --body-2-color: var(--theme4-gold);
  --body-3-color: var(--theme4-cyan);
  --nav-color: var(--theme4-dark-teal);
  --body-1-event-color: var(--theme4-dark-teal);
  --header-bg: var(--theme4-gold);
  --h1-color: #ec2626;
  --h2-color: var(--theme4-teal);
  --h3-color: var(--theme4-teal);
  --h2-artist-name-1: var(--theme4-teal);
  --h2-artist-name-2: var(--theme4-dark-olive);
  --h2-artist-name-3: var(--theme4-dark-teal);
  --caption-color: var(--theme4-dark-teal);
  --button-color: var(--theme4-teal);
  --button-color-hover: var(--theme4-cyan);
  --button-color-active: var(--theme4-cyan);
  --button-text-color: var(--theme4-cream);
  --button-text-color-active: var(--theme4-gold);
  --button-text-color-hover: var(--theme4-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme4-cyan);
  --about-h3-color: var(--theme4-dark-teal);
  --events-h3-bg: var(--theme4-cream);
  --events-h3-color: var(--theme4-teal);
  --more-h3-bg: var(--theme4-gold);
  --more-h3-color: var(--theme4-dark-olive);
  --image-bg: var(--theme4-light-aqua);
  --quote-color: var(--theme4-dark-teal); 
  --text-bg: var(--theme4-teal);
  --text-2-bg: var(--theme4-dark-olive);
  --text-3-bg: var(--theme4-dark-teal);
}

/* 4D */
html.theme4_D {
  --body-1-color: var(--theme4-dark-teal);
  --body-2-color: var(--theme4-teal);
  --body-3-color: var(--theme4-dark-teal);
  --nav-color: var(--theme4-teal);
  --body-1-event-color: var(--theme4-dark-teal);
  --header-bg: var(--theme4-cream);
  --h1-color: #ec2626;
  --h2-color: var(--theme4-teal);
  --h3-color: var(--theme4-teal);
  --h2-artist-name-1: var(--theme4-teal);
  --h2-artist-name-2: var(--theme4-cyan);
  --h2-artist-name-3: var(--theme4-dark-olive);
  --caption-color: var(--theme4-dark-teal);
  --button-color: var(--theme4-teal);
  --button-color-hover: var(--theme4-cyan);
  --button-color-active: var(--theme4-gold);
  --button-text-color: var(--theme4-cream);
  --button-text-color-active: var(--theme4-teal);
  --button-text-color-hover: var(--theme4-cream);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme4-gold);
  --about-h3-color: var(--theme4-teal);
  --events-h3-bg: var(--theme4-gold);
  --events-h3-color: var(--theme4-teal);
  --more-h3-bg: var(--theme4-gold);
  --more-h3-color: var(--theme4-dark-teal);
  --image-bg: var(--theme4-cream);
  --quote-color: var(--theme4-teal); 
  --text-bg: var(--theme4-cream);
  --text-2-bg: var(--theme4-cream);
  --text-3-bg: var(--theme4-gold);
}


/* THEME 5 */

/* 5A */
html.theme5_A {
  --body-1-color: var(--theme5-navy-dark);
  --body-2-color: var(--theme5-navy-dark);
  --body-3-color: var(--theme5-bright-pink);
  --nav-color: var(--theme5-light-pink);
  --body-1-event-color: var(--theme5-lavender);
  --header-bg: var(--theme5-navy-dark);
  --h1-color: #ec2626;
  --h2-color: var(--theme5-bright-pink);
  --h3-color: var(--theme5-bright-pink);
  --h2-artist-name-1: var(--theme5-bright-pink);
  --h2-artist-name-2: var(--theme5-light-pink);
  --h2-artist-name-3: var(--theme5-lavender);
  --caption-color: var(--theme5-lavender);
  --button-color: var(--theme5-magenta);
  --button-color-hover: var(--theme5-bright-pink);
  --button-color-active: var(--theme5-lavender);
  --button-text-color: var(--theme5-lavender);
  --button-text-color-active: var(--theme5-navy-dark);
  --button-text-color-hover: var(--theme5-gray-light);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme5-magenta);
  --about-h3-color: var(--theme5-gray-light);
  --events-h3-bg: var(--theme5-blue);
  --events-h3-color: var(--theme5-bright-pink);
  --more-h3-bg: var(--theme5-blue);
  --more-h3-color: var(--theme5-lavender);
  --image-bg: var(--theme5-blue);
  --quote-color: var(--theme5-gray-light); 
  --text-bg: var(--theme5-light-pink);
  --text-2-bg: var(--theme5-lavender);
  --text-3-bg: var(--theme5-navy-dark);
}

/* 5B */
html.theme5_B {
  --body-1-color: var(--theme5-light-pink);
  --body-2-color: var(--theme5-blue);
  --body-3-color: var(--theme5-bright-pink);
  --nav-color: var(--theme5-light-pink);
  --body-1-event-color: var(--theme5-gray-light);
  --header-bg: var(--theme5-blue);
  --h1-color: #ec2626;
  --h2-color: var(--theme5-bright-pink);
  --h3-color: var(--theme5-bright-pink);
  --h2-artist-name-1: var(--theme5-bright-pink);
  --h2-artist-name-2: var(--theme5-light-pink);
  --h2-artist-name-3: var(--theme5-gray-light);
  --caption-color: var(--theme5-gray-light);
  --button-color: var(--theme5-magenta);
  --button-color-hover: var(--theme5-bright-pink);
  --button-color-active: var(--theme5-light-pink);
  --button-text-color: var(--theme5-gray-light);
  --button-text-color-active: var(--theme5-navy-dark);
  --button-text-color-hover: var(--theme5-gray-light);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme5-bright-pink);
  --about-h3-color: var(--theme5-navy-dark);
  --events-h3-bg: var(--theme5-magenta);
  --events-h3-color: var(--theme5-gray-light);
  --more-h3-bg: var(--theme5-light-pink);
  --more-h3-color: var(--theme5-blue);
  --image-bg: var(--theme5-navy-dark);
  --quote-color: var(--theme5-gray-light); 
  --text-bg: var(--theme5-blue);
  --text-2-bg: var(--theme5-lavender);
  --text-3-bg: var(--theme5-blue);
}

/* 5C */
html.theme5_C {
  --body-1-color: var(--theme5-blue);
  --body-2-color: var(--theme5-blue);
  --body-3-color: var(--theme5-blue);
  --nav-color: var(--theme5-blue);
  --body-1-event-color: var(--theme5-navy-dark);
  --header-bg: var(--theme5-lavender);
  --h1-color: #ec2626;
  --h2-color: var(--theme5-magenta);
  --h3-color: var(--theme5-magenta);
  --h2-artist-name-1: var(--theme5-magenta);
  --h2-artist-name-2: var(--theme5-blue);
  --h2-artist-name-3: var(--theme5-bright-pink);
  --caption-color: var(--theme5-navy-dark);
  --button-color: var(--theme5-magenta);
  --button-color-hover: var(--theme5-bright-pink);
  --button-color-active: var(--theme5-light-pink);
  --button-text-color: var(--theme5-gray-light);
  --button-text-color-active: var(--theme5-navy-dark);
  --button-text-color-hover: var(--theme5-gray-light);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme5-lavender);
  --about-h3-color: var(--theme5-magenta);
  --events-h3-bg: var(--theme5-light-pink);
  --events-h3-color: var(--theme5-magenta);
  --more-h3-bg: var(--theme5-light-pink);
  --more-h3-color: var(--theme5-magenta);
  --image-bg: var(--theme5-light-pink);
  --quote-color: var(--theme5-blue); 
  --text-bg: var(--theme5-gray-light);
  --text-2-bg: var(--theme5-lavender);
  --text-3-bg: var(--theme5-gray-light);
}

/* 5D */
html.theme5_D {
  --body-1-color: var(--theme5-blue);
  --body-2-color: var(--theme5-navy-dark);
  --body-3-color: var(--theme5-blue);
  --nav-color: var(--theme5-blue);
  --body-1-event-color: var(--theme5-navy-dark);
  --header-bg: var(--theme5-gray-light);
  --h1-color: #ec2626;
  --h2-color: var(--theme5-magenta);
  --h3-color: var(--theme5-magenta);
  --h2-artist-name-1: var(--theme5-magenta);
  --h2-artist-name-2: var(--theme5-navy-dark);
  --h2-artist-name-3: var(--theme5-bright-pink);
  --caption-color: var(--theme5-navy-dark);
  --button-color: var(--theme5-magenta);
  --button-color-hover: var(--theme5-bright-pink);
  --button-color-active: var(--theme5-light-pink);
  --button-text-color: var(--theme5-gray-light);
  --button-text-color-active: var(--theme5-navy-dark);
  --button-text-color-hover: var(--theme5-gray-light);
  --header-text: var(--theme1-beige);
  --about-h3-bg: var(--theme5-light-pink);
  --about-h3-color: var(--theme5-blue);
  --events-h3-bg: var(--theme5-light-pink);
  --events-h3-color: var(--theme5-blue);
  --more-h3-bg: var(--theme5-blue);
  --more-h3-color: var(--theme5-gray-light);
  --image-bg: var(--theme5-lavender);
  --quote-color: var(--theme5-magenta); 
  --text-bg: var(--theme5-gray-light);
  --text-2-bg: var(--theme5-lavender);
  --text-3-bg: var(--theme5-bright-pink);
}

img {
  width: 100%;
}

   /* Make body a flex container */
   html, body {
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  
/* BODY 1 */

body {

  width: 100%;
  background-color: var(--background-color);
  color: var(--body-1-color);
  font-size: var(--font-size-body-1);
  line-height: var(--line-height-body-1);
  font-family: var(--font-family-serif);
  /* overflow: scroll;  */

}



/* .event-column p a  {
  text-decoration: underline;
  text-decoration-color: auto;
} */



ul {
  max-width: 100vw;
}

/* BODY 2 */

.body-2 {
  font-size: 1em;
  line-height: var(--line-height-body-2);
  color: var(--body-2-color, #000000); /* Default text color */
  font-family: 'Monument_GroteskRegular';
}
/* BODY 3 */

.body-3 {
  font-size: 1em;
  line-height: var(--line-height-body-3);
  color: var(--body-3-color, #000000); /* Default text color */
  font-family: 'Monument_GroteskRegular';}

  /* BODY 4 */
  .body-4 {
    font-size: var(--font-size-body-4);
    line-height: var(--line-height-body-4);
    color: #000000; /* Default text color */
    font-family: var(--font-family-mono);
  }

  .body-4 p {
    padding-bottom: var(--padding-regular);
  }

  /* .body-2 a{
    text-decoration: none;
  } */
  
li {
  list-style: none;
  padding-bottom: 1rem;
}
/* h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
} */


/* HEADINGS */

h1 {
  color: var(--h1-color);
  font-size: var(--font-size-h1);
  line-height: var(--line-height-h1);
  font-family: 'Menlo Regular';
  font-weight: normal;
}

h2 {
  color: var(--h2-color);
  font-size: var(--font-size-h2);
  line-height: var(--line-height-h2);
  font-family: 'monument_groteskregular';
  text-transform: uppercase;
  font-weight: normal;

}

h3 {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-h3);
  font-family: 'monument_groteskregular';
  color:  var(--h3-color);
  font-weight: normal;

}

h4 {
  font-size: var(--font-size-h4);
  line-height: var(--line-height-h4);
  font-family: 'monument_groteskregular';
  font-weight: normal;

}

a {
  color: inherit ;
  text-decoration: none;
}

button {
  font: 'Menlo Regular';
  font-size: var(--font-size-body-2) ;
  background-color: var(--button-color);
  border: 0;
  padding: .5rem;
  color: var(--button-text-color);
  cursor: pointer;
}
button:hover {
  background-color: var(--button-color-hover);
  color: var(--button-text-color-hover);
}
button:active {
  background-color: var(--button-color-active);
  color: var(--button-text-color-active);
}
/* TICKETS */
.tickets {
  font-family: var(--font-family-mono);
  /* color: var(); */
  margin-bottom: var(--padding);
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

/* form {
} */
/* Page Wrapper */
.main {
  position: relative;
  max-width: 100vw; 
/* padding: 0 var(--padding); */
}

.main-content {
  overflow: scroll; 
  padding: 0 1rem;
  
}
/* ----Heading Classes---- */

/* .text h1,
.h1,
.intro {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 1.25em;
} */
 .h1 {
  padding-bottom: var(--padding);
 }


.text h2,
.h2 {
  /* font-size: 1.25rem; */
  /* font-weight: 600; */
  /* margin-bottom: 1.25rem; */
  /* width: 100vw; */
  padding: .5rem;
  /* background-color: orange; */
}

/* .text h3,
.h3 {

} */
 .h3 {
  /* width: 100%; */
padding-left: var(--padding);
padding-top: var(--small-padding);
padding-bottom: .56rem;

}


/* Specific styling for Residency ABOUT section */
#h3-1 {
  background-color: var(--about-h3-bg);
  color: var(--about-h3-color);
}

/* Specific styling for *Residency* EVENTS section */
#h3-2 {
  background-color: var(--events-h3-bg);
  color: var(--events-h3-color);
}

#h3-3 {
  background-color: var(--more-h3-bg);
  color: var(--more-h3-color);
}

.bg-light {
  background-color: var(--color-light);
}
.color-grey {
  color: var(--color-text-grey);
}

/* Navigation  */

header {
  /* position: fixed; */
  background-color: var(--header-bg, #f5f5f5); 
  color: var(--header-text, #000000); /* Default header text color */
  /* position: relative; */
  display: flex;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100vw;
  padding: 0 20px;
  justify-content: space-between;
  align-items: center;
  /* height: 8vh; */

}

header ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

header ul li {
  padding: 5px;
  margin-left: 10px;
  color: var(--nav-color, #000000); 
  /* color:lch(18% 12 282); */
  font-family: var(--font-family-mono);


}

header ul li:hover {
font-style: italic;
}

/* .logo {
  position: relative;
  align-items: center;
  cursor: pointer;
  mix-blend-mode: difference;

} */


/* .header a video {
  display: flex;
  position: relative;
  mix-blend-mode: lighten;
  height: auto;
    align-items: center;

  overflow: hidden;
  max-height: 50px;
    mix-blend-mode: difference;

} */
 /* .header a img {
  position: relative;
    align-items: center;
width: auto;
  overflow: hidden;
  max-height: 8vh;

    mix-blend-mode: difference;

} */
.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 100%;
  width: auto;
  /* max-height: 6vh; */
  display: block;
  mix-blend-mode: difference;
}
/* mobile toggle */
#menu-icon {
  margin: auto 0;
  display: none;
  cursor: pointer;
  padding-right: 1rem;
  font-family: var(--font-family-mono);
}

#menu-icon div {
  width: 35px;
  margin: 6px 0;
  color: var(--nav-color,  #201D60);
  /* transition: 0.4s */
}
.menu-text-2 {
  display: none;
  opacity: 0;
  scale: 125%;
  color: #201D60;
  z-index: 10;
}

.open .menu-text-1 {
  opacity: 0;
  /* font-size: 20px; */
}

.open .menu-text-2 {
  display: block;
  position: fixed;
  top: .5rem;
  right: 0;
  /* right: 1rem; */
  opacity: 100%;
  color: #201D60 !important;
}

.open .mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.open .mobile-menu li {
  margin-bottom: 1rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 0px;
  right: 0;
  height: auto;
  padding: 1rem 3rem 3rem 1rem;
  background-color: #EEE5F8;
}

li.home-button {
  text-decoration: none;
}

/* Nav menu universal styling */




/* QUOTE + Image background */
/* .quote{
  padding-bottom: var(--padding);
} */
.image-background {
  position: relative;
  padding: 1.5rem;
  /* width: 100%; */
  color: var(--quote-color);
  background-color: var(--image-bg, #ffffff); /* Default image background */
}

.image-background li {
  padding-bottom: 0; /*padding below residency image */
}

li img {
  padding-top: var(--padding);
  background-color: var(--image-bg); /* Default image background */

}
.page-title {
  position: relative;
  display: block;
  padding: var(--padding);
  background-color: var(--header-bg, #ffffff); 
  /* color: var(--header-text, #000000); */
}
.artist-name-1 {
  color: var(--h2-artist-name-1);
}

.artist-name-2 {
  color: var(--h2-artist-name-2);
}

.artist-name-3 {
  color: var(--h2-artist-name-3);
}
/* EVENT PAGES ONLY */
/* FOR EVENT ONLY ".page-title p" targets text*/
.event-title {
  padding-bottom: 1rem;
}
.event-wrapper p {
  color: var(--body-1-event-color);

}

.event-wrapper {
  position: relative;
  display: block;
  padding: 0 var(--padding) var(--padding) var(--padding);
  background-color: var(--header-bg, #ffffff); 
  color: var(--header-text, #000000);
}





.social {
  position: relative;
  display: flex;
 
  /* justify-content: space-between; */
  /* margin-left: auto; */
  align-items: end;
  /* padding: 0 .5rem; */
}
.social a {
  display: flex;
  /* padding-left: 1rem; */

}

.social svg {
  width: 25px;  /* Increased from default 16px */
  height: 25px; /* Increased from default 16px */
}
.section {
  padding: 3rem 0;
}

.grid {
  --columns: 4;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}


/* TEXT BLOCKS  */
.text {
  position: relative;
  line-height: 1.5em;
  padding: var(--padding);
  background-color: var(--text-bg, #ffffff); /* Default text background */
}

.text-2 {
  padding: var(--padding) var(--padding) 0 var(--padding);
  background-color: var(--text-2-bg, #ffffff); /* Default text background */
}

.text-3 {
  padding: var(--padding) var(--padding) 0 var(--padding);
  background-color: var(--text-3-bg, #ffffff); /* Default text background */
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
.text p,
.text ul,
.text ol {
  margin-bottom: 1rem;
}
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}


.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
.text figure {
  margin: 3rem 0;
}
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}
.text figure ul {
  line-height: 0;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}
.text figure ul li {
  list-style: none;
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  /* padding-top: .75rem; */
  margin-bottom: var(--padding);
  line-height: var(--line-height-body-2);
  color: var(--caption-color);
  font-family: var(--font-family-mono);
  font-size: var(--caption-font-size);
}

/* FOOTER */

.footer {
  /* position: fixed;
  bottom: 0; */
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  /* flex: 0 0 40vh;  */
  background: #f5f5f5;
  width: 100vw;
  /* padding: .5rem 1rem; */
  padding: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  line-height: 1.5em;
  font-family: var(--font-family-mono);
  font-size: var(--font-size-nav);
  color: black;
}

.footer div {
  display: inline-flex;
  align-items: center;
}

input[type=submit] {
  width: auto;
  background-color: white;
  font-family: var(--font-family-mono);
  
  color: black;
  padding: 3px 8px;
  /* margin: 8px 0; */
  border: solid .5px gray;
  /* border-radius: 3px; */
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: lch(69.4% 80 325);
  border: solid .5px lch(69.4% 80 325);
  color: lch(15% 45 296);
  /* color: white; */
}

input[type=search] {
  width: auto;
  background-color: white;
  font-family: var(--font-family-mono);
  color: black;
  padding: 3px 8px;
  margin: 8px 0;
  border: solid .5px gray;
  /* border-radius: 3px; */
  cursor: pointer;
}

/* .footer:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
} */

/* .footer h2 {
  font-weight: 600;
  margin-bottom: .75rem;
} */
/* .footer ul,
.footer p {
  color: var(--color-text-grey);
} */

.footer p {
  /* display: inline-block; */
  position: relative;
  max-width: 100%;
  padding-right: var(--padding);
}
.footer a:hover {
  color: var(--color-text);
}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}



.grid {
  grid-template-columns: repeat(12, 1fr);
}
.grid > .column {
  grid-column: span var(--columns);
}





/* .pagination {
  display: flex;
  padding-top: 6rem;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem;
}
.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
} */

/* EVENTS LANDING PAGE  */
.note-excerpt {
  line-height: 1.5em;
}
.note-excerpt header {
  margin-bottom: 1.5rem;
}
.note-excerpt figure {
  margin-bottom: .5rem;
}
/* .note-excerpt-title {
  font-weight: 600;
}
.note-excerpt-date {
  color: var(--color-text-grey);
} */





/* HOMEPAGE AND RESIDENCIES LANDING PAGE THEMES */

/*-------- THEME 1------- */

/* ---THEME 1A--- */

.event-column.theme1_A  {
  background-color: var(--theme1-navy);
}

.event-column.theme1_A h1 {
  color: var(--theme1-salmon);
}
.event-column.theme1_A h2 {
  color: var(--theme1-salmon);

}
.event-column.theme1_A h3 {
  color: var(--theme1-beige);

}
.event-column.theme1_A p {
  color: var(--theme1-cream); 

}

/* ---THEME 1B--- */

.event-column.theme1_B  {
  background-color: var(--theme1-purple); 

}

.event-column.theme1_B h1 {
color: var(--theme1-salmon);
}

.event-column.theme1_B h2 {
  color: var(--theme1-salmon);

}

.event-column.theme1_B h3 {
  color: var(--theme1-beige);

}

.event-column.theme1_B p {
color: var(--theme1-cream); 
}

/* ---THEME 1C--- */

.event-column.theme1_C  {
  background-color: var(--theme1-red); 

}

/* .event-column.theme1_C h1 {
  color: var(--theme1-cream); 
} */

.event-column.theme1_C h2 {
  color: var(--theme1-cream); 

}

.event-column.theme1_C h3 {
  color: var(--theme1-navy);  

}

.event-column.theme1_C p {
  color: var(--theme1-cream);  
}


/* ---THEME 1D--- */

.event-column.theme1_D  {
  background-color: var(--theme1-salmon);

}

.event-column.theme1_D h1 {
 color: var(--theme1-purple); 
}

.event-column.theme1_D h2 {
  color: var(--theme1-purple);

}

.event-column.theme1_D h3 {
  color: var(--theme1-beige);

}

.event-column.theme1_D p {
  color: var(--theme1-navy); 
}




/*-------- THEME 2 ------- */


/* ---THEME 2A--- */
.event-column.theme2_A  {
  background-color: var(--theme2-navy-dark); 

}



.event-column.theme2_A h2 {
  color: var(--theme2-navy-light);  

}

.event-column.theme2_A h3 {
  color: var(--theme2-pink);

}

.event-column.theme2_A p {
  color: var(--theme2-lilac); 
}

/* ---THEME 2B --- */
.event-column.theme2_B  {
  background-color: var(--theme2-navy-medium); 

}


.event-column.theme2_B h2 {
  color: var(--theme2-pink);  

}

.event-column.theme2_B h3 {
  color: var(--theme2-pink-light);

}

.event-column.theme2_B p {
  color: var(--theme2-lilac); 
}

/* ---THEME 2C--- */
.event-column.theme2_C  {
  background-color: var(--theme2-pink-light); 

}


.event-column.theme2_C h2 {
  color: var(--theme2-red);  

}

.event-column.theme2_C h3 {
  color: var(--theme2-navy-medium);

}

.event-column.theme2_C p {
  color: var(--theme2-navy-dark); 
}

/* ---THEME 2D--- */
.event-column.theme2_D  {
  background-color: var(--theme2-lilac); 
}

.event-column.theme2_D  h2 {
  color: var(--theme2-red);  
}

.event-column.theme2_D  h3 {
  color: var(--theme2-red);
}

.event-column.theme2_D p {
  color: var(--theme2-navy-dark); 
}

/*-------- THEME 3 ------- */

/* ---THEME 3A---*/
.event-column.theme3_A  {
  background-color: var(--theme3-navy); 
}


.event-column.theme3_A   h2 {
  color: var(--theme3-coral);  
}

.event-column.theme3_A  h3 {
  color: var(--theme3-aqua) ;
}

.event-column.theme3_A  p {
  color: var(--theme3-cream); 
}

/* ---THEME 3B--- */
.event-column.theme3_B  {
  background-color: var(--theme3-olive); 
}

.event-column.theme3_B h2 {
  color: var(--theme3-coral);  
}

.event-column.theme3_B h3 {
  color: var(--theme3-aqua);
}

.event-column.theme3_B p {
  color: var(--theme3-cream); 
}

/* ---THEME 3C--- */
.event-column.theme3_C  {
  background-color: var(--theme3-indigo); 
}

.event-column.theme3_C h2 {
  color: var(--theme3-coral);  
}

.event-column.theme3_C h3 {
  color: var(--theme3-coral);
}

.event-column.theme3_C p {
  color: var(--theme3-cream); 
}

/* ---THEME 3D--- */
.event-column.theme3_D  {
  background-color: var(--theme3-aqua); 
}


.event-column.theme3_D h2 {
  color: var(--theme3-navy);  
}

.event-column.theme3_D h3 {
  color: var(--theme3-indigo);
}

.event-column.theme3_D p {
  color: var(--theme3-navy); 
}

/*-------- THEME 4 ------- */
/* ---THEME 4A--- */
.event-column.theme4_A  {
  background-color: var(--theme4-dark-teal); 
}


.event-column.theme4_A h2 {
  color: var(--theme4-gold);  

}

.event-column.theme4_A h3 {
  color: var(--theme4-light-aqua);
}

.event-column.theme4_A p {
  color: var(--theme4-cream); 
}

/* ---THEME 4B--- */
.event-column.theme4_B  {
  background-color: var(--theme4-teal); 
}


.event-column.theme4_B h2 {
  color: var(--theme4-gold);  
}

.event-column.theme4_B h3 {
  color: var(--theme4-light-aqua);
}

.event-column.theme4_B p {
  color: var(--theme4-cream); 
}


/* ---THEME 4C--- */
.event-column.theme4_C  {
  background-color: var(--theme4-gold); 
}


.event-column.theme4_C h2 {
  color: var(--theme4-teal);  

}

.event-column.theme4_C h3 {
  color: var(--theme4-dark-olive);

}

.event-column.theme4_C p {
  color: var(--theme4-dark-teal); 
}

/* ---THEME 4D--- */
.event-column.theme4_D {
  background-color: var(--theme4-cream); 
}


.event-column.theme4_D h2 {
  color: var(--theme4-teal);  
}

.event-column.theme4_D h3 {
  color: var(--theme4-cyan) ;

}

.event-column.theme4_D p {
  color: var(--theme4-dark-teal); 
}

/*-------- THEME 5 ------- */
/* ---THEME 5A--- */
.event-column.theme5_A  {
  background-color: var(--theme5-navy-dark); 

}


.event-column.theme5_A h2 {
  color: var(--theme5-bright-pink);  
}

.event-column.theme5_A h3 {
  color: var(--theme5-light-pink) ;
}

.event-column.theme5_A p {
  color: var(--theme5-gray-light); 
}

/* ---THEME 5B--- */
.event-column.theme5_B  {
  background-color: var(--theme5-blue); 
}


.event-column.theme5_B h2 {
  color: var(--theme5-bright-pink);  

}

.event-column.theme5_B h3 {
  color: var(--theme5-light-pink) ;
}

.event-column.theme5_B p {
  color: var(--theme5-gray-light); 
}

/* ---THEME 5C--- */
.event-column.theme5_C  {
  background-color: var(--theme5-lavender); 

}


.event-column.theme5_C h2 {
  color: var(--theme5-magenta);  
}

.event-column.theme5_C h3 {
  color: var(--theme5-blue) ;
}

.event-column.theme5_C p {
  color: var(--theme5-navy-dark); 
}

/* ---THEME 5D--- */
.event-column.theme5_D  {
  background-color: var(--theme5-gray-light); 
}


.event-column.theme5_D h2 {
  color: var(--theme5-magenta);  
}

.event-column.theme5_D h3 {
  color: var(--theme5-navy-dark) ;
}

.event-column.theme5_D p {
  color: var(--theme5-navy-dark); 
}

@media only screen and (max-width: 59rem) {
  header nav {
    display: none;
  }

  #menu-icon {
    display: block;
  }
  /* Mobile Menu Color */
  header ul li {
    color:lch(18% 12 282);
    font-family: var(--font-family-mono);
  }

header {
  height: 10vh;
}
 /* .header a img {
  display: flex;
  position: relative;
    align-items: center;
width: auto;
  overflow: hidden;
  max-height: 7vh;

    mix-blend-mode: difference;

} */
  
.footer {
    padding: .5rem 1rem;

}
}




@media screen and (min-width: 45rem) {
 /* html, body {
  overflow: hidden; 

 } */

 .header {
  height: 12.25vh;
 }

/* .header a img {
  display: flex;
  position: relative;
  height: auto;
    align-items: center;
width: auto;
  overflow: hidden;
  max-height: 60px;
    mix-blend-mode: difference;

} */
  :root {
   
    --caption-font-size: 16px;


  }

  h1 {
    font-size: 1rem;

  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.35rem;
  }

  body {
    font-size: 1.25rem;
  }

  
  /* HEADER */

/* DESKTOP NAVIGATION */
/* #menu-icon {
  display: none;
} */
header {
  /* position: fixed; */
  background-color: var(--header-bg, #f5f5f5); 
  color: var(--header-text, #000000); /* Default header text color */
  /* position: relative; */
  display: flex;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100vw;
  /* padding: .7rem 1rem; */
  justify-content: space-between;
  align-items: center;
/* padding: 1rem 1rem; */
}


nav .menu li.home-button a{
  text-decoration: none;
}

nav.menu button a {
  background-color: none;
}

.menu a {
  text-decoration: none;
  font-family: 'Menlo Regular';
  font-size: var(--font-size-nav);
}
.menu a[aria-current] {
  text-decoration: 1.5px solid underline;
}
/* END nav menu styling */


  /* MAIN CONTENT (expands dynamically) */
  .main-content {
    display: flex;
    position: relative;
    padding: 0;
    flex-grow: 1;
    height: 85vh;
    overflow: hidden; 
  }
  

/* IMAGE STYLES */
.event-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-grow: 1; /* ✅ Ensures images take up remaining space */
}
  
  
.quote {
  max-width: 50vw;
}
.text p {
  max-width: 50vw; 

}


/* EVENT PAGE */
/* Event page image  */
.event-wrapper img {
  max-width: 50vw;
}
.event-wrapper p {
  max-width: 50vw;

}
/* Event page image  */
.page-title h2 {
  max-width: 50vw;
}

  /* ----HOMEPAGE FLEXIBLE COLUMNS---- */
  .home-columns {
    display: flex;
    flex-wrap: nowrap; 
    align-items: stretch;
    justify-content: space-between;
    flex: 1; /* Takes up all available space */
    /* gap: 10px; */
    /* padding: 20px; */
  }
  
 .event-column {
  flex: 1 1 auto; 
  min-width: 0; 
  display: flex;
  flex-direction: column;
  overflow-y: auto; 
  /* margin-bottom: 1rem; */
  transition: all 0.3s ease-in-out;
}

/* MAKE IMAGES SCALE WITHIN COLUMN */
.event-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
  flex-grow: 1; 
}

/* WHEN FEWER COLUMNS EXIST, THEY TAKE UP MORE SPACE */
.home-columns.columns-1 .event-column { flex-grow: 1; max-width: 50%; }
.home-columns.columns-2 .event-column { flex-grow: 1; max-width: 50%; }
.home-columns.columns-3 .event-column { flex-grow: 1; max-width: 33.33%; }
.home-columns.columns-4 .event-column { flex-grow: 1; max-width: 25%; }
.home-columns.columns-5 .event-column { flex-grow: 1; max-width: 20%; }
.home-columns.columns-6 .event-column { flex-grow: 1; max-width: 16.66%; }



}

/* @media screen and (min-width: 100rem) {

.header a img {
  display: flex;
  position: relative;
  height: auto;
    align-items: center;
width: auto;
  overflow: hidden;
  max-height: 7vh;
    mix-blend-mode: difference;

}

} */