/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
html {
  background: #000; }

* {
  font-family: "soleil", sans-serif; }

h1, h2, h3 {
  font-family: "dharma-gothic-e", sans-serif; }

h1, h2 {
  font-size: calc(3rem + 2vw);
  padding: 0;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
  color: #FFF; }

h3 {
  font-size: 2rem;
  padding: 0;
  margin: 1rem 0;
  text-transform: uppercase;
  color: #FFF; }

p {
  font-size: 1.1rem;
  line-height: 1.7rem;
  color: #FFF;
  padding: 0;
  margin: 0 0 1rem 0; }

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; }

main {
  padding-top: 80px; }

.btn, #gform_submit_button_1, #gform_submit_button_2 {
  background: #E2763C;
  color: #1C1919;
  padding: 0.8rem 1.2rem;
  font-family: "dharma-gothic-e", sans-serif;
  border-radius: 4px;
  font-size: 1.4rem;
  text-transform: uppercase;
  display: inline-block;
  text-decoration-color: transparent;
  transition: .3s; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus, #gform_submit_button_2:hover, #gform_submit_button_2:focus {
    background: #FFF; }

#gform_submit_button_1, #gform_submit_button_2 {
  border: 0;
  cursor: pointer; }

.grecaptcha-badge {
  visibility: hidden !important; }

.btn-outline {
  font-family: "dharma-gothic-e", sans-serif;
  font-size: 1.4rem;
  color: #FFF;
  text-transform: uppercase;
  text-decoration-color: transparent;
  transition: .3s; }
  .btn-outline:hover, .btn-outline:focus {
    color: #E2763C; }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(1rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.site-header {
  width: 100%;
  background: url("/wp-content/uploads/2026/04/test.png");
  position: fixed;
  height: 80px;
  z-index: 100; }
  .site-header .container {
    height: 80px;
    padding: 0 2rem;
    justify-content: space-between;
    position: relative;
    overflow: visible; }
    @media (min-width: 800px) {
      .site-header .container {
        justify-content: flex-start; } }
  .site-header h1 {
    padding: 1rem 0 0 0;
    margin: 0;
    position: relative; }
  .site-header .site-title {
    position: relative; }
    .site-header .site-title a {
      display: block; }
      .site-header .site-title a img {
        position: relative;
        z-index: 100; }
  .site-header #mobile-button {
    height: 80px;
    appearance: none;
    background: none;
    border: 0;
    position: relative;
    width: 35px;
    display: flex;
    align-items: center;
    cursor: pointer; }
    @media (min-width: 800px) {
      .site-header #mobile-button {
        display: none; } }
    .site-header #mobile-button span {
      width: 35px;
      height: 3px;
      background: #FFF;
      border-radius: 20px;
      position: relative;
      transition: .3s; }
      .site-header #mobile-button span:before {
        content: ' ';
        position: absolute;
        top: -9px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #FFF;
        border-radius: 20px;
        transition: .3s; }
      .site-header #mobile-button span:after {
        content: ' ';
        position: absolute;
        bottom: -9px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #FFF;
        border-radius: 20px;
        transition: .3s; }
    .site-header #mobile-button:hover span, .site-header #mobile-button:focus span {
      background: #E2763C; }
      .site-header #mobile-button:hover span:before, .site-header #mobile-button:hover span:after, .site-header #mobile-button:focus span:before, .site-header #mobile-button:focus span:after {
        background: #E2763C; }
    .site-header #mobile-button.active span {
      background: transparent; }
      .site-header #mobile-button.active span:before {
        top: 0;
        transform: rotate(45deg); }
      .site-header #mobile-button.active span:after {
        bottom: 0;
        transform: rotate(-45deg); }
  .site-header .desktop-socials {
    display: none; }
    @media (min-width: 800px) {
      .site-header .desktop-socials {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 1rem; } }
    .site-header .desktop-socials iconify-icon {
      color: #FFF; }

#main-menu {
  position: fixed;
  width: 100%;
  height: calc(100% - 80px);
  background: #000;
  top: 80px;
  left: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s; }
  @media (min-width: 800px) {
    #main-menu {
      width: auto;
      position: relative;
      height: 80px;
      opacity: 1;
      visibility: visible;
      top: 0;
      background: none;
      padding: 0 0 0 3rem;
      display: flex;
      align-items: center; } }
  #main-menu .menu {
    padding: 5rem 1rem 1rem 1rem;
    margin: 0;
    list-style-type: none; }
    @media (min-width: 800px) {
      #main-menu .menu {
        display: flex;
        padding: 0;
        align-items: center;
        justify-content: center;
        height: 80px; } }
    #main-menu .menu li {
      margin-bottom: 0.5rem;
      transition: .3s;
      opacity: 0;
      transform: translateY(1rem);
      transition-delay: .3s; }
      @media (min-width: 800px) {
        #main-menu .menu li {
          opacity: 1;
          transform: translateY(0);
          margin-bottom: 0;
          padding-right: 1rem; } }
      #main-menu .menu li:nth-child(2) {
        transition-delay: .4s; }
      #main-menu .menu li:nth-child(3) {
        transition-delay: .5s; }
      #main-menu .menu li:nth-child(4) {
        transition-delay: .6s; }
      #main-menu .menu li:nth-child(5) {
        transition-delay: .7s; }
      #main-menu .menu li:nth-child(6) {
        transition-delay: .8s; }
      #main-menu .menu li:nth-child(7) {
        transition-delay: .9s; }
      #main-menu .menu li:last-child {
        margin-bottom: 0; }
        #main-menu .menu li:last-child a {
          color: #E2763C; }
      #main-menu .menu li a {
        font-size: 1.8rem;
        font-family: "dharma-gothic-e", sans-serif;
        color: #FFF;
        text-transform: uppercase;
        text-decoration-color: transparent;
        transition: .3s; }
        @media (min-width: 800px) {
          #main-menu .menu li a {
            font-size: 1.3rem; } }
        #main-menu .menu li a:hover, #main-menu .menu li a:focus {
          color: #E2763C; }
  #main-menu.active {
    opacity: 1;
    visibility: visible; }
    #main-menu.active .menu li {
      opacity: 1;
      transform: translateY(0); }

.sub-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: none;
  transition: .3s; }
  .sub-menu.active {
    display: block;
    margin-top: 1rem; }
  .sub-menu li {
    padding-left: 1rem; }
  @media (min-width: 800px) {
    .sub-menu {
      position: absolute;
      background: #1C1919;
      min-width: 100px;
      padding: 2rem 1rem; }
      .sub-menu.active {
        display: flex; }
      .sub-menu li {
        padding-left: 0;
        margin-right: 1rem !important;
        display: block; }
        .sub-menu li:last-child {
          margin-right: 0 !important; }
          .sub-menu li:last-child a {
            color: #FFF !important; }
            .sub-menu li:last-child a:hover, .sub-menu li:last-child a:focus {
              color: #E2763C !important; } }

#menu-item-160 {
  cursor: pointer; }

.site-footer {
  background: url("/wp-content/uploads/2026/04/test.png"); }
  .site-footer .container {
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center; }
    @media (min-width: 800px) {
      .site-footer .container {
        flex-direction: row;
        align-items: flex-start; } }
    .site-footer .container .col {
      width: 100%;
      margin-bottom: 2rem; }
      @media (min-width: 800px) {
        .site-footer .container .col:nth-child(2), .site-footer .container .col:nth-child(3), .site-footer .container .col:nth-child(4) {
          width: 33.3333333%; } }
      @media (min-width: 992px) {
        .site-footer .container .col {
          text-align: left; }
          .site-footer .container .col img {
            margin-bottom: 1rem; }
          .site-footer .container .col:first-child {
            width: 30%; }
          .site-footer .container .col:nth-child(2), .site-footer .container .col:nth-child(3) {
            width: 20%; }
          .site-footer .container .col:nth-child(4) {
            width: 30%;
            text-align: right; } }
      .site-footer .container .col .title {
        font-family: "dharma-gothic-e", sans-serif;
        font-size: 1.5rem;
        text-transform: uppercase; }
      .site-footer .container .col img {
        width: 100%;
        max-width: 100px; }
      .site-footer .container .col .club-name {
        color: #FFF;
        text-transform: uppercase; }
        .site-footer .container .col .club-name span {
          font-family: "dharma-gothic-e", sans-serif;
          font-size: 2.5rem; }
      .site-footer .container .col ul {
        list-style-type: none;
        padding: 0;
        margin: 0; }
        .site-footer .container .col ul li {
          margin-bottom: 1rem; }
          .site-footer .container .col ul li a {
            font-family: "dharma-gothic-e", sans-serif;
            color: #FFF;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 1.5rem;
            text-decoration-color: transparent; }
            .site-footer .container .col ul li a:hover, .site-footer .container .col ul li a:focus {
              color: #E2763C; }
      .site-footer .container .col iconify-icon {
        color: #FFF; }
        .site-footer .container .col iconify-icon:hover, .site-footer .container .col iconify-icon:focus {
          color: #E2763C; }
  .site-footer .footer-bottom {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7); }
    .site-footer .footer-bottom a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration-color: transparent; }

.slides {
  height: calc(100svh - 80px);
  overflow: hidden;
  margin: 0;
  border: 0 !important;
  position: relative; }
  .slides .slick-dots {
    padding: 0 2rem;
    position: absolute;
    bottom: 1rem;
    max-width: 1400px;
    left: 0;
    right: 0;
    margin: 0 auto; }

.slide {
  width: 100%;
  height: calc(100svh - 80px);
  position: relative; }
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    .slide .overlay .container {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 2rem; }
      .slide .overlay .container .title {
        font-size: calc(3rem + 2vw);
        font-family: "dharma-gothic-e", sans-serif;
        color: #FFF;
        padding: 0;
        margin: 0;
        text-transform: uppercase;
        position: relative;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-delay: .3s;
        animation-fill-mode: forwards; }
        .slide .overlay .container .title:before {
          content: 'Paisley Youth & Senior Football';
          position: absolute;
          font-size: 1.5rem;
          color: #E2763C;
          top: -3rem; }
      .slide .overlay .container .description {
        font-size: 1.1rem;
        color: #FFF;
        margin-top: 2rem;
        opacity: 0;
        transform: translateY(1rem);
        animation: fadeup 1s ease;
        animation-delay: .5s;
        animation-fill-mode: forwards; }

.slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  width: 100%;
  max-width: 1400px;
  left: 0;
  right: 0; }
  .slick-dots li {
    margin-right: 0.5rem; }
    .slick-dots li button {
      font-size: 0;
      appearance: none;
      background: #FFF;
      border: 0;
      width: 10px;
      height: 10px;
      border-radius: 200px;
      cursor: pointer;
      transition: .3s; }
  .slick-dots .slick-active button {
    width: 30px;
    background: #E2763C; }

.home-news {
  background: none !important; }
  .home-news .blog-post {
    text-decoration-color: transparent; }
    .home-news .blog-post:hover .image img, .home-news .blog-post:focus .image img {
      transform: scale(1.1, 1.1); }
    .home-news .blog-post .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden; }
      .home-news .blog-post .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
    .home-news .blog-post h3 {
      margin-bottom: 0; }
    .home-news .blog-post .meta {
      font-size: 1rem;
      padding: 0;
      margin: 0;
      color: rgba(255, 255, 255, 0.7); }

.blog-feed {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 3rem; }
  @media (min-width: 600px) {
    .blog-feed {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 800px) {
    .blog-feed {
      grid-template-columns: repeat(3, 1fr); } }
  .blog-feed .blog-post {
    text-decoration-color: transparent;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards; }
    .blog-feed .blog-post:nth-child(2) {
      animation-delay: .4s; }
    .blog-feed .blog-post:nth-child(3) {
      animation-delay: .5s; }
    .blog-feed .blog-post:nth-child(4) {
      animation-delay: .6s; }
    .blog-feed .blog-post:nth-child(5) {
      animation-delay: .7s; }
    .blog-feed .blog-post:nth-child(6) {
      animation-delay: .8s; }
    .blog-feed .blog-post:nth-child(n+7) {
      animation-delay: 1s; }
    .blog-feed .blog-post:hover .image img, .blog-feed .blog-post:focus .image img {
      transform: scale(1.1, 1.1); }
    .blog-feed .blog-post .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden; }
      .blog-feed .blog-post .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
    .blog-feed .blog-post h3 {
      margin-bottom: 0; }
    .blog-feed .blog-post .meta {
      font-size: 1rem;
      padding: 0;
      margin: 0;
      color: rgba(255, 255, 255, 0.7); }

.blog-navigation {
  width: 100%; }
  @media (min-width: 600px) {
    .blog-navigation {
      grid-column: 1/3; } }
  @media (min-width: 800px) {
    .blog-navigation {
      grid-column: 1/4; } }
  .blog-navigation ul {
    list-style-type: none;
    padding: 0;
    display: flex; }
    .blog-navigation ul li {
      margin-right: 0.5rem; }
      .blog-navigation ul li.active a {
        background: #FFF;
        color: #1C1919; }
      .blog-navigation ul li a {
        border: 1px solid #FFF;
        padding: 0.3rem 0.5rem;
        border-radius: 4px;
        color: #FFF;
        text-decoration-color: transparent;
        transition: .3s; }
        .blog-navigation ul li a:hover, .blog-navigation ul li a:focus {
          background: #FFF;
          color: #1C1919; }

.share {
  color: #FFF;
  border-top: 1px solid #FFF;
  padding: 1rem 0 0 0;
  margin: 1rem 0 0 0; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap; }
  .share-buttons li {
    font-size: 0.8rem;
    display: flex;
    margin-right: 1rem; }
    .share-buttons li a {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem 1.5rem; }
  .share-buttons svg {
    fill: #fff;
    width: 30px;
    height: 30px;
    margin-right: 0.5rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White;
    border-radius: 6px;
    text-decoration-color: transparent; }

.share-twitter {
  background: #1da1f2; }
  .share-twitter:hover, .share-twitter:focus {
    background: #0967a0; }

.share-facebook {
  background: #3b5998; }
  .share-facebook:hover, .share-facebook:focus {
    background: #2d4373; }

.share-pinterest {
  background: #b5071a; }

.share-whatsapp {
  background: #25D366;
  color: #1C1919; }

.share-email {
  background: #FFA500;
  color: #1C1919 !important; }
  .share-email:hover, .share-email:focus {
    background: #cc8400; }

.share-linkedin {
  background: #0072b1; }
  .share-linkedin:hover, .share-linkedin:focus {
    background: #00517e; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #1C1919; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #1C1919;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

.upcoming-matches {
  width: 100%;
  padding: 4rem 0;
  background: #1C1919; }
  .upcoming-matches .container {
    padding: 0 2rem; }
    .upcoming-matches .container .match-feed {
      width: 100%; }
  .upcoming-matches .slick-list {
    margin: 0 -1rem; }
  .upcoming-matches .slick-slide {
    padding: 0 1rem; }
  .upcoming-matches .match {
    background: url("/wp-content/uploads/2026/04/test.png");
    border-radius: 8px;
    padding: 2rem;
    margin: 0 1rem;
    position: relative; }
    .upcoming-matches .match:after {
      content: ' ';
      position: absolute;
      width: 100%;
      height: 6px;
      background: #E2763C;
      border-radius: 8px;
      bottom: 0;
      left: 0; }
    .upcoming-matches .match .teams {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: space-between; }
      .upcoming-matches .match .teams .team {
        display: flex;
        flex-direction: column;
        text-align: center; }
        .upcoming-matches .match .teams .team img {
          width: 80px; }
        .upcoming-matches .match .teams .team p {
          color: #FFF;
          font-family: "dharma-gothic-e", sans-serif;
          text-transform: uppercase;
          font-size: 1.5rem;
          padding: 0;
          margin: 0.5rem 0 0 0; }
      .upcoming-matches .match .teams span {
        color: #FFF;
        font-family: "dharma-gothic-e", sans-serif;
        font-size: 2rem; }
    .upcoming-matches .match .info {
      color: #FFF;
      font-size: 1rem;
      width: 100%;
      margin-top: 2rem;
      text-align: center; }
      .upcoming-matches .match .info span {
        margin: 0 1rem;
        position: relative; }
        .upcoming-matches .match .info span:after {
          content: ' ';
          position: absolute;
          width: 6px;
          height: 6px;
          border-radius: 200px;
          top: 50%;
          transform: translateY(-50%);
          background: #FFF;
          right: -1.1rem; }
        .upcoming-matches .match .info span:last-child:after {
          display: none; }

.match-feed-single {
  display: flex;
  flex-direction: column;
  margin-top: 2rem; }
  .match-feed-single .match {
    background: #1C1919;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden; }
    @media (min-width: 800px) {
      .match-feed-single .match {
        flex-direction: row; } }
    .match-feed-single .match .info {
      background: #242020;
      display: flex;
      flex-direction: column;
      text-align: center;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      color: #FFF;
      min-width: 200px; }
      .match-feed-single .match .info span {
        font-family: "dharma-gothic-e", sans-serif;
        text-transform: uppercase;
        font-size: 1.5rem;
        margin-bottom: 1rem; }
      .match-feed-single .match .info p {
        font-size: 1rem;
        margin: 0; }
    .match-feed-single .match .teams {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2rem; }
      .match-feed-single .match .teams .team {
        display: flex;
        align-items: center; }
        .match-feed-single .match .teams .team p {
          font-family: "dharma-gothic-e", sans-serif;
          text-transform: uppercase;
          font-size: 1.5rem;
          padding-left: 1rem;
          margin: 0; }
          .match-feed-single .match .teams .team p span {
            font-size: 1.3rem;
            color: #E2763C; }
        .match-feed-single .match .teams .team .image {
          max-width: 80px; }
      .match-feed-single .match .teams span {
        color: #FFF;
        font-family: "dharma-gothic-e", sans-serif;
        font-size: 2rem; }

html {
  box-sizing: border-box; }

* {
  box-sizing: inherit; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

.image-text {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  @media (min-width: 992px) {
    .image-text {
      padding: 6rem 2rem; } }
  .image-text article {
    width: 100%;
    margin-bottom: 2rem; }
    @media (min-width: 800px) {
      .image-text article {
        width: 60%;
        padding-right: 6em; } }
    .image-text article .btns {
      display: block;
      margin-top: 2rem; }
      .image-text article .btns .btn-outline {
        margin-left: 1rem; }
  .image-text .image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden; }
    @media (min-width: 800px) {
      .image-text .image {
        width: 35%;
        height: 500px;
        margin-left: 5%; } }
    .image-text .image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.teams {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 800px) {
    .teams h2 {
      grid-column: 1/3; } }
  @media (min-width: 800px) {
    .teams {
      grid-template-columns: repeat(2, 1fr); } }
  .teams .team-box {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative; }
    .teams .team-box:hover .overlay, .teams .team-box:focus .overlay {
      background: rgba(226, 118, 60, 0.8); }
    .teams .team-box:hover .overlay .btn-outline, .teams .team-box:focus .overlay .btn-outline {
      opacity: 1;
      transform: translateY(0); }
    .teams .team-box img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .teams .team-box .overlay {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.3);
      width: 100%;
      height: 100%;
      border-radius: 8px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-end;
      transition: .3s; }
      .teams .team-box .overlay h2 {
        margin: 0; }
      .teams .team-box .overlay .btn-outline {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease; }

.cta {
  width: 100%;
  background: #E2763C url("/wp-content/uploads/2026/04/thistle-faded-2.png");
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4rem; }
  .cta .btn {
    background: #1C1919;
    color: #FFF;
    font-size: 2rem; }
    .cta .btn:hover, .cta .btn:focus {
      background: #FFF;
      color: #1C1919; }

.page-header {
  width: 100%;
  height: 300px;
  position: relative; }
  .page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
  .page-header .container {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
  .page-header img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .page-header h1 {
    opacity: 0;
    transform: translateY(1rem);
    margin: 0;
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards; }

.std-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }
  .std-content li {
    color: #FFF;
    font-size: 1.1rem; }
  .std-content .gfield_label {
    font-size: 0.8rem;
    color: #FFF;
    font-weight: 400 !important; }
  .std-content .gfield_required {
    color: #E2763C !important; }
  .std-content input[type='text'], .std-content input[type='email'], .std-content input[type='tel'] {
    height: 40px;
    border-radius: 8px; }
    .std-content input[type='text']:focus, .std-content input[type='email']:focus, .std-content input[type='tel']:focus {
      border-color: #E2763C;
      box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2); }
  .std-content select {
    height: 40px;
    border-radius: 8px;
    padding: 0 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px; }
    .std-content select:focus {
      border-color: #E2763C;
      box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2); }
  .std-content textarea {
    border-radius: 8px; }
  .std-content .gfield_consent_label {
    color: #FFF;
    font-size: 0.8rem; }
    .std-content .gfield_consent_label a {
      color: #E2763C; }
  .std-content p {
    color: #FFF; }
    .std-content p a {
      color: #E2763C; }

.std-content-small {
  max-width: 980px; }

.committee {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem 2rem; }
  @media (min-width: 600px) {
    .committee h3 {
      grid-column: 1/3; } }
  @media (min-width: 800px) {
    .committee h3 {
      grid-column: 1/4; } }
  @media (min-width: 600px) {
    .committee {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 800px) {
    .committee {
      grid-template-columns: repeat(3, 1fr); } }
  .committee .staff {
    background: #1C1919;
    padding: 2rem;
    border-radius: 8px;
    position: relative; }
    .committee .staff:after {
      position: absolute;
      content: ' ';
      width: 100%;
      height: 3px;
      background: #E2763C;
      bottom: 0;
      left: 0;
      border-radius: 200px; }
    .committee .staff p span {
      font-family: "dharma-gothic-e", sans-serif;
      font-size: 1.7rem;
      text-transform: uppercase; }
    .committee .staff p {
      margin: 0; }
    .committee .staff a {
      color: #FFF;
      text-decoration-color: transparent; }

.committee-single {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem; }

.players {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0; }
  @media (min-width: 600px) {
    .players h3 {
      grid-column: 1/3; } }
  @media (min-width: 800px) {
    .players h3 {
      grid-column: 1/4; } }
  @media (min-width: 600px) {
    .players {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 800px) {
    .players {
      grid-template-columns: repeat(3, 1fr); } }
  .players .player {
    border-radius: 8px;
    position: relative;
    margin: 0 0 2rem 0; }
    @media (min-width: 600px) {
      .players .player {
        margin: 0 2rem 2rem 0; } }
    .players .player p {
      font-family: "dharma-gothic-e", sans-serif;
      font-size: 1.7rem;
      text-transform: uppercase;
      margin: 0; }
    .players .player .image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 1rem; }
      .players .player .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top; }

.resources {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 600px) {
    .resources h3 {
      grid-column: 1/3; } }
  @media (min-width: 800px) {
    .resources h3 {
      grid-column: 1/4; } }
  @media (min-width: 600px) {
    .resources {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 800px) {
    .resources {
      grid-template-columns: repeat(3, 1fr); } }
  .resources .file {
    border-radius: 8px;
    position: relative;
    background: #1C1919;
    padding: 2rem;
    color: #FFF;
    font-family: "dharma-gothic-e", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: flex;
    flex-direction: column; }
    .resources .file:after {
      position: absolute;
      content: ' ';
      width: 100%;
      height: 3px;
      background: #E2763C;
      bottom: 0;
      left: 0;
      border-radius: 200px; }
    .resources .file a {
      color: #E2763C;
      text-decoration-color: transparent;
      font-family: "dharma-gothic-e", sans-serif;
      transition: .3s; }
      .resources .file a:hover, .resources .file a:focus {
        color: #FFF; }

.large-padding {
  padding: 4rem 2rem;
  max-width: 1200px; }

.fixtures {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem; }
  .fixtures .outer-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6); }
  .fixtures .outer-tab, .fixtures .inner-tab {
    padding: 1rem;
    font-size: 1.7rem;
    color: #FFF;
    border: none;
    background: none;
    transition: color 0.15s;
    font-family: "dharma-gothic-e", sans-serif;
    text-transform: uppercase;
    cursor: pointer; }
    .fixtures .outer-tab.active, .fixtures .inner-tab.active {
      color: #E2763C; }
    .fixtures .outer-tab:hover, .fixtures .outer-tab:focus, .fixtures .inner-tab:hover, .fixtures .inner-tab:focus {
      color: #E2763C; }
  .fixtures .section, .fixtures .inner-section {
    display: none; }
    .fixtures .section.active, .fixtures .inner-section.active {
      display: block; }
  .fixtures .inner-tabs {
    display: flex;
    align-items: center;
    justify-content: center; }

.fixtures-wide {
  max-width: 1400px; }
  .fixtures-wide .inner-section {
    display: none; }
    .fixtures-wide .inner-section.active {
      display: grid; }
  .fixtures-wide .tabs {
    border-bottom: 1px solid #FFF; }
  .fixtures-wide .tab {
    padding: 1rem;
    font-size: 1.7rem;
    color: #FFF;
    border: none;
    background: none;
    transition: color 0.15s;
    font-family: "dharma-gothic-e", sans-serif;
    text-transform: uppercase;
    cursor: pointer; }
    .fixtures-wide .tab.active {
      color: #E2763C; }
    .fixtures-wide .tab:hover, .fixtures-wide .tab:focus {
      color: #E2763C; }

.gallery {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem; }
  .gallery ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2rem; }
    @media (min-width: 576px) {
      .gallery ul {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 800px) {
      .gallery ul {
        grid-template-columns: repeat(3, 1fr); } }
    .gallery ul li a {
      width: 100%;
      height: 250px;
      display: block;
      border: 6px solid transparent;
      transition: .3s;
      overflow: hidden; }
      .gallery ul li a img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s; }
      .gallery ul li a:hover, .gallery ul li a:focus {
        border-color: #E2763C; }
        .gallery ul li a:hover img, .gallery ul li a:focus img {
          transform: scale(1.1, 1.1); }

.center h2 {
  text-align: center;
  width: 100%;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .3s;
  animation-fill-mode: forwards; }
.center .match-feed {
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .5s;
  animation-fill-mode: forwards; }

.next-match {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem; }
  .next-match h2 {
    font-size: 2.5rem; }

.socials iconify-icon {
  color: #FFF; }
  .socials iconify-icon:hover, .socials iconify-icon:focus {
    color: #E2763C; }

.no-bottom-pad {
  padding-bottom: 2rem; }

.squad {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  padding: 2rem 0;
  text-align: center; }
  @media (min-width: 576px) {
    .squad {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 800px) {
    .squad {
      grid-template-columns: repeat(3, 1fr); } }
  .squad .player {
    background: #1C1919;
    padding: 1rem;
    position: relative;
    border-radius: 8px; }
    .squad .player:after {
      position: absolute;
      content: ' ';
      width: 100%;
      height: 3px;
      background: #E2763C;
      bottom: 0;
      left: 0;
      border-radius: 200px; }
  .squad p {
    font-family: "dharma-gothic-e", sans-serif;
    text-transform: uppercase;
    margin: 0; }
    .squad p strong {
      font-family: "dharma-gothic-e", sans-serif;
      font-size: 1.5rem; }

.no-top-pad {
  padding-top: 0; }

.sponsors {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
  text-align: center; }
  .sponsors h2 {
    font-size: 2rem; }
  .sponsors .sponsors-feed {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center; }
    .sponsors .sponsors-feed .sponsor {
      margin: 0 1rem; }
    .sponsors .sponsors-feed img {
      width: 80%;
      margin: 0 10%; }

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */

/*# sourceMappingURL=style.css.map */
