/* ==========================================================================
   Rodica Kalman - WordPress Theme CSS
   Based on Weebly Edison Theme
   Self-contained - no Weebly CDN dependencies
   ========================================================================== */

/* ==========================================================================
   1. GOOGLE FONTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700&family=Oswald:wght@700&family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Actor&display=swap');

/* ==========================================================================
   2. CSS RESET & BASE (from Edison theme)
   ========================================================================== */

ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, div.paragraph, blockquote, fieldset, input {
  margin: 0;
  padding: 0;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, fieldset, input {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
textarea {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-shadow: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1px solid #777777;
}

textarea {
  resize: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}

/* ==========================================================================
   3. BASE TYPOGRAPHY & BODY
   ========================================================================== */

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  font-family: 'Actor', sans-serif;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: #212121;
  color: #666666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #666666;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}

a:hover {
  color: #262626;
}

a img {
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  color: #3f3f3f;
}

h2 {
  font-size: 20px;
}

div.paragraph, .paragraph {
  line-height: 1.7;
  margin-bottom: 10px;
}

p, .paragraph {
  line-height: 1.7;
  margin-bottom: 10px;
}

blockquote {
  padding-left: 20px;
  margin: 10px 0 10px 0;
  font-style: italic;
  border-left: 1px solid #ebebeb;
}

/* Paragraph lists */
div.paragraph ul,
div.paragraph ol {
  padding-left: 3em !important;
  margin: 5px 0 !important;
}

div.paragraph li {
  padding-left: 5px !important;
  margin: 3px 0 0 !important;
}

div.paragraph ul,
div.paragraph ul li {
  list-style: disc outside !important;
}

div.paragraph ol,
div.paragraph ol li {
  list-style: decimal outside !important;
}

/* Placeholder styles */
::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  font-family: 'Roboto Mono', monospace;
  color: #6b6b6b;
  opacity: 0.5;
}

/* ==========================================================================
   4. LAYOUT: WRAPPER, CONTAINER, CONTENT-WRAP
   ========================================================================== */

.wrapper {
  background: #ffffff;
  box-sizing: border-box;
}

.container {
  max-width: 1100px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.content-wrap {
  background: #ffffff;
}

.content-wrap .container {
  padding: 20px 15px;
  box-sizing: border-box;
}

/* ==========================================================================
   5. HEADER - EDISON HEADER
   ========================================================================== */

.edison-header {
  -webkit-transition: padding 0.3s ease;
  -o-transition: padding 0.3s ease;
  transition: padding 0.3s ease;
  position: relative;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  background: #ffffff;
  padding: 19px 0;
}

.edison-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.35s ease;
}

.edison-header.is-fixed.is-sliding-out {
  transform: translateY(-100%);
}

.edison-header .container {
  height: 100%;
}

.edison-header .header-inner-wrap {
  -webkit-transition: opacity 0.6s ease-in 0.3s;
  -o-transition: opacity 0.6s ease-in 0.3s;
  transition: opacity 0.6s ease-in 0.3s;
  height: 100%;
  opacity: 1; /* Changed from 0 - we always show content in WP */
}

/* Sticky header states */
body.header-sticky,
body.header-sticky-up {
  padding-top: 50px;
}

body.header-compressed .edison-header {
  padding-top: 4px;
  padding-bottom: 4px;
}

body.header-sticky .edison-header {
  position: fixed;
}

body.header-sticky-up .edison-header {
  position: fixed;
}

body.header-sticky-up .edison-header.is-sticky {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  -webkit-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
}

body.header-sticky-up .edison-header.is-visible {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

body.nav-open.header-sticky-up .edison-header,
body.mobile-nav-open .edison-header {
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

body.reveal-content .edison-header .header-inner-wrap {
  opacity: 1;
}

/* Desktop header layout */
@media only screen and (min-width: 1025px) {
  .edison-header .header-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .edison-header .header-inner-wrap .logo,
  .edison-header .header-inner-wrap .nav-wrap,
  .edison-header .header-inner-wrap .site-utils {
    display: block;
    vertical-align: middle;
  }
}

/* Tablet/mobile header layout */
@media only screen and (max-width: 1024px), (hover: none) {
  .edison-header .header-inner-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

/* ==========================================================================
   6. LOGO
   ========================================================================== */

.edison-header .wsite-logo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-right: 15px;
}

.logo-hidden .edison-header .wsite-logo {
  display: none;
}

.edison-header .wsite-logo img {
  display: block;
  overflow: hidden;
  max-width: 100%;
  max-height: 46px;
}

@media only screen and (max-width: 1024px), (hover: none) {
  .edison-header .wsite-logo img {
    padding: 5px 0;
  }
}

.edison-header .wsite-logo #wsite-title {
  display: block;
  max-width: 500px;
}

.edison-header .wsite-logo a,
.edison-header .wsite-logo a:hover {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  display: inline-block;
  max-width: 500px;
  color: #16161d;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: normal;
}

#wsite-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #16161d;
  font-size: 20px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: normal;
}

/* ==========================================================================
   7. NAVIGATION - DESKTOP
   ========================================================================== */

.edison-header .nav-wrap {
  overflow: hidden;
  margin-left: auto;
  padding: 10px 0;
  background: #ffffff;
  text-align: right;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body.utils-hidden.logo-hidden .edison-header .nav-wrap {
  max-width: 100%;
  flex: 1;
}

.edison-header .site-utils {
  white-space: nowrap;
  text-align: right;
}

@media only screen and (min-width: 1025px) {
  body.utils-hidden .edison-header .site-utils {
    display: none;
  }
}

/* Menu default styling */
.wsite-menu-default {
  font-family: 'Karla', sans-serif;
  text-align: right;
  font-size: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wsite-menu-item,
.wsite-menu-subitem {
  -webkit-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
  display: block;
  color: #a4a4a4;
  text-decoration: none;
}

.wsite-menu-item:hover,
#active > .wsite-menu-item,
.wsite-nav-current .wsite-menu-item,
.wsite-menu-subitem:hover,
#active > .wsite-menu-subitem,
.wsite-nav-current .wsite-menu-subitem {
  color: #000000;
}

/* Current/active menu item */
.current-menu-item > a.wsite-menu-item,
.current_page_item > a.wsite-menu-item,
li#active > a.wsite-menu-item {
  color: #000000;
}

/* Submenu indicators */
.has-submenu > .wsite-menu-item::after,
.has-submenu > .wsite-menu-subitem::after {
  display: inline-block;
  width: 9px;
  content: "+";
}

.dropdown-open > .wsite-menu-item,
.dropdown-open > .wsite-menu-subitem {
  color: #000000;
}

.dropdown-open > .wsite-menu-item::after,
.dropdown-open > .wsite-menu-subitem::after,
.submenu-open > .wsite-menu-item::after,
.submenu-open > .wsite-menu-subitem::after {
  content: "-";
}

.submenu-open > .wsite-menu-item,
.submenu-open > .wsite-menu-subitem {
  color: #000000;
}

/* Desktop nav list items */
.desktop-nav li {
  display: inline-block;
  padding: 0 5px;
  list-style: none;
}

.desktop-nav a {
  cursor: pointer;
}

.desktop-nav .wsite-menu-wrap {
  position: absolute;
  width: 100%;
  left: 0;
  background: #ffffff;
}

.desktop-nav .wsite-menu {
  font-family: 'Karla', sans-serif;
  max-width: 1100px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
  list-style: none;
}

.desktop-nav .wsite-menu-title {
  display: inline-block;
}

.desktop-nav .wsite-menu-subitem-wrap {
  display: inline-block;
  padding: 12px 5px 18px;
  list-style: none;
}

.desktop-nav .wsite-menu-item {
  padding: 5px;
}

.desktop-nav .wsite-menu-subitem {
  padding: 10px 5px;
}

.desktop-nav .icon-caret {
  display: none;
}

/* Dropdown/flyout menu */
.wsite-menu-wrap {
  display: none;
}

.wsite-menu-wrap.animating,
.wsite-menu-wrap.visible {
  display: block !important;
}

.wsite-menu-wrap.animating-in,
.wsite-menu-wrap.animating-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wsite-menu-wrap.visible {
  opacity: 1;
}

.wsite-menu-item-wrap {
  list-style: none;
}

.wsite-menu-subitem-wrap {
  list-style: none;
}

.dummy-menu {
  display: none;
}

/* Multiline header alignment */
.header-multiline .desktop-nav .wsite-menu-default li:first-child {
  padding-left: 0;
}

.header-multiline .desktop-nav .wsite-menu-default li:first-child a {
  padding-left: 0;
}

.header-multiline .desktop-nav .wsite-menu-default li:last-child {
  padding-right: 10px;
}

.header-multiline .desktop-nav .wsite-menu-default li:last-child a {
  padding-right: 10px;
}

body.utils-hidden:not(.logo-hidden) .desktop-nav .wsite-menu-default {
  text-align: right;
}

.logo-hidden .desktop-nav .wsite-menu {
  text-align: left;
}

body.utils-hidden:not(.logo-hidden) .desktop-nav .wsite-menu {
  text-align: right;
}

/* ==========================================================================
   8. NAVIGATION - MOBILE
   ========================================================================== */

.mobile-nav {
  position: fixed;
  top: 50px;
  left: 0;
  z-index: 9;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-height: calc(100% - 50px);
  padding: 30px 0;
  background-color: #ffffff;
}

@media only screen and (min-width: 1025px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav.animating,
.mobile-nav.visible,
.mobile-nav.is-open {
  display: block;
}

.mobile-nav.animating-in,
.mobile-nav.animating-out {
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.visible,
.mobile-nav.is-open {
  opacity: 1;
}

.mobile-nav .wsite-menu-item {
  padding: 15px;
  color: #606060;
  text-align: center;
}

.mobile-nav .wsite-menu-subitem {
  padding: 8px;
  text-align: center;
}

.mobile-nav .search-toggle {
  color: #606060;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav li {
  list-style: none;
  text-align: center;
}

/* ==========================================================================
   9. HAMBURGER MENU BUTTON
   ========================================================================== */

.hamburger {
  height: 15px;
  padding: 0;
  margin-left: 20px;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

.hamburger i {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #262626;
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
}

.nav-open .hamburger i,
.mobile-nav-open .hamburger i {
  background-color: transparent;
}

.hamburger i::before,
.hamburger i::after {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #262626;
  position: absolute;
  content: "";
  -webkit-transition: top 0.2s ease-out 0.2s, transform 0.2s ease-out;
  -o-transition: top 0.2s ease-out 0.2s, transform 0.2s ease-out;
  transition: top 0.2s ease-out 0.2s, transform 0.2s ease-out;
}

.nav-open .hamburger i::before,
.nav-open .hamburger i::after,
.mobile-nav-open .hamburger i::before,
.mobile-nav-open .hamburger i::after {
  -webkit-transition: top 0.2s ease-out, transform 0.2s ease-out 0.2s;
  -o-transition: top 0.2s ease-out, transform 0.2s ease-out 0.2s;
  transition: top 0.2s ease-out, transform 0.2s ease-out 0.2s;
  top: 0;
}

.hamburger i::before {
  top: -200%;
}

.nav-open .hamburger i::before,
.mobile-nav-open .hamburger i::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger i::after {
  top: 200%;
}

.nav-open .hamburger i::after,
.mobile-nav-open .hamburger i::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger-style {
  display: block;
  width: 20px;
  height: 3px;
  background-color: #262626;
}

@media only screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}

/* ==========================================================================
   10. SEARCH
   ========================================================================== */

.search-toggle {
  font-family: 'Karla', sans-serif;
  display: none;
  padding: 5px 0;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
}

.has-site-search .search-toggle {
  display: inline-block;
}

.wsite-search-wrap {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .wsite-search-wrap {
    display: inline-block;
  }
}

.wsite-search {
  top: 0 !important;
  display: none;
  width: 100%;
  padding: 12px 0;
  background-color: #ffffff;
}

@media only screen and (min-width: 1025px) {
  .wsite-search {
    position: absolute;
    top: calc(100% - 11px) !important;
    left: 0;
    padding: 0 0 22px;
  }
}

.wsite-search.animating,
.wsite-search.visible {
  display: block;
}

.wsite-search.animating-in,
.wsite-search.animating-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wsite-search.visible {
  opacity: 1;
}

.wsite-search-input {
  font-family: 'Roboto Mono', monospace;
  background: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #666666;
  margin: -2px 0;
  box-sizing: border-box;
}

@media only screen and (max-width: 1024px), (hover: none) {
  .wsite-search-input {
    padding: 13px 20px !important;
    width: 300px;
  }
}

@media only screen and (min-width: 1025px) {
  .wsite-search-input {
    font-family: 'Karla', sans-serif;
    padding-right: 0 !important;
    padding-left: 0 !important;
    border: 0;
    text-align: right;
    font-size: 16px;
  }
}

/* ==========================================================================
   11. BANNER / HERO SECTION
   ========================================================================== */

.wsite-background,
.wsite-header-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.wsite-header-section {
  height: 400px;
}

@media only screen and (min-width: 768px) {
  .wsite-header-section {
    height: 600px;
  }
}

.banner-wrap {
  width: 100%;
  max-width: 1100px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

.banner-wrap .wsite-header-section {
  text-align: left;
  vertical-align: bottom;
}

.banner-wrap .wsite-header-section .container {
  padding: 60px 45px;
}

@media only screen and (min-width: 768px) {
  .banner-wrap .wsite-header-section .container {
    padding: 60px 90px;
  }
}

.banner-wrap .wsite-header-section .wsite-content-title {
  margin-bottom: 15px;
  font-size: 6.5vmin;
  line-height: 1.1;
}

@media only screen and (min-width: 768px) {
  .banner-wrap .wsite-header-section .wsite-content-title {
    font-size: 28px;
  }
}

.banner-wrap .wsite-header-section .paragraph {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
  color: #3f3f3f;
}

/* Banner overlay */
body.banner-overlay-on .wsite-header-section:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  height: inherit;
  background-color: #ffffff;
  opacity: 0.2;
  content: "";
}

body.banner-overlay-on .wsite-section-content {
  position: relative;
}

.wsite-section-bg-color:before {
  display: none;
}

/* Banner with full-width background image */
.banner-wrap .wsite-section-bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Banner section content vertical alignment */
.wsite-header-section .wsite-section-content {
  display: flex;
  align-items: flex-start;
  min-height: 100%;
  height: inherit;
}

.wsite-header-section .wsite-section-content .container {
  width: 100%;
}

/* ==========================================================================
   12. SECTIONS
   ========================================================================== */

.wsite-section-wrap {
  position: relative;
}

.wsite-section {
  position: relative;
}

.wsite-section-bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.wsite-section-content {
  position: relative;
}

.wsite-section-elements {
  position: relative;
}

.wsite-body-section {
  background: #ffffff;
}

.no-header-page .wsite-section-wrap:first-child .container {
  padding-top: 20px;
}

/* ==========================================================================
   13. CONTENT TITLE & HEADLINES
   ========================================================================== */

.wsite-content-title {
  font-family: 'Actor', sans-serif;
  font-weight: 400;
  color: #3f3f3f;
  line-height: 1.3;
  margin-bottom: 10px;
}

.wsite-headline,
.wsite-header-section .wsite-content-title {
  font-family: 'Actor', sans-serif !important;
}

.wsite-headline-paragraph,
.wsite-header-section .paragraph {
  font-family: 'Roboto Mono', monospace;
}

/* Font size overrides matching Weebly inline font sizes */
.wsite-content-title font[size="7"] {
  font-size: 2.5em;
  line-height: 1.2;
}

.wsite-content-title font[size="6"] {
  font-size: 2em;
  line-height: 1.2;
}

.wsite-content-title font[size="5"] {
  font-size: 1.5em;
  line-height: 1.4;
}

.wsite-content-title font[size="4"] {
  font-size: 1.25em;
  line-height: 1.4;
}

.wsite-content-title font[size="3"] {
  font-size: 1em;
  line-height: 1.5;
}

/* Heading levels for WP content */
#wsite-content h2,
.wsite-elements h2 {
  font-family: 'Actor', sans-serif !important;
}

/* ==========================================================================
   14. IMAGES
   ========================================================================== */

.wsite-image {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #666666;
}

.wsite-image div {
  font-size: inherit !important;
}

.wsite-image img {
  margin-bottom: 10px;
  max-width: 100%;
  height: auto;
}

.wsite-image-border-none img {
  border: none;
}

.wsite-image-border-thin img {
  border: 1px solid #dddddd;
}

.wsite-image-border-thick img {
  border: 3px solid #dddddd;
}

.wsite-caption {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #666666;
}

.caption-style {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #666666;
}

/* ==========================================================================
   15. BUTTONS
   ========================================================================== */

.wsite-button {
  position: relative;
  font-family: 'Karla', sans-serif;
  background-color: #262626;
  font-size: 16px !important;
  overflow: hidden;
  height: auto;
  padding: 0.9375em 2.5625em;
  background-image: none !important;
  font-weight: 700 !important;
  text-align: center;
  line-height: 1;
  box-sizing: border-box;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 0;
}

.wsite-button .wsite-button-inner {
  font-family: 'Karla', sans-serif;
  color: #ffffff;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: transform 100ms ease-out 100ms;
  transition: transform 100ms ease-out 100ms;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: inline-block;
  height: auto;
  padding: 0;
  float: none;
  background-image: none !important;
  line-height: normal;
  white-space: normal;
}

/* Arrow animation on hover */
.wsite-button .wsite-button-inner::after {
  content: "\2192"; /* Right arrow as fallback for SVG */
  -webkit-transition: transform 100ms ease-out;
  transition: transform 100ms ease-out;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  position: absolute;
  left: calc(100% + 10px);
  top: calc(50% - 10px);
  display: inline-block;
  color: inherit;
  font-size: 18px;
}

.wsite-button:hover .wsite-button-inner {
  -webkit-transform: translate3d(-0.625em, 0, 0);
  transform: translate3d(-0.625em, 0, 0);
  -webkit-transition: transform 100ms ease-out;
  transition: transform 100ms ease-out;
}

.wsite-button:hover .wsite-button-inner::after {
  -webkit-transition: transform 100ms ease-out 100ms;
  transition: transform 100ms ease-out 100ms;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Button variants */
.wsite-button-large {
  font-size: 18px !important;
}

.wsite-button-small {
  font-size: 16px !important;
}

.wsite-button-normal {
  background-color: #262626;
}

.wsite-button-normal .wsite-button-inner {
  color: #ffffff;
}

.wsite-button-highlight {
  background-color: #ffffff;
  box-shadow: 0 0 0 2px #262626 inset;
}

.wsite-button-highlight .wsite-button-inner {
  color: #262626;
}

.wsite-button-highlight .wsite-button-inner::after {
  color: #262626;
}

.wsite-button-highlight:hover .wsite-button-inner {
  color: #262626;
}

/* ==========================================================================
   16. MULTICOL (Multi-column layouts)
   ========================================================================== */

.wsite-multicol {
  width: 100%;
}

.wsite-multicol-table-wrap {
  width: 100%;
}

.wsite-multicol-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.wsite-multicol-col {
  vertical-align: top;
  box-sizing: border-box;
}

.wsite-multicol-tbody {
  width: 100%;
}

.wsite-multicol-tr {
  width: 100%;
}

/* ==========================================================================
   17. COLORED BOX OVERLAY (Hero banner overlay)
   ========================================================================== */

.colored-box {
  position: relative;
}

.colored-box-content {
  clear: both;
  float: left;
  width: 100%;
  box-sizing: border-box;
  background-color: rgba(42, 42, 42, 0.5);
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}

/* Specific colored box variants used on this site */
.colored-box-content[style*="background-color: #3f3f3f"],
.colored-box-dark {
  background-color: #3f3f3f;
}

/* Ensure text inside colored boxes is readable */
.colored-box-content .wsite-content-title,
.colored-box-content .wsite-content-title font,
.colored-box-content h2,
.colored-box-content h2 font {
  color: #ffffff;
}

.colored-box-content .paragraph,
.colored-box-content p {
  color: #cccccc;
}

.colored-box-content a {
  color: #ffffff;
}

.colored-box-content a:hover {
  color: #dddddd;
  opacity: 0.85;
}

/* ==========================================================================
   18. STYLED HORIZONTAL RULE
   ========================================================================== */

.styled-hr,
hr.styled-hr {
  border: none;
  border-top: 1px solid #ebebeb;
  height: 0;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   19. SPACER
   ========================================================================== */

.wsite-spacer {
  display: block;
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.footer-wrap {
  background-color: #ffffff;
}

.footer-wrap .wsite-footer,
.footer-wrap .footer {
  font-family: 'Karla', sans-serif;
  padding: 58px 0;
  color: #ffffff;
}

.footer-wrap h2 {
  margin-bottom: 0.888em;
  font-size: 18px;
  line-height: 1;
  color: #ffffff;
}

.footer-wrap div.paragraph,
.footer-wrap .paragraph {
  font-size: 16px;
}

.footer-wrap p,
.footer-wrap .paragraph {
  font-size: 16px;
  color: #ffffff;
}

.footer-wrap a {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: #ffffff;
}

.footer-wrap a:hover {
  opacity: 0.75;
  color: #ffffff;
}

.footer-wrap .wsite-form-label {
  color: #ffffff;
}

.footer-wrap .wsite-social .wsite-social-item {
  color: #ffffff;
}

/* ==========================================================================
   21. FORMS
   ========================================================================== */

.wsite-form-input-container {
  margin-bottom: 0;
}

.wsite-form-radio-container {
  margin-bottom: 10px;
  font-size: 14px;
}

.wsite-form-radio-container input {
  margin-right: 10px;
}

.wsite-form-radio-container label {
  position: relative;
  top: 2px;
}

.wsite-form-label {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  display: inline-block;
  padding: 10px 0;
  line-height: normal;
}

.wsite-form-sublabel {
  display: none;
}

.wsite-form-input,
.wsite-search-element-input {
  font-family: 'Roboto Mono', monospace;
  margin-bottom: 10px;
  padding: 13px 20px !important;
  background: transparent;
  color: #6b6b6b;
  border: 1px solid #dddddd;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  -webkit-transition: border-color 300ms ease;
  -o-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
  width: 100%;
  box-sizing: border-box;
}

.wsite-form-input:focus,
.wsite-form-input--focus,
.wsite-search-element-input:focus {
  border: 1px solid #000000;
}

.text-style-label {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
}

/* Form checkboxes and radios */
.wsite-form-field input[type="radio"],
.wsite-form-field input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #dddddd !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.wsite-form-field input[type="radio"] {
  border-radius: 8px;
}

.wsite-form-field input[type="checkbox"] {
  background-color: #ffffff;
  border-radius: 0;
}

.wsite-form-field input[type="radio"]:after {
  display: block;
  border-radius: 8px;
  box-sizing: border-box;
  content: "";
}

.wsite-form-field input[type="radio"]:checked:after {
  background: #262626;
  border: 2px solid #ffffff;
  width: 14px;
  height: 14px;
}

.wsite-form-field input[type="checkbox"]:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid #262626;
  border-width: 0 2px 2px 0;
}

.wsite-form-field input[type="checkbox"]:checked:after {
  display: block;
  content: " ";
}

/* Form select */
.form-select,
.wsite-form-field select {
  font-family: 'Roboto Mono', monospace;
  height: 45px;
  padding: 13px 20px;
  color: #6b6b6b;
  border: 1px solid #dddddd;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  box-sizing: border-box;
}

.form-select:focus,
.wsite-form-field select:focus {
  border: 1px solid #000000;
}

.form-required {
  color: #6b6b6b;
}

/* ==========================================================================
   22. IMAGE GALLERY
   ========================================================================== */

.imageGallery {
  overflow: hidden;
  line-height: 0;
  padding: 0;
  margin: 0;
}

.imageGallery::after {
  content: "";
  display: table;
  clear: both;
}

/* Gallery image holders */
.galleryImageHolder {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.galleryInnerImageHolder {
  position: relative;
  width: 100%;
  height: 100%;
}

.galleryInnerImageHolder a {
  display: block;
  width: 100%;
  height: 100%;
}

.galleryImage {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.galleryImage:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

/* Gallery caption overlay */
.imageGallery .galleryCaptionHolder {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.imageGallery .galleryCaptionHolder:hover .galleryCaptionHolderInnerBg {
  opacity: 0.7;
}

.imageGallery .galleryCaptionHolderInner {
  height: 100%;
}

.imageGallery .galleryCaptionHolderInnerBg {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
  opacity: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.imageGallery .galleryCaptionInnerTextHolder {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.imageGallery .fullImageGalleryCaption .galleryCaptionInnerTextHolder {
  position: relative;
}

.imageGallery .galleryCaptionInnerText {
  color: #ffffff;
  letter-spacing: normal;
  text-shadow: none;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

/* Gallery grid - WordPress compatible grid layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media only screen and (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media only screen and (min-width: 1025px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

/* WordPress gallery blocks */
.wp-block-gallery {
  display: grid;
  gap: 10px;
}

.wp-block-gallery.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.wp-block-gallery.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wp-block-gallery.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.wp-block-gallery .wp-block-image {
  margin: 0;
}

.wp-block-gallery .wp-block-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Masonry-style gallery */
.gallery-masonry {
  column-count: 2;
  column-gap: 10px;
}

@media only screen and (min-width: 768px) {
  .gallery-masonry {
    column-count: 3;
    column-gap: 15px;
  }
}

@media only screen and (min-width: 1025px) {
  .gallery-masonry {
    column-count: 4;
    column-gap: 20px;
  }
}

.gallery-masonry .gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  overflow: hidden;
}

.gallery-masonry .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-masonry .gallery-item:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   23. FANCYBOX / LIGHTBOX
   ========================================================================== */

/* Fancybox overlay */
.fancybox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99990;
  background: rgba(0, 0, 0, 0.85);
}

.fancybox-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99991;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fancybox-skin {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
}

.fancybox-outer {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-inner img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.fancybox-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #666666;
  padding: 10px;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  background-color: #fff;
}

/* Fancybox navigation arrows and close button */
.fancybox-close,
.fancybox-next span,
.fancybox-prev span {
  background: none !important;
  width: auto;
  height: auto;
  text-decoration: none;
  cursor: pointer;
}

.fancybox-close:before,
.fancybox-next span:before,
.fancybox-prev span:before {
  color: #ffffff !important;
  font-size: 50px;
  font-weight: normal;
  line-height: 0.5em;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.fancybox-close:hover:before,
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before {
  color: #b9b9b9 !important;
}

.fancybox-prev span:before {
  content: '\3008';
}

.fancybox-next span:before {
  content: '\3009';
}

.fancybox-close {
  top: 20px;
  right: 20px;
  position: fixed;
  z-index: 99999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fancybox-close:before {
  content: '\00D7';
}

.fancybox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99998;
  cursor: pointer;
  padding: 20px;
}

.fancybox-prev {
  left: 10px;
}

.fancybox-next {
  right: 10px;
}

/* WordPress lightbox compatibility */
.wp-lightbox-overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}

.wp-lightbox-container img {
  cursor: pointer;
}

/* Custom lightbox for WP theme */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99990;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
  line-height: 1;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #b9b9b9;
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 50px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 20px;
  z-index: 99999;
  transition: color 0.3s ease;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #b9b9b9;
}

.lightbox-caption {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  margin-top: 5px;
}

/* ==========================================================================
   24. SLIDESHOW
   ========================================================================== */

.gallery-slideshow,
.wsite-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000000;
}

.wsite-slideshow-slide {
  position: relative;
  width: 100%;
}

.wsite-slideshow-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* Slideshow navigation */
.wsite-slideshow .wsite-slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: #ffffff;
  font-size: 40px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  transition: background 0.3s ease;
}

.wsite-slideshow .wsite-slideshow-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}

.wsite-slideshow .wsite-slideshow-arrow-prev {
  left: 0;
}

.wsite-slideshow .wsite-slideshow-arrow-next {
  right: 0;
}

/* Slideshow caption */
.wslide-caption-text {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}

.wsite-slideshow-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  box-sizing: border-box;
}

/* Slideshow dots/indicators */
.wsite-slideshow-dots {
  text-align: center;
  padding: 15px 0;
}

.wsite-slideshow-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background: #cccccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.wsite-slideshow-dot.active,
.wsite-slideshow-dot:hover {
  background: #262626;
}

/* ==========================================================================
   25. YOUTUBE / VIDEO EMBEDS
   ========================================================================== */

.wsite-youtube {
  margin: 10px 0;
}

.wsite-youtube-wrapper {
  position: relative;
  width: 100%;
}

.wsite-youtube-size-auto .wsite-youtube-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.wsite-youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

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

/* ==========================================================================
   26. SOCIAL ICONS
   ========================================================================== */

.wsite-social {
  vertical-align: middle;
}

.wsite-social .wsite-social-item {
  width: 28px;
  height: 30px;
  margin-right: 5px;
  display: inline-block;
}

/* ==========================================================================
   27. LINK LIST STYLE
   ========================================================================== */

.linklist-style {
  font-family: 'Karla', sans-serif;
  text-decoration: none;
}

.category-text-style {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  text-align: center;
  color: #a4a4a4;
}

/* ==========================================================================
   28. BLOG STYLES
   ========================================================================== */

#blogTable .blog-post h2.blog-title a {
  color: #3e3e3e;
  text-decoration: none;
}

#blogTable .blog-post h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #888888;
}

#blogTable .blog-post .blog-date {
  display: inline;
  float: none;
  text-align: center;
}

#blogTable .blog-post .blog-date .date-text {
  float: none;
}

#blogTable .blog-post .blog-comments {
  display: inline;
  float: none;
  text-align: center;
}

#blogTable .blog-post .blog-comments a,
#blogTable .blog-post .blog-comments-bottom a {
  font-family: 'Karla', sans-serif;
  text-decoration: none;
}

#blogTable .blog-post .blog-separator {
  margin: 20px 0 25px;
}

#blogTable .blog-sidebar h2 {
  margin-bottom: 10px;
}

#blogTable .blog-sidebar div.paragraph,
#blogTable .blog-sidebar p {
  margin-bottom: 20px;
}

#blogTable .blog-sidebar a {
  font-family: 'Karla', sans-serif;
  text-decoration: none;
}

/* Comment form */
#commentPostDiv .field input[type=text],
#commentPostDiv .field textarea {
  padding: 8px 12px;
  background: transparent;
}

#commentSubmit {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  height: auto;
  padding: 8px 12px;
  background: #333333;
  color: #ffffff;
  border: 2px solid #333333;
  border-radius: 1px;
  text-transform: uppercase;
  white-space: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  cursor: pointer;
}

#commentSubmit span {
  background: none;
}

#commentSubmit:hover {
  background: #ffffff;
  color: #333333;
  border: 2px solid #333333;
}

/* ==========================================================================
   29. WIDGETIC / IFRAME EMBEDS (Platform elements)
   ========================================================================== */

.platform-element-contents {
  width: 100%;
}

.wgtc-widget-frame {
  width: 100%;
}

.wgtc-widget-frame iframe {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  border: 0 none;
}

/* ==========================================================================
   30. COMMERCE / STORE STYLES (retained for completeness)
   ========================================================================== */

.wsite-nav-cart {
  display: inline-block;
  width: 55px;
  margin-left: 15px;
  white-space: nowrap;
}

.edison-header .wsite-nav-cart {
  font-family: 'Karla', sans-serif;
}

.edison-header .wsite-nav-cart a {
  font-size: 16px;
  text-decoration: none;
}

#wsite-nav-cart-num {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  width: 18px;
  height: 18px;
  display: inline-block;
  margin-left: 2px;
  background: #262626;
  color: #fff;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  font-size: 13px;
  vertical-align: text-bottom;
  border-radius: 50%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.has-items #wsite-nav-cart-num {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* ==========================================================================
   31. WORDPRESS-SPECIFIC OVERRIDES & COMPATIBILITY
   ========================================================================== */

/* WordPress admin bar offset */
body.admin-bar .edison-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .edison-header {
    top: 46px;
  }
}

body.admin-bar.header-sticky .edison-header,
body.admin-bar.header-sticky-up .edison-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar.header-sticky .edison-header,
  body.admin-bar.header-sticky-up .edison-header {
    top: 46px;
  }
}

/* WordPress content alignment classes */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 10px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}

.wp-caption {
  max-width: 100%;
  margin-bottom: 10px;
}

.wp-caption img {
  max-width: 100%;
  height: auto;
}

.wp-caption-text {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #666666;
  padding: 5px 0;
  text-align: center;
}

/* WordPress block editor compatibility */
.wp-block-image {
  margin-bottom: 10px;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

.wp-block-image figcaption {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  color: #666666;
  text-align: center;
  margin-top: 5px;
}

/* Entry content styling for WordPress pages/posts */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-family: 'Actor', sans-serif;
  color: #3f3f3f;
  margin-bottom: 0.5em;
}

.entry-content p {
  font-family: 'Roboto Mono', monospace;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.entry-content a {
  color: #262626;
  text-decoration: underline;
}

.entry-content a:hover {
  color: #000000;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

.entry-content ul,
.entry-content ol {
  padding-left: 3em;
  margin: 5px 0;
}

.entry-content li {
  padding-left: 5px;
  margin: 3px 0 0;
  line-height: 1.7;
}

/* ==========================================================================
   32. CONTACT FORM (WordPress gravity forms / contact form 7 compat)
   ========================================================================== */

.wpcf7-form label,
.gfield_label {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  display: inline-block;
  padding: 10px 0;
  line-height: normal;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form textarea,
.ginput_container input,
.ginput_container textarea {
  font-family: 'Roboto Mono', monospace;
  margin-bottom: 10px;
  padding: 13px 20px;
  background: transparent;
  color: #6b6b6b;
  border: 1px solid #dddddd;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  box-sizing: border-box;
  -webkit-transition: border-color 300ms ease;
  transition: border-color 300ms ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form textarea:focus,
.ginput_container input:focus,
.ginput_container textarea:focus {
  border: 1px solid #000000;
  outline: none;
}

.wpcf7-form input[type="submit"],
.gform_button {
  font-family: 'Karla', sans-serif;
  background-color: #262626;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 0.9375em 2.5625em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  text-transform: none;
  line-height: 1;
}

.wpcf7-form input[type="submit"]:hover,
.gform_button:hover {
  background-color: #444444;
}

/* ==========================================================================
   33. NAVIGATION CART (for WooCommerce compatibility)
   ========================================================================== */

.wsite-nav-cart a {
  visibility: hidden;
}

.wsite-nav-cart a.toggle-custom {
  visibility: visible;
}

/* ==========================================================================
   34. UTILITY CLASSES
   ========================================================================== */

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

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

/* ==========================================================================
   35. RESPONSIVE - TABLET (max-width: 1024px)
   ========================================================================== */

@media only screen and (max-width: 1024px), (hover: none) {
  body.affix .edison-header .nav-wrap {
    position: relative;
    height: auto;
    border-bottom: none;
  }

  body.cart-full .wsite-footer {
    padding-bottom: 70px;
  }

  .banner-wrap .banner h2 {
    font-size: 2.5em;
    line-height: 1.25em;
  }

  .container {
    width: 100%;
    overflow: hidden;
  }

  .edison-header {
    top: 0;
    left: 0;
    z-index: 9;
    padding: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .edison-header .logo {
    overflow-y: hidden;
    max-height: 100%;
    margin-bottom: 0;
  }

  .edison-header .logo a img {
    height: auto;
  }

  .edison-header .header-inner-wrap {
    min-height: 50px;
  }

  .nav-wrap,
  .wsite-search {
    display: none;
  }

  /* Show hamburger on tablet/mobile */
  .hamburger {
    display: block;
  }
}

/* ==========================================================================
   36. RESPONSIVE - MOBILE (max-width: 767px)
   ========================================================================== */

@media screen and (max-width: 767px) {
  body {
    background-size: initial;
    background-position: top center;
    background-attachment: inherit;
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .wsite-section-elements {
    overflow: hidden;
  }

  .banner-wrap .container {
    padding: 50px 20px;
  }

  .banner-wrap .banner-content {
    padding: 0 20px;
  }

  .banner-wrap .banner-content h2 {
    margin-bottom: 15px;
    font-size: 2.5em;
  }

  .banner-wrap .banner-content div.paragraph,
  .banner-wrap .banner-content p {
    margin-bottom: 25px;
    font-size: 1.2em;
  }

  .wsite-section {
    height: auto !important;
  }

  /* Multi-column stacking on mobile */
  td.wsite-multicol-col {
    float: none;
    display: block;
    width: 100% !important;
    box-sizing: border-box;
  }

  .fullwidth-mobile {
    width: 100% !important;
  }

  .fullwidth-mobile .galleryCaptionHolder {
    display: block !important;
  }

  .no-header-page .content-wrap {
    border-top: none;
  }

  /* Blog mobile */
  #blogTable .blog-post h2.blog-title {
    font-size: 1.5em;
  }

  #blogTable td {
    float: none;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  #blogTable td.blog-sidebar {
    width: 100%;
  }

  #blogTable td .blog-body {
    float: none !important;
  }

  #blogTable td .column-blog {
    width: 100%;
    float: none;
  }

  #blogTable td .blog-sidebar-separator {
    padding: 0;
  }

  /* Gallery mobile - 2 columns on small phones */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 5px;
  }

  /* Colored box mobile adjustments */
  .colored-box-content {
    padding: 15px;
  }

  /* Button full-width on mobile */
  .wsite-button {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   37. RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ========================================================================== */

@media screen and (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .gallery-masonry {
    column-count: 1;
  }

  /* Lightbox mobile adjustments */
  .lightbox-content img,
  .fancybox-inner img {
    max-width: 95vw;
    max-height: 80vh;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 30px;
    padding: 10px;
  }

  .lightbox-close {
    font-size: 28px;
  }
}

/* ==========================================================================
   38. PRINT STYLES
   ========================================================================== */

@media print {
  .edison-header,
  .footer-wrap,
  .hamburger,
  .mobile-nav,
  .wsite-button,
  .lightbox-overlay,
  .fancybox-overlay {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
    font-size: 12pt;
  }

  .wrapper {
    box-shadow: none;
  }

  .content-wrap {
    padding: 0;
  }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}

/* ==========================================================================
   39. ANIMATION HELPERS
   ========================================================================== */

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-up {
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal content animation (matching Edison theme JS behavior) */
body.reveal-content .content-wrap,
body.reveal-content .banner-wrap,
body.reveal-content .footer-wrap {
  opacity: 1;
}

/* ==========================================================================
   40. MISCELLANEOUS WEEBLY ELEMENT COMPATIBILITY
   ========================================================================== */

/* Phone number style */
.wsite-phone {
  font-family: 'Karla', sans-serif;
}

/* Breadcrumbs */
.wsite-breadcrumbs {
  font-family: 'Karla', sans-serif;
  padding-bottom: 25px;
}

.wsite-breadcrumbs a {
  text-decoration: none;
  color: #a4a4a4;
  transition: color 300ms ease;
}

.wsite-breadcrumbs a:hover {
  color: #262626;
}

/* Pagination */
.wsite-pagination {
  text-align: center;
  padding: 20px 0;
}

.wsite-pagination a {
  font-family: 'Karla', sans-serif;
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  color: #a4a4a4;
  text-decoration: none;
  transition: color 300ms ease;
}

.wsite-pagination a:hover,
.wsite-pagination a.current {
  color: #262626;
}

/* Blockquote in different sections */
.wsite-not-footer blockquote {
  border-left-color: #ebebeb;
  color: #666666;
}

.wsite-footer blockquote {
  border-left-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* Content elements within body sections */
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) div.paragraph,
.wsite-elements.wsite-not-footer:not(.wsite-header-elements) p {
  font-family: 'Roboto Mono', monospace;
  color: #666666;
}

.wsite-elements.wsite-not-footer:not(.wsite-header-elements) h2,
#wsite-content h2 {
  font-family: 'Actor', sans-serif !important;
}

/* Footer specific typography */
.wsite-elements.wsite-footer div.paragraph,
.wsite-elements.wsite-footer p {
  color: #ffffff;
}

.wsite-elements.wsite-footer h2 {
  color: #ffffff;
}

/* Ensure Weebly-style element containment */
#wsite-content {
  position: relative;
}

/* Square payment form in footer (from original site) */
.sq-payment-form {
  max-width: 400px;
}

/* ==========================================================================
   41. HIGH-DPI / RETINA ADJUSTMENTS
   ========================================================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .galleryImage {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ==========================================================================
   42. ACCESSIBILITY ENHANCEMENTS
   ========================================================================== */

/* Focus styles for keyboard navigation */
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #262626;
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: none;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 100000;
  padding: 10px 20px;
  background: #262626;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}

.skip-to-content:focus {
  top: 0;
}

/* ==========================================================================
   43. WORDPRESS MENU WALKER COMPATIBILITY
   ========================================================================== */

/* Ensure WP-generated menu classes work with Edison styling */
.menu-item {
  list-style: none;
}

.menu-item a {
  font-family: 'Karla', sans-serif;
  color: #a4a4a4;
  text-decoration: none;
  transition: color 300ms ease;
  display: block;
  padding: 5px;
  font-size: 16px;
}

.menu-item a:hover,
.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
  color: #000000;
}

/* Sub-menu styling */
.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 20;
  padding: 12px 0 18px;
  text-align: center;
}

.desktop-nav .menu-item-has-children.submenu-open > .sub-menu {
  display: block;
}

.desktop-nav .sub-menu .menu-item {
  display: inline-block;
  padding: 0 5px;
}

.desktop-nav .sub-menu .menu-item a {
  padding: 10px 5px;
  font-size: 16px;
}

/* Mobile nav WP menu */
.mobile-nav .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav .menu-item a {
  padding: 15px;
  color: #606060;
  display: block;
  text-align: center;
}

.mobile-nav .sub-menu {
  display: none;
  padding: 0;
}

.mobile-nav .menu-item-has-children.dropdown-open > .sub-menu {
  display: block;
}

.mobile-nav .sub-menu .menu-item a {
  padding: 8px 15px;
  font-size: 14px;
}

/* Menu item with children indicator */
.desktop-nav .menu-item-has-children > a::after {
  display: inline-block;
  width: 9px;
  content: "+";
  margin-left: 3px;
}

.desktop-nav .menu-item-has-children:hover > a::after {
  content: "-";
}

/* ==========================================================================
   44. HOMEPAGE MOBILE - Match Weebly mobile layout
   IMPORTANT: These styles ONLY apply on mobile (max-width: 767px)
   Desktop layout is NOT affected in any way
   ========================================================================== */

@media screen and (max-width: 767px) {

  /* ---- HERO BANNER ---- */
  .banner-wrap .wsite-section-bg-image {
    height: auto !important;
    min-height: 250px;
  }

  .banner-wrap .wsite-header-section .container {
    padding: 30px 15px !important;
  }

  .home-hero-box .wsite-multicol-table-wrap {
    margin: 0 !important;
  }

  .home-hero-box td.wsite-multicol-col {
    padding: 5px 10px !important;
  }

  .home-hero-box .wsite-content-title {
    text-align: left !important;
  }

  .home-hero-box .wsite-button {
    display: inline-block !important;
    width: auto !important;
  }

  /* ---- TOP 4 FEATURED IMAGES (widgetic replacement) ---- */
  .content-wrap .imageGallery[style*="justify-content"] {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  .content-wrap .imageGallery[style*="justify-content"] > a {
    flex: 0 0 calc(50% - 5px) !important;
  }

  /* First image (widgetic-1) - wider */
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(1) {
    flex: 0 0 calc(55% - 5px) !important;
  }

  /* Second image (widgetic-2) - narrower */
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(2) {
    flex: 0 0 calc(45% - 5px) !important;
  }

  /* First two images - shorter height */
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(1) > img,
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(2) > img {
    height: 240px !important;
    border-radius: 4px !important;
  }

  /* Third image (widgetic-3) - slightly wider */
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(3) {
    flex: 0 0 calc(53% - 5px) !important;
  }

  /* Fourth image (widgetic-4) - slightly narrower */
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(4) {
    flex: 0 0 calc(47% - 5px) !important;
  }

  /* Bottom two images - keep current height */
  .content-wrap .imageGallery[style*="justify-content"] > a:nth-child(n+3) > img {
    height: 280px !important;
    border-radius: 4px !important;
  }

  /* ---- 2x2 IMAGE GALLERY → single column on mobile ---- */
  .content-wrap .imageGallery[style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .content-wrap .imageGallery[style*="display:grid"] > a > img {
    width: 409px !important;
    height: 292px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* ---- ABOUT SECTION ---- */
  .home-about-box .wsite-multicol-table-wrap {
    margin: 0 !important;
  }

  .home-about-box td.wsite-multicol-col {
    padding: 5px 10px !important;
  }

  .home-about-box .wsite-image img {
    width: 100% !important;
  }

  .home-about-box .wsite-content-title[style*="font-size:32px"] {
    text-align: left !important;
  }

  .home-about-box .wsite-content-title[style*="font-size:24px"] {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
  }

  .home-about-box div[style*="margin-right:-35px"] {
    margin-right: 0 !important;
    text-align: center !important;
  }

  /* ---- YOUTUBE VIDEOS ---- */
  .wsite-youtube-size-auto .wsite-youtube-container {
    padding-bottom: 75% !important;
  }

  /* ---- PORTFOLIO SECTIONS ---- */
  .home-portfolio-box .wsite-multicol-table-wrap {
    margin: 0 !important;
  }

  .home-portfolio-box td.wsite-multicol-col {
    padding: 5px 10px !important;
  }

  /* Slideshow containers - bounded, centered */
  a.beginnings-slideshow,
  a.family-slideshow,
  a.change-slideshow,
  a.quarantine-slideshow {
    width: 346px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 280px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  /* All portfolio slideshow images - thumbnails, no crop */
  img.beginnings-slide,
  img.family-slide,
  img.change-slide,
  img.quarantine-slide {
    max-width: 346px !important;
    max-height: 280px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  img.beginnings-slide.active,
  img.family-slide.active,
  img.change-slide.active,
  img.quarantine-slide.active {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  img.beginnings-slide:not(.active),
  img.family-slide:not(.active),
  img.change-slide:not(.active),
  img.quarantine-slide:not(.active) {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Static portfolio image (Me now and then) */
  .home-portfolio-box img[style*="width:324px"] {
    width: 100% !important;
    height: auto !important;
  }

  /* Portfolio headings left-align on mobile */
  .home-portfolio-box .wsite-content-title {
    text-align: left !important;
  }

  /* Portfolio buttons right-align + half width on mobile */
  .home-portfolio-box div[style*="text-align:right"] {
    text-align: right !important;
  }

  .home-portfolio-box .wsite-button {
    display: inline-block !important;
    width: 60% !important;
    float: right !important;
  }

  /* ---- PRESS RELEASES SLIDESHOW ---- */
  .press-slideshow-wrap {
    overflow: hidden !important;
  }

  .press-slideshow {
    min-height: auto !important;
    max-width: 346px !important;
    max-height: 280px !important;
    margin: 0 auto !important;
  }

  img.press-slide {
    max-width: 346px !important;
    max-height: 280px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  img.press-slide.active {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  img.press-slide:not(.active) {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* ---- MEMORIES SLIDESHOW ---- */
  .memories-slideshow-wrap {
    overflow: hidden !important;
  }

  .memories-slideshow {
    min-height: 0 !important;
    width: 346px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 350px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  img.memories-slide {
    max-width: 346px !important;
    max-height: 350px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  img.memories-slide.active {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  img.memories-slide:not(.active) {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* ---- GALLERY PAGE MOBILE ---- */
  .gallery-box .colored-box-content {
    padding: 15px !important;
  }

  .gallery-box .wsite-multicol-table-wrap {
    margin: 0 !important;
  }

  .gallery-box td.wsite-multicol-col {
    padding: 5px 10px !important;
  }

  /* Slideshow containers - centered, bounded 346x241 */
  .gallery-box .gal-beginnings-slideshow,
  .gallery-box .gal-family-slideshow,
  .gallery-box .gal-change-slideshow,
  .gallery-box .gal-quarantine-slideshow {
    width: 346px !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 241px !important;
    margin: 0 auto !important;
    overflow: hidden !important;
  }

  /* All slideshow images - contain to show full image */
  .gallery-box img.gal-beginnings-slide,
  .gallery-box img.gal-family-slide,
  .gallery-box img.gal-change-slide,
  .gallery-box img.gal-quarantine-slide {
    max-width: 346px !important;
    max-height: 241px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* Active slides: relative for flow, reset offsets */
  .gallery-box img.gal-beginnings-slide.active,
  .gallery-box img.gal-family-slide.active,
  .gallery-box img.gal-change-slide.active,
  .gallery-box img.gal-quarantine-slide.active {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
  }

  /* Non-active slides: absolute overlay, centered */
  .gallery-box img.gal-beginnings-slide:not(.active),
  .gallery-box img.gal-family-slide:not(.active),
  .gallery-box img.gal-change-slide:not(.active),
  .gallery-box img.gal-quarantine-slide:not(.active) {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Static image (Me now and then) */
  .gallery-box img[style*="width:324px"][style*="height:432px"] {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* Headings left-align */
  .gallery-box .wsite-content-title {
    text-align: left !important;
  }

  /* Buttons: right-aligned, 60% width */
  .gallery-box div[style*="text-align:right"] {
    text-align: right !important;
  }

  .gallery-box .wsite-button {
    display: inline-block !important;
    width: 60% !important;
    float: right !important;
  }

  /* Gallery page YouTube - taller on mobile */
  div[style*="padding-bottom:56.25%"] {
    padding-bottom: 75% !important;
  }

  /* ---- ME NOW AND THEN PAGE MOBILE ---- */
  .page-template-page-me-now-and-then-php .container[style*="padding:40px 80px"] {
    padding: 15px 10px !important;
    max-width: 400px !important;
    margin: 0 auto !important;
  }

  /* ---- MEMORIES PAGE MOBILE ---- */
  .page-template-page-memories-php .imageGallery {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 10px !important;
    flex-wrap: unset !important;
  }

  .page-template-page-memories-php .imageGallery > a {
    display: block !important;
  }

  .page-template-page-memories-php .imageGallery > a > img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 213/162 !important;
    object-fit: cover !important;
  }

  /* ---- CONTACT PAGE MOBILE ---- */
  br.desktop-br {
    display: none !important;
  }

  /* ---- GENERAL MOBILE OVERRIDES ---- */
  .content-wrap .wsite-multicol-table-wrap {
    margin: 0 !important;
  }

  .content-wrap td.wsite-multicol-col div[style*="text-align:right"] {
    text-align: center !important;
  }

  /* ---- LIGHTBOX MOBILE ---- */
  #home-lightbox-close,
  #home-lightbox-prev,
  #home-lightbox-next {
    width: 50px !important;
    height: 50px !important;
  }

  #home-lightbox-close {
    top: 10px !important;
    right: 10px !important;
  }

  #home-lightbox-thumbs {
    display: none !important;
  }
}

/* ==========================================================================
   END OF STYLESHEET
   ========================================================================== */
