/**
 * Theme Name: Fall Foliage Theme
 * Template:   genesis-block-theme
 * Version: 1.0.0
 */

  /* @font-face {
    font-family: 'Brother';
    src: url('fonts/Brother 1816 Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
 @font-face {
    font-family: 'Brother-italic';
    src: url('fonts/Brother 1816 Regular Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}
 @font-face {
    font-family: 'Brother-bold';
    src: url('fonts/Brother 1816 Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
 @font-face {
    font-family: 'Brother-bold-italic';
    src: url('fonts/Brother 1816 Bold Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}  */

body,html{
    font-family: 'brother-1816';
    box-sizing:border-box;
    margin:0;
    background-color:#fef3ea;
    
}

section{
  /* max-width:1300px; */
  /* padding: 24px 0px; */
  margin:0 auto;
}

h1,h2,h3,h4,h5{
    font-weight:bold;
    
}

h1{
  font-family:"oaks", sans-serif;
    font-size:4.6rem;
}

h2{
  font-size:2.5rem;
  margin:0;
}

h3{
  font-size:1.25rem;
}

a, a:visited, a:hover, a:active {
  /* color: inherit; */
  text-decoration: none; 
}

a{
  padding: 12px 24px;
  color: white;
  border-radius: 12px;
  border: 2px solid white;
  transition:all 0.38s;
}

a:hover{
  background-color: white;
  color:#dc6400;
}

.no-box{
  padding: 0px;
  border-radius: 0px;
  border:none;
  color: initial;
}

p{
  font-size:18px;
  
  font-family: asap, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height:1.5rem;
}

.plain-link{
  /* padding: unset; */
  color: unset;
  border-radius: unset;
  border: unset;
  transition:unset;
  cursor:pointer;
}

.plain-link:hover{
  background-color: unset;
  color:unset;
}

@media screen and (max-width:960px){
  h1{
    font-size:3.6rem;
  }

  h2{
    font-size:1.5rem;
  }
}


/*********************************** NAV STYLES ***********************************/
#nav{
  width:100%;
  background-color:#000000;
  position:relative;
  z-index:20;
  /* padding:12px; */
}

.nav-inner{
  height:100%;
  max-width:1300px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav-logo{
  color:white;
  font-weight:bold;
  font-size:1.1rem;
  border:none;
  padding:0;
}

.nav-logo:hover{
  background-color:transparent;
  color:white;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav-links a{
  border:none;
  padding:8px 16px;
  font-size:0.95rem;
  border-radius:50px;
}

.nav-links a:hover{
  background-color:white;
  color:#dc6400;
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:26px;
  height:18px;
  background:transparent;
  border:none;
  padding:0;
  cursor:pointer;
  z-index:21;
}

.nav-toggle span{
  display:block;
  height:2px;
  width:100%;
  background-color:white;
  border-radius:2px;
  transition:all 0.3s;
}

.nav-toggle.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2){
  opacity:0;
}
.nav-toggle.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

@media (max-width:768px){
  .nav-toggle{
    display:flex;
  }

  .nav-links{
    display:none;
    position:absolute;
    top:50px;
    left:0;
    width:100%;
    background-color:#000000;
    flex-direction:column;
    align-items:stretch;
    /* padding:16px 24px; */
    gap:12px;
    box-shadow:0 4px 8px rgba(0,0,0,0.15);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    text-align:center;
  }
}

/*********************************** homepage STYLES ***********************************/
.intro-text{
  text-align: center;
  max-width: 700px;
  margin: 32px auto;
}

#homepage-cards-container{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  /* background-image: linear-gradient(to bottom, #efc29b, white); */
  background-color: #86d5be;
  margin-bottom:48px;
}

.homepage-card{
  
  /* height:fit-content; */
  color:black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction:column;
  text-align:center;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0px 6px 10px #dadada;
  margin:12px;
  width: 100%;
  max-width: 650px;
  background-color:white;
}

.homepage-card:hover{
  color:#86d5be;
}

.homepage-card > img{
  /* width:550px; */
  /* height:350px; */
  transition: all .25s ease-out;
  
  border-radius:32px;
  width:100%;
}

.homepage-card:hover > img{
  box-shadow: 1px 6px 11px #a39d9d;
  scale:1.01;
}
.homepage-card h1{
  font-family:"brother-1816";
  margin-top:24px;
}

/* .homepage-card:before{
  content:"";
  width:100%;
  height:100%;
  background-color: black;
  position:absolute;
  left:0;
  opacity: 0.5;
} */

.homepage-card > a,h1,h3{
  z-index: 2;
  position: relative;
  margin:0px;
}

.homepage-card  h1{
  font-size:3.2rem;
}


.cta{
  color: white;
  background-color: #1f7a90;
  bottom: -44px;
 
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  /* justify-content: space-around; */
  padding: 8px 5%;
  border-radius: 50px;
  align-items: center;
  /* width: 60%; */
}

#cta-text-container{
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  transform: translateY(-10%);
  max-width:680px;
}

.cta:after{
  content:"";
  background-color:#dc6400;
  border-radius:50px;height:100%;
  position:absolute;
  width:100%;
  height:100%;
  right:5px;
  bottom:5px;
  z-index:-1;
}

#cta-text{
  text-align:center; 
  font-weight: bold;
  font-size: 1.7rem;
  font-family:'brother-1816';
  text-transform:uppercase;
  margin-right:32px;
  ;
}

#cta-button{
  font-weight: bold;
  /* font-size: 1.5rem; */
  cursor:pointer;
  font-family:'asap';
  align-self: anchor-center;
  text-align:center;
}

#cta-bar{
  color: white;
  background-color: #1f7a90;
  bottom: -44px;
 flex-wrap:wrap;
  /* position: absolute; */
  /* left: 50%; */
  /* left:0; */
  transform: translate(-2%, 0%);
  /* justify-content: space-around; */
  padding: 20px 5%;
  border-radius: 50px;
  align-items: center;
  width: 80%;
  display:flex;
  justify-content: flex-end;
  margin: 64px 0px;
}

#cta-bar:after{
  content:"";
  background-color:#dc6400;
  border-radius:50px;height:100%;
  position:absolute;
  width:100%;
  height:100%;
  right:5px;
  bottom:5px;
  z-index:-1;
}

.white-outline-button{
 border: 2px solid white;
  border-radius: 50px;
  padding: 8px 16px;
  margin:16px 0px;
}

@media  screen and (max-width:1000px){
  #cta-text{
    font-size:1.15rem;
    margin-right:8px;
  }
}

@media screen and (max-width:960px){
  .footer-cta {
    margin: 24px auto 0px 0px;
  }

  .cta{
    width:80%;
  }
}


/*********************************** MAP STYLES ***********************************/

#interactive-map-container{
  background-image:url('/wp-content/uploads/2026/07/RepeatingLeafPattern-1.svg');
  background-repeat: no-repeat;
  background-size: cover;


  /* remove this animation and keyframes below to remove animation */
  animation: interactive-map-container-fall 43s linear infinite;
}

@keyframes interactive-map-container-fall{
  from { background-position: 0 0; }
  to   { background-position: 0 250px; }
}

.shell {
    width: 100%;
    /* max-height: 580px; */
    max-width: 1800px;
  margin: 0 auto;
    min-height:500px;
    display: flex;
    position: relative;
    overflow: hidden;
    align-items:center;
    /* background: var(--color-background-secondary);
    border-radius: var(--border-radius-lg);
    border: 0.5px solid var(--color-border-tertiary); */
    font-family: var(--font-sans);
    /* max-width: 1300px; */
    /* margin: 0 auto; */
    /* background-color: #F2C094; */
  /* border-radius: 25px; */
  /* box-shadow: #c5c5c5 1px 1px 10px; */
  }

  #map-wrap{
    width: 100%;
    /* margin: auto; */
    /* height: 100%; */
  }

  #map-tip{
    width: 300px;
  position: absolute;
  left: 18%;
  top: 15%;
  z-index:1;
  }
  #map-tip.hidden{
     opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  #zoom-controls{
    display: flex;
    gap: 8px;
    position: absolute;
  z-index: 1;
right:24px;
    justify-content: center;
    margin-bottom: 12px;
    transition: opacity .25s ease, visibility .25s ease;
    background-color: white;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #dc6400;
  scale:0.7;
  }

  #zoom-controls.hidden{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  #zoom-controls button{
   width: 80px;
  height: 80px;
  border-radius: 10%;
    border: 2px solid #dc6400;
    background-color: white;
    color: #dc6400;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
  }

  #zoom-controls button:hover{
    background-color: #dc6400;
    color: white;
  }
  #map{
    position:relative; 
    transform-origin: 0 0;
    display:flex;
    justify-content:center;
    flex-direction: column;
  }
  /* #map > #map-graphic{
    max-width:1800px;
    touch-action: none;
  } */
   #map > #mobile-map-graphic{
    max-width:1800px;
    touch-action: none;
  }
/* comment this out to remove map animation */
  /* #map-graphic{
    animation: map-graphic-fall 6s ease-in-out infinite;
  }

  @keyframes map-graphic-fall{
    0%   { transform: translateY(0); }
    50%  { transform: translateY(15px); }
    100% { transform: translateY(0); }
  } */

  #map-graphic,#mobile-map-graphic{
    min-height:500px;
  }

  /* #mobile-map-graphic{
    display:none;
  } */

  /* #map-graphic{
    display:none;
  } */

  #legend{
    margin-bottom:64px;
  }
  .drawer {
    position: absolute;
    top: 2px; left: 0; bottom: 0;
    max-width: 600px;
    height:fit-content;
    border-right: 0.5px solid var(--color-border-secondary);
    transform: translateX(-120%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 10;
   
    
  }
#drawer-content:before{
  content:'';
  background-image:url('/wp-content/uploads/2026/06/Asset-2.png');
  position: absolute;
  right: -77%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 25%;
  top: 6%;
  z-index:-1;
  rotate: 4deg;
  transform-origin: bottom left;
      pointer-events: none;

}

/* @keyframes leaf-bounce-in {
  0%   { transform: rotate(-16deg); opacity: 0; }
  50%  { transform: rotate(8deg); opacity: 1; }
  70%  { transform: rotate(-4deg); }
  85%  { transform: rotate(2deg); }
  100% { transform: rotate(0); } */
/* } */

@keyframes leaf-wave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-6px) rotate(3deg); }
}

.drawer.open #drawer-content:before {
  animation: /*leaf-bounce-in 5s cubic-bezier(0.32, 0.72, 0, 1),*/
             leaf-wave 10s ease-in-out 0.7s infinite;
}

.drawer.open #drawer-bg:before {
  animation: /*leaf-bounce-in 1.2s cubic-bezier(0.32, 0.72, 0, 1) 0.1s,*/
             leaf-wave 10s ease-in-out 1.2s infinite;
}

  #drawer-content{
     display: flex;
    flex-direction: column;
    padding: 0rem 1.45rem;
    color:white;
    border-radius:25px;
    height:fit-content;
    background-color:#dc6400;
    padding:12px;
  }

  #drawer-bg:before{
    content:'';
    background-image:url('/wp-content/uploads/2026/06/Asset-4.png');
   position: absolute;
    right: -79%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 25%;
    top: 12%;
    rotate: 16deg;
    transform-origin: left;
    pointer-events: none;
  }

  #drawer-bg{
    background-color:#1f7a90;
    z-index:-1;
    position:absolute;
    width:100%;
    height:100%;
    top: 12px;
  left: 12px;
  border-radius:25px;
  }

  /* .drawer:before{
    content:"";
    background-color:#dc6400;
    width:100%;
    height:100%;
    position:absolute;
    left: -17px;
    top: -17px;
    border-radius:25px;
    z-index:-1;

  } */

  .drawer.open {
    transform: translateX(0);
    /* overflow:scroll; */
  }
  #d-image{
    /* max-width:400px; */
    max-height:300px;
    border-radius: 24px;
    object-fit: cover;
    margin-right: auto;
  border: 5px solid white;
  margin-bottom:24px;
  width:98%;
  }

  .drawer-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 3px 0px;
    border-radius: 4px;
    margin-bottom: 1.25rem;
  }

  .drawer-title {
    font-family: 'oaks', sans-serif;
    /* font-size: 28px;
    font-weight: 300; */
    /* font-style: italic; */
    line-height: 1.2;
    /* margin-bottom: 0.75rem; */
    color: var(--color-text-primary);
    text-transform:uppercase;
  }

  .drawer-town{
    font-style: italic;
  font-size: 0.9rem;
  margin-top:0;
  }

  .drawer-sub {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    /* margin-bottom: 1.5rem; */
  }
  .drawer-sub p:first-child{
    /* margin-bottom:48px; */
    margin-top:0;
  }

  .drawer-sub p{
    margin-bottom:32px;
  }

  

  .drawer-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 2.5rem;
  }

  .stat-card {
    background: var(--color-background-secondary);
    border-radius: var(--border-radius-md);
    /* padding: 12px; */
  }

  .stat-val {
    /* font-family: 'DM Mono', monospace; */
    /* font-size: 10px; */
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .stat-label {
   font-size: 18px;
  font-weight: bold;
  
  text-transform: uppercase;
  font-style: italic;
  }

  .drawer-close {
    /* margin-top: auto; */
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 18px;
    color: var(--color-text-secondary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    letter-spacing: 0.06em;
    transition: color 0.15s;
  }

  .drawer-close:hover { color: var(--color-text-primary); }

  .close-arrow {
    width: 20px; height: 20px;
    border: 0.5px solid var(--color-border-secondary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    transition: border-color 0.15s;
  }

  .drawer-close:hover .close-arrow { border-color: var(--color-border-primary); }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.08);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s;
    z-index: 5;
  }

  .overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

 @keyframes bounceOpen {
    0%   { transform: scaleY(0); opacity: 0; }
    60%  { transform: scaleY(1.08); opacity: 1; }
    75%  { transform: scaleY(0.95); }
    88%  { transform: scaleY(1.03); }
    100% { transform: scaleY(1); }
  }

   .pin{

      position:absolute;
      transition: transform ease-in .25s;
      cursor:pointer;
      transform-box: fill-box;
      transform-origin: center;
  }

  .pin:hover{
      transform: scale(1.1);

  }

  .not-featured{
    visibility: hidden;
  }

  svg.zoomed .not-featured{
    visibility: visible;
  }

  .marker-label-group{
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s ease;
  }

  .marker-label-group.visible{
    opacity: 1;
  }

  .marker-label{
    font-size: 10px;
    font-weight: 600;
    fill: #000000;
  }

  .marker-label-bg{
    fill: #ffffff;
    rx: 4px;
    ry: 4px;
  }


  @media screen and (max-width:1320px){
    #map-tip{
      scale:0.6;
     
    }
  }
  @media screen and (max-width:960px){
      /* #map-graphic{
      display:none;
    }
    #mobile-map-graphic{
      display:block;
    } */

    #map-tip{
      scale: 0.6;
    left: 10%;
    top: 7%;
     
    }
  #interactive-map-container{
    animation:none;
  }
     

    #zoom-controls{
      right:-25px;
      scale:0.6;

    }

    
  }
  @media screen and (max-width:775px){
   
    #map-tip{
     scale: 0.4;
    left: 1%;
    top: 7%;
     
    }
  }
  @media screen and (max-width:1400px){
    .drawer{
      scale:0.6;
      margin:auto 0;
      transform: translateX(-150%);
    }
  }
  @media screen and (max-width:960px){
    .drawer-title{
      font-size:2rem;
    }
  }

  @media screen and (max-width:500px){
    #drawer-bg:before{
      right:-60%;
    }
  }




    /*********************************** FALL SITE STYLES ***********************************/
    #fall-site-header{
      display:flex;
      align-items: end;
      max-width:1500px;
    }

    #fall-site-header > .entry-header{
      padding:24px;
    }
    #fall-site-header > .entry-thumbnail >img{
        max-width: 800px;
        height: auto;
        border-radius: 4px;
    }
    #things-to-do{
      max-width:1500px;
      margin:0 auto;
    }

    #things-to-do img{
      max-width:800px;
      height:auto;
      border-radius:16px;
      margin:24px;
    }

    .listing-image-slot{
      display:flex;
      align-items:center;
      margin-bottom:200px;
    }
    .listing-image-slot-text{
      max-width:650px;
    }

    

    /*********************************** IMAGE GRID STYLES ***********************************/
    #image-grid {
      padding: 48px 0;
    }

    #image-grid-layout {
      max-width: 1800px;
      width:90%;
      margin: 0 auto;
      /* padding: 0 24px; */
    }

    #image-grid-filters {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 32px;
      padding: 24px;
  /* background-color: #efc29b; */
  border-radius: 8px;
    }

    #image-grid-filters label {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1rem;
      cursor: pointer;
    }

    #image-grid-filters input[type="checkbox"] {
      width: 18px;
      height: 18px;
      cursor: pointer;
      accent-color: #dc6400;
    }

    #image-grid-results {
      columns: 3 220px;
      column-gap: 12px;
    }

    #image-grid-results .grid-item {
      break-inside: avoid;
      margin-bottom: 12px;
      perspective: 900px;
    }

    .card-inner {
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.55s cubic-bezier(0.4, 0.2, 0.2, 1);
    }

    @media (hover: hover) {
      #image-grid-results .grid-item:hover .card-inner {
        transform: rotateY(180deg);
      }
    }

    #image-grid-results .grid-item.flipped .card-inner {
      transform: rotateY(180deg);
    }

    .card-front,
    .card-back {
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 3px 3px 7px #ffddc1;
    }

    .card-front img {
      width: 100%;
      display: block;
    }

    .card-back {
      position: absolute;
      inset: 0;
      transform: rotateY(180deg);
      background: #dc6400;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      padding: 16px;
      text-align: center;
      flex-direction:column;
      
    }

    .card-back p {
      /* font-size: 0.95rem; */
      line-height: 1.5;
      margin: 0;
    }

    .card-back strong{
      font-size:1.3rem;
      /* font-family: 'Oaks'; */
    }

    #swipe-tip{
      display:none;
    }

    @media screen and (max-width:1100px){
      #image-grid-results{
        columns: 2 220px;
      }

      /* .card-back strong{
        font-size:1.3rem;
      } */

      .card-back{
        font-size:.95rem;
      }
    }

    
    @media screen and (max-width:960px){
     #swipe-tip{
      display:block;
     }
    }

    @media screen and (max-width:662px){
      #image-grid-filters{
        flex-direction:column;
      }
    }



  /*********************************** EVENTS STYLES ***********************************/
  
  .event-details{
    position:relative;
    max-width: 440px;
  }
  
.event-details > p{
  margin-bottom:80px;
}

  #events-container{
    max-width:1340px;
    margin:0 auto;
    padding: 0px 56px;
  }

  
  
  #events-container > .event{
    display:flex;
    column-gap: 100px;
    margin-bottom:150px;
    
  }

  #events-container :nth-child(odd){
    flex-direction: row-reverse;
  }


  .event{
    align-items:center;
  }

  .event  h3{
    margin:0;
  }

  .event > a > img{
    max-width: 800px;
    border-radius: 25px;
    width: 100%;
    box-shadow: 3px 3px 7px #ffddc1;
    transition: all .25s ease-out;
  }

  .event > a > img:hover{
    scale: 1.01;
  }

  

  .event-details > h2::before{
    content:"";
    background-image: url('/wp-content/uploads/2026/06/leaf-bullet-1.png');
    width:110px;
    height:50px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -50px;
    display:block;
  }









  .event-link{
    color:#ed1c24;
    font-weight:bold;
    padding: 12px 24px;
  border-radius: 12px;
  margin-top: 112px;
  border: 2px solid #ed1c24;
  transition:all 0.38s;
  }

  /* .event-link::after{
    content:"";
    background-image: url('https://fallfoliage.local/wp-content/uploads/2026/06/arrow.png');
     width:83px;
    height:50px;background-size:contain;
    background-repeat: no-repeat;
    position:absolute;
    display: inline-block;
  margin-left: 16px;
  } */

  .event-link:hover{
    background-color:#ed1c24;
    color:white;
  }

  @media screen and (max-width:1023px){
    .event{
      flex-wrap:wrap;
      justify-content: center;
    }

    .event-details{
      max-width:initial;
      margin-top: 32px;
    }
    #cards-container{
      flex-wrap:wrap;
    }

  #events-container {
    flex-direction: column;
  }
  }


/*********************************** GRID STYLES ***********************************/

#image-grid{

  /* background-image: linear-gradient(to bottom, #efc29b, white); */
  min-height:600px;
}








#colophon{
  background-color:black;
  width:100%;
  color:white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  /* padding:24px; */
    }


    #va-logo{
      background-image:url('/wp-content/uploads/2026/07/VIFL-Retro-Stacked-REV.png');
      height:60px;
      position:relative;
    }
    #ff-logo{
      background-image:url('/wp-content/uploads/2026/07/HeadersTitles-06.svg');
      height:60px;
      position:relative;
      margin-right:40px;
    }

    #ff-logo:after{
      content: '';
      position: absolute;
      top: 50%;
      right: -24px;
      display: inline-block;
      width: 2px;
      height: 28px;
      background: rgba(229, 229, 229, 0.30);
      transform: translateY(-50%);
    }
    #dof-logo{
      background-image:url('/wp-content/uploads/2026/07/logo.svg');
    }
    #doa-logo{
      background-image:url('/wp-content/uploads/2026/08/fs-logo.png');
    }
    #dcr-logo{
      background-image:url('/wp-content/uploads/2026/08/VSP_textTitle_white@2x.png');
      height:30px;
    }
    .footer-logo{
      
      width:24px;
      height:100px;
      background-repeat:no-repeat;
      background-size:contain;
      background-position:center;
      margin: 0 8px;
    }

    .social-icon.youtube {
    width: 27px;
    background: url('/wp-content/uploads/2026/08/icon-social-youtube.png') no-repeat;
    background-size: contain;
     background-position:center;
    }
    .social-icon.pinterest {
    width: 27px;
    background: url('/wp-content/uploads/2026/08/icon-social-pinterest.png') no-repeat;
    background-size: contain;
     background-position:center;
    }
    .social-icon.instagram {
    width: 27px;
    background: url('/wp-content/uploads/2026/08/icon-social-instagram.png') no-repeat;
    background-size: contain;
     background-position:center;
    }
    .social-icon.facebook {
    width: 27px;
    background: url('/wp-content/uploads/2026/08/icon-social-facebook.png') no-repeat;
    background-size: contain;
     background-position:center;
    }

    .social-icon{
      padding:0px;
      height: 18px;
  margin: 0 12px;

 

    }
    