.post, .page {
  margin-bottom: 10px;
  height: 100vh;
  overflow-x: hidden;
}

:root {
  font-family: 'lato', sans-serif;
  /* Social sidebar color variables */
  --primary: #fff234;
  --primary-hover: #eee;
  --background: rgba(28, 28, 30, 0.8);
  --text: rgba(255, 255, 255, 0.9);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

* {

  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.roboto {
  font-family: 'Roboto Condensed', sans-serif !important;
}

html {
  margin-top: 0 !important;
}

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

b, strong {
  font-weight: 700;
}

section {
  padding: 6rem 1rem;
  color: #111;
}

p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}

ul, li {
  margin: 0;
  padding: 0;
}

em {
  color: #;
}

a {
  text-decoration: none;
}

p a:link, p a:visited {
  color: #4e90e1;
}

p a:hover, p a:active, p a:focus {
    text-decoration: underline;
    color: #4e90e1;
}

blockquote {
  padding: 0.25rem;
  background-color: #eee;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-left: 0.25rem solid #fff234;
  font-weight: 600;
}

.site-logo {
  width: 80px;
  height: 80px;
  background-image: url('/wp-content/uploads/2025/03/cropped-total-pa-logo.png');
  background-size: cover;
  position: absolute;
  z-index: 9999;
  margin-left: 2rem;
}

.menu-logo {
  display: none !important;
}

.platter {
  max-width: 1920px;
}

.medium-platter {
  max-width: 1400px;
}

.small-platter {
  max-width: 1240px;
}

.x-small-platter {
  max-width: 980px;
}

.small-flex {
  display: flex;
}

.grid {
  display: grid;
}

.flex {
  display: block;
}

.medium-flex {
  display: block;
}

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.dark-bg {
  background-color: #111;
  color: #fff;
}

.grey-bg {
  background-color: #f6f6f6;
}

.white-bg {
  background-color: #fff;
}


.will-animate {
  -webkit-transition: all 1.0s ease-out;
  -moz-transition: all 1.0s ease-out;
  -ms-transition: all 1.0s ease-out;
  -o-transition: all 1.0s ease-out;
  transition: all 1.0s ease-out;
  -moz-transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -o-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}


.will-animate.animated {
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -o-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}


.cta-button-group .button {
  width: 50%;
  max-width: 175px;
}

.cta-button {
  padding: 0.5rem;
  border: 0.2rem solid;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #111;
}

.white-button {
  background-color: #fff;
  border-color: #111;
  margin-right: 0.25rem;
}

.white-button:hover {
  border-color: #fff234;
}

.yellow-button {
  background-color: #fff234;
  border-color: #fff234;
  margin-left: 0.25rem;
}

.yellow-button:hover {
  background-color: #fff;
  color: #111;
}

.underscore {
  background: url(//s2.svgbox.net/pen-brushes.svg?ic=brush-1&color=fff234);
  background-position: center bottom;
  background-size: 100% 0.75rem;
  background-repeat: no-repeat;
  width: fit-content;
  margin: auto;
  padding: 0rem 2rem 0.5rem 2rem;
}

.social-sidebar {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.social-sidebar-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--background);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 4px 4px 0 0;
  box-shadow: var(--shadow);
  animation: slideUp 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.4) forwards;
  box-sizing: border-box;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: var(--text);
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
  font-size: 18px;
}

.social-link:hover {
  color: white;
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 119, 255, 0.3);
}

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


@media only screen and (min-width:735px) {
  .section {
    padding: 4rem;
  }

  .flex {
    display: flex;
  }

  .cta-button-group .button {
    width: 50%;
    max-width: 275px;
  }
  
  .cta-button {
    font-size: 1rem;
    text-align: center;
  }

  .social-sidebar {
    right: 1rem;
    top: 80%;
    bottom: auto;
    left: auto;
    width: auto;
    transform: translateY(-50%);
  }
  
  .social-sidebar-content {
    flex-direction: column;
    justify-content: flex-start;
    width: auto;
    border-radius: 4px;
    animation: slideIn 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.4) forwards;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

}

@media only screen and (min-width:1069px) {
  .site-logo {
    display: none;
  }

  .menu-logo {
    display: block !important;
    height: 150px !important;
    width: 150px !important;
    position: absolute !important;
    z-index: 9999;
    margin-left: 5% !important;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.menu-logo.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.menu-logo.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.menu-logo.mega-current-page-ancestor > a.mega-menu-link, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.menu-logo > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item.menu-logo > a.mega-menu-link:focus {
    background-color: unset !important;
  }

  .medium-flex {
    display: flex;
  } 
}




@media only screen and (min-width:1678px) {
  .menu-logo {
    height: 190px !important;
    width: 190px !important;
    margin-left: 15% !important;
  }

}