@charset "utf-8";
/* CSS Document */

.contacts-page h3 {
    margin-bottom: 20px !important;
}


/* --- Main container --- */
/* --- Main container --- */

.team-name-wrap {
    width: 100%;
    margin-bottom: 12px;
}

.team-name {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.team-training-schedule,
.team-contacts {
    max-width: 1260px;
    margin: 30px auto;
    padding: 25px;
    border: 1px solid #d0d0d0;
    border-radius: 14px;
    background-color: #f7f9f7;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-training-schedule:hover,
.team-contacts:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* --- Titles --- */
.team-training-schedule h3, .team-contacts h3 {
    color: #00753e;
    font-size: 22px !important;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}
.team-training-schedule h3::after,
.team-contacts h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #00753e;
    margin-top: 6px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.team-training-schedule h3:hover::after,
.team-contacts h3:hover::after {
    width: 120px;
}

/* --- Training Item --- */

/* Heading style */
.contacts-page h3 {
    grid-column: 1 / -1;
    font-size: 1.8em;
    color: #00753e;
    position: relative;
    margin-bottom: 15px;
}

/* Underline effect */
.contacts-page h3::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #00753e;
    margin-top: 6px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Hover animation */
.contacts-page h3:hover::after {
    width: 120px;
}

.team-training-item {
    margin-bottom: 22px;
    padding: 18px;
    background-color: #ffffff;
    border-radius: 12px;
    border-left: 5px solid #00753e;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.team-training-item:hover {
    transform: translateX(6px);
    background-color: #f0fef5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* text blocks */
.team-training-item p,
.team-training-item span {
    margin: 5px 0;
    flex: 1 1 auto;
    font-size: 1.05em;
    font-weight: 500;
}

/* --- Button RIGHT CENTER FIX --- */
.training-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-left: auto;
    align-self: center;

    padding: 10px 18px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff !important;
    background-color: #00753e !important;
    border-radius: 8px;
    text-decoration: none;

    transition: all 0.3s ease !important;
    box-shadow: 0 5px 12px rgba(0, 117, 62, 0.4);
    white-space: nowrap;
}

.training-action-button:hover {
    background-color: #005a2a;
    transform: scale(1.08);
    box-shadow: 0 7px 18px rgba(0,117,62,0.6);
}



/* ===== Contacts Page Layout ===== */
.contacts-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
}

/* Headings full width */


/* Paragraphs under headings full width */
.contacts-page > p {
    grid-column: 1 / -1;
}

/* ===== Contact Card ===== */
.team-contact {
    padding: 18px;
    border-radius: 12px;
    background-color: #ffffff;
    border-left: 5px solid #00753e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    font-size: 1.05em;
}


/* Hover effect */
.team-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Name */
.team-contact strong {
    display: block;
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #222;
}

/* Role text */
.team-contact p {
    margin: 4px 0;
    color: #444;
}

/* ===== Links ===== */
.team-contact a {
    color: #00753e;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;

    /* performance fix */
    will-change: transform;
    transform: translateX(0);

    transition: 
        color 0.2s ease,
        transform 0.3s ease-out;
}

.team-contact a:hover {
    color: #005a2a;
    transform: translateX(4px); /* reduced distance = smoother feel */
}

/* ===== Icons ===== */
.team-contact i {
    font-size: 18px;
    color: #00753e;
    transition: all 0.3s ease;
}

.team-contact i:hover {
    transform: scale(1.1);
    color: #005a2a;
}

/* ===== External Link (Teams section) ===== */
.contacts-page > p a {
    color: #00753e;
    font-weight: bold;
}

.contacts-page > p a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .contacts-page {
        grid-template-columns: 1fr;
    }

    .contacts-page h3 {
        font-size: 1.5em;
    }
}







.icon-menu{
display:flex;
gap:25px;
list-style:none;
padding:0;
margin:0;
}

.icon-menu a{
display:flex;
align-items:center;
gap:8px;
text-decoration:none;
color:#222;
font-weight:500;
}

.icon-menu svg{
width:18px;
height:18px;
fill:#0a7d3b;
}

.icon-menu a:hover{
color:#0a7d3b;
}














/* --- Club Intro Section --- */
.club-intro {
  padding:120px 20px;
  background:#f7f9fb;
}

.container{
  max-width:1260px;
  margin:auto;
  text-align:center;
}

/* --- Club Title --- */
.club-title{
  font-size:48px;
  margin-bottom:30px;
  color:#00753e;
  font-weight:800;
  text-transform: uppercase;
  letter-spacing:1px;
  transition:all 0.4s ease;
}

/* --- Club Text --- */
.club-text{
  max-width:850px;
  margin:0 auto 50px;
  font-size:19px;
  line-height:1.8;
  color:#333;
  transition:all 0.4s ease;
}

/* --- 3-column layout --- */
.club-links{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:35px;
  justify-items:center;
}

.club-card{
  background:#fff;
  padding:45px 35px;
  width:100%;
  max-width:260px;
  text-decoration:none;
  border-radius:15px;
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
  transition:all 0.4s ease;
  color:#333;
  text-align:center;
  cursor:pointer;
}

.club-card i{
  font-size:40px;
  color:#00753e;
  margin-bottom:18px;
  transition:all 0.4s ease;
  display:block;
}

.club-card h3{
  font-size:22px;
  font-weight:700;
  transition:all 0.4s ease;
}

/* --- Hover animations --- */
.club-card:hover{
  transform:translateY(-12px) scale(1.08);
  box-shadow:0 24px 60px rgba(0,0,0,0.2);
}

.club-card:hover i{
  color:#005a2a;
  transform:scale(1.4) rotate(8deg);
}

.club-card:hover h3{
  color:#00753e;
  letter-spacing:1px;
}

/* --- Responsive --- */
@media (max-width:900px){
  .club-links{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:600px){
  .club-links{
    grid-template-columns:1fr;
  }

  .club-title{
    font-size:36px;
  }

  .club-text{
    font-size:17px;
  }

  .club-card{
    padding:35px 25px;
    max-width:90%;
  }

  .club-card i{
    font-size:36px;
  }

  .club-card h3{
    font-size:20px;
  }
}









.single-team .post-info {
    display: none;
}









/* Footer links style */
.footer-links ul.icons li a {
    font-size: 16px; /* Font size */
    color: #ffffff; /* Default link color */
    text-decoration: none;
    position: relative;
    padding-left: 8px;
    display: inline-block;
    transition: color 0.3s ease; /* Smooth color transition */
}

/* Icon before the link */
.footer-links ul.icons li i {
    margin-right: 6px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth icon transition */
}

/* Hover effect */
.footer-links ul.icons li a:hover {
    color: #ffcc00; /* Link highlight color */
}

.footer-links ul.icons li a:hover i {
    transform: translateX(5px); /* Slide icon */
    color: #ffcc00; /* Icon color */
}

/* Optional underline effect */
.footer-links ul.icons li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffcc00; /* Underline color */
    left: 0;
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-links ul.icons li a:hover::after {
    width: 100%;
}




/* Wrapper for two columns */
.links-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap; /* make it responsive on small screens */
}

/* UL style */
.links-list {
  list-style: none;
  margin: 0;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px; /* allows responsive width */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* List items */
.links-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9e9e9;
    transition: all 0.3s ease;
    padding-right: 18px;
}

/* remove last border */
.links-list li:last-child {
  border-bottom: none;
}

/* hover effect for list item */
.links-list li:hover {
  padding-left: 10px;
  background: #f5fbf8;
}

/* text inside list */
.links-list span {
  color: #333;
  font-weight: 500;
  font-size: 15px;
}

/* view link button */
.links-list a {
  text-decoration: none;
  color: #00753e;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid #00753e;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

/* hover effect for button */
.links-list a:hover {
  background: #00753e;
  color: #ffffff;
  transform: translateX(4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .links-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}




.erin-camp {
    background: #f0fdf4; /* light green background */
    border: 2px solid #00753e; /* primary color border */
    border-radius: 12px;
    padding: 30px;
    max-width: 650px;
    margin: 40px auto;
    
    color: #004d2d;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.erin-camp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.erin-camp h2 {
    font-size: 2rem;
    color: #00753e;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.erin-camp p, 
.erin-camp ul {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.erin-camp ul {
    list-style-type: disc;
    padding-left: 25px;
}

.erin-camp ul li {
    margin-bottom: 8px;
}

.erin-camp a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00753e, #00964d);
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: background 0.3s, transform 0.3s;
}

.erin-camp a:hover {
    background: linear-gradient(135deg, #00964d, #00753e);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}




.btn-new {
    background-color: #00753e !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background-color 0.3s, transform 0.1s !important;
}

.btn-new:hover {
    background-color: #005d2d !important; /* slightly darker on hover */
}

.btn-new:active {
    background-color: #00471f !important; /* even darker on click */
    transform: scale(0.98) !important;    /* subtle pressed effect */
}



.contacts-page {
    padding-top: 5%;
}


#row-unique-0 .uncont {
    padding-top: 15px !important;
}