/*
Theme Name: Kangoo Basket
Author: grzegorzgorny.com
Author URI: https://www.grzegorzgorny.com
Description: Official website of Kangoo Basket
Version: 1.0
*/


*, html { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --font-regular: 'Plus Jakarta Sans', system-ui, -apple-system;
    --font-headings: 'Inter Tight', system-ui, -apple-system;
        --color-text: #eee;
        --white-color: #fefefe;
        --primary-color: #060809;
        --secondary-color: #161b20;
        --third-color: #757575;
        --contrast-color: #0245ff;
        --contrast-color-hover: #003ada;
        --border-radius: 10px;
        --radius-button: 35px;
        }

body {
    box-sizing: border-box;
    background: #fefefe;
    background-attachment: fixed;
    background-size: cover;
    font-family: var(--font-regular);
    font-size: 16px;
    color: var(--color-text);
    font-weight: 500;
}

a { text-decoration: none; }

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
}
h2 {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}
.headlines {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}
.headline-anchor {
    position: relative;
    display: flex;
    align-items: center;
    padding: 7px 0;
    font-size: 16px;
    color: var(--color-text);
    letter-spacing: 0.5px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.headline-anchor:hover {
    color: var(--contrast-color);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.section-row {
    display: flex;
    width: 100%;
}
.section-row--center {
    width: 60%;
    margin: 0 auto;
}
.section-row--wide {
    width: 100%;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */

.header-row {
    padding: 8px 0;
    background: var(--white-color);
}
.header-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}
.header-content--nav-main,
.header-content--nav-plus {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.header-content--nav-plus .header-content--navigation ul li {
    margin: 0 0 0 30px;
}
.header-content--branding {
    width: 100px;
    margin-right: 50px;
}
.header-content--branding img {
    width: 100px;
}
.header-content--navigation ul {
    list-style: none;
    margin: 0; padding: 0;
}
.header-content--navigation ul li {
    position: relative;
    display: inline-block;
    padding: 7px 0;
    margin: 0 30px 0 0;
}
.header-content--navigation ul li::after {
    position: absolute;
    bottom: 0; left: 0;
    width: 0%;
    height: 3px;
    background: var(--contrast-color);
    content: '';
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.header-content--navigation ul li:hover::after {
    width: 100%;
}
.header-content--navigation ul li a {
    color: var(--primary-color);
    font-weight: 500;
}
/* MOBILE MENU */
.header-nav-mobile {
    position: relative;
    z-index: 9999;
    display: none;
    width: 38px;
    cursor: pointer;
    appearance: none;
  }
  .header-nav-mobile .mobile-bar, .header-nav-mobile::before, .header-nav-mobile::after {
    display: block;
    width: 30%;
    height: 4px;
    background: #131b1d;
    margin: 5px 0;
    content: '';
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
  }
  .header-nav-mobile::before {
    width: 100%;
  }
  .header-nav-mobile::after {
    width: 60%;
  }
  .header-nav-mobile:hover .mobile-bar, .header-nav-mobile:hover::before, .header-nav-mobile:hover::after {
    width: 100%;
  }
  .header-nav-mobile.is-active::before {
    width: 100%;
    background: #fefefe;
    transform: rotate(-45deg) translate(-11px, -5px);
  }
  .header-nav-mobile.is-active::after {
    width: 100%;
    background: #fefefe;
    transform: rotate(45deg) translate(-17px, -1px);
  }
  .header-nav-mobile.is-active .mobile-bar {
    opacity: 0;
  }
  
  .menu-overlay {
    background: rgba(0,0,0,0.9);
    height: 100vh;
    width: calc(100% - 4rem);
    right: 0;
    position: fixed;
    padding: 8rem 2rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    z-index: 22;
  }
  .menu-overlay.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
  }
  
  .background-overlay {
    background-color: rgba(0,0,0,0.5);
    width: 0%;
    height: 100vh;
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    position: fixed;
    right: 0;
  }
  .background-overlay.bg-overlay {
    opacity: 1;
    width: 100%;
  }
  .menu-overlay--nav ul {
    list-style-type: none;
    margin: 0; padding: 0;
  }
  .menu-overlay--nav ul li {
    display: block;
    position: relative;
  }
  .menu-overlay--nav ul li a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-headings);
    font-size: 36px;
    color: var(--color-text);
    font-weight: 800;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
  .menu-overlay--nav ul li a:hover {
    color: var(--third-color);
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
}
  .menu-overlay--nav ul li:nth-child(8) a,
  .menu-overlay--nav ul li:nth-child(9) a {
    font-size: 36px;
    font-weight: 400;
  }

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.banner-row {
    padding-top: 30px;
    background: var(--primary-color);
}
.banner-row--banner {
    width: 100%;
    margin: 0 auto;
}
.banner-row--banner img {
    width: 100%;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}
.video-banner {
width: 100%;
}
@media (min-aspect-ratio: 16/9) {
    .video-banner {
        width: 100%;
        height: auto;
    }
}
/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.schedule-row {
    padding: 70px 0;
    background: var(--primary-color) url('images/score-bg.jpg') no-repeat center center;
}
.schedule-row--content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.schedule-row--content-item {
    width: 32%;
    padding: 2%;
}
.schedule-row--content-item-date {
    width: 100%;
    padding-bottom: 15px;
    font-size: 14px;
    color: var(--color-text);
    text-transform: uppercase;
}
.schedule-row--content-item-team {
    width: 100%;
    padding: 1px 0;
    font-family: var(--font-headings);
    font-size: 36px;
    font-weight: 800;
}
.schedule-row--content-item-score {
    display: flex;
    align-items: flex-end;
    width: 100%;
    padding-top: 15px;
    font-size: 24px;
    font-weight: 500;
}
.schedule-row--content-item-score span {
    display: block;
    width: 50px;
    height: 2px;
    margin: 0 10px;
    background: var(--color-text);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.quote-row {
    padding: 200px 0;
    background: url('images/quote-bg.svg') no-repeat center center var(--secondary-color);
}
.quote-row--content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-family: var(--font-headings);
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}
.quote-row--content span {
    color: var(--contrast-color);
}
.quote-row--content-author {
    margin-top: 60px;
    font-family: var(--font-regular);
    font-size: 14px;
    color: var(--third-color);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: none;
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.roster-row {
    padding: 100px 0;
    background: var(--primary-color);
}
.roster-row--content {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.roster-row--content-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.roster-row--content-item img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}
.roster-row--content-item h3 {
    margin-bottom: 5px;
    font-family: var(--font-headings);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.news-row {
	display: none;
    padding: 100px 0;
    background: var(--secondary-color);
}
.news-row-content {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.news-row-content-item {
    display: flex;
    flex-direction: column;
    width: 33.33333%;
    margin: 1%; 
}
.home-team-mark {
	color: #fa6800;
}
.news-row-content-item img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.news-row-content-item:hover img {
    filter: brightness(80%);
    -webkit-filter: brightness(80%);
}
.news-row-content-item h3 {
    font-family: var(--font-headings);
    font-size: 36px;
}
.news-row-content-item a {
    color: var(--color-text);
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.news-row-content-item:hover a {
    color: var(--contrast-color);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
.links-row {
    padding: 250px 0 0;
    background: var(--white-color);
}
.links-row--content {
    display: flex;
    justify-content: center;
}
.links-row--content ul {
    list-style: none;
    margin: 0; padding: 0;
}
.links-row--content ul li {
    position: relative;
    display: inline-block;
    margin: 0; padding: 0;
}
.links-row--content ul li a {
    padding: 8px 10px;
    font-family: var(--font-headings);
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.links-row--content ul li a:hover {
    color: var(--contrast-color);
}

/* \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */


.footer-row {
    padding: 60px 0;
    background: var(--white-color);
}
.footer-row--content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.footer-row--content-item {
    width: 50%;
    font-size: 14px;
    color: var(--primary-color);
}
.footer-design {
    text-align: right;
}
.footer-row--content-item a {
    color: var(--primary-color);
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}
.footer-row--content-item a:hover {
    color: var(--contrast-color);
}


.pagetitle-row {
    padding: 60px 0;
    background: var(--secondary-color);
}
.pagetitle-row--content {}
.pagetitle-row--content h1 {
    font-size: 48px;
    color: var(--color-text);
}
.body-row {
    padding: 100px 0;
    background: var(--secondary-color);
}
.body-row--content p {
line-height: 26px;
margin-bottom: 18px;
color: var(--color-text);
}

.players-table {
    width: 100%;
    margin-bottom: 60px;
    border-top: 1px solid #32383e;
}
.players-table--row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #32383e;
    transition: all .4s ease-out;
    -webkit-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
}
.players-table--row:hover {
    background: var(--contrast-color);
}
.players-table--image {
    width: 60px;
    height: 60px;
    background: var(--contrast-color);
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}
.players-table--image img {
    width: 100%;
    border-radius: var(--border-radius);
    -webkit-border-radius: var(--border-radius);
    -moz-border-radius: var(--border-radius);
    -ms-border-radius: var(--border-radius);
    -o-border-radius: var(--border-radius);
}
.players-table--number {
    width: 10%;
    padding: 0 10px;
    font-size: 36px;
    font-weight: 800;
}
.players-table--name {
    width: 70%;
    font-size: 36px;
    font-weight: 500;
}
.players-table--oncourt {
    width: 10%;
    font-size: 36px;
    font-weight: 800;
    text-align: right;
}

.schedule-table {
    width: 100%;
    margin-bottom: 60px;
}
.schedule-table--title {
    width: 100%;
    padding: 20px;
}
.schedule-table--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #32383e;
}
.schedule-table--row-team, .schedule-table--row-score {
    padding: 0 20px;
    font-size: 24px;
}
.schedule-table--row-team {
    width: 40%;
	text-align: left;
}
.schedule-table--row-score {
	width: 20%;
    font-weight: 800;
}

.season-table {
    width: 100%;
    margin-bottom: 60px;
    border-top: 1px solid #32383e;
}
.season-table--row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #32383e;
    font-size: 24px;
}
.season-table--row-team {
    width: 70%;
    font-weight: 800;
}


/* MEDIA QUERY \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ */
@media screen and (min-width: 961px) and (max-width: 1640px) {
    .section-row--center {
        width: 96%;
    }
}
@media screen and (min-width: 560px) and (max-width: 960px) {
    .section-row--center {
        width: 90%;
    }
    .header-content--navigation {
        display: none;
      }
      .header-nav-mobile {
        display: block;
      }
    .schedule-row--content-item-team {
        font-size: 24px;
    }
    .quote-row--content {
        font-size: 40px;
    }
}
@media screen and (min-width: 201px) and (max-width: 760px) {
    .headline-anchor {
        padding: 4px 18px 6px 22px;
    }
    .section-row--center {
        width: 84%;
    }
    h2 {
        font-size: 24px;
      }
      .header-content--navigation {
        display: none;
      }
      .header-nav-mobile {
        display: block;
      }
    .schedule-row--content {
        flex-direction: column;
    }
    .schedule-row--content-item {
        width: 100%;
        margin: 10px 0;
        padding: 15px;
    }
    .schedule-row--content-item-team {
        font-size: 36px;
    }
    .quote-row {
        padding: 100px 0;
    }
    .quote-row--content {
        font-size: 36px;
    }
    .news-row-content {
        flex-direction: column;
    }
    .news-row-content-item {
        width: 100%;
        margin: 15px 0; 
    }
    .news-row-content-item h3 {
        font-size: 24px;
    }
    .links-row--content {
        justify-content: flex-start;
    }
    .links-row--content ul li {
        display: block;
    }
    .links-row--content ul li a {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    .footer-row--content {
        flex-direction: column;
    }
    .footer-row--content-item {
        width: 100%;
        padding: 4px 0;
    }
    .footer-design {
        text-align: left;
    }
    .schedule-table--row {
        flex-direction: column;
        padding: 8px 20px;
    }
    .schedule-table--row-team, .schedule-table--row-score {
        padding: 4px 20px;
        font-size: 18px;
    }
}  