/*
Theme Name: Shabaily
Author: Matthew Shabaily
Version: 2.0
*/

/* ============ Containers ============ */

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
}

/* ============ Scrollbar ============ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ============ Effects ============ */

.pan-effect {
  transition: transform 0.3s;
}

.pan-effect:hover {
  transform: translate(2px, 0);
}

.dim-effect {
  transition: opacity 0.3s, transform 0.3s;
}

.dim-effect:hover {
  opacity: 0.6;
}

/* ============ Utils ============ */

.image-background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  object-position: 50% 50%;
}

.hidden {
  opacity: 0;
  z-index: -1;
}

/* ============ Globals ============ */

html {
  overflow-x: hidden;
  margin-top: 0px !important;
}

body {
  font-family: "Fredoka";
  background-color: #f9f9f9;
  overflow-x: hidden;
}

html:has(body.no-scroll) {
  overflow-y: hidden;
}

h1 {
  font-weight: 600;
  color: #000;
  font-size: 45px;
}

h2 {
  font-weight: 600;
  color: #000;
  font-size: 40px;
}

p {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

p strong {
  font-weight: 800;
}

ul {
  list-style-type: disc;
}

li {
  color: #000;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  margin-block: 20px;
}

.cta {
  display: grid;
  place-items: center;
  background-color: #000;
  border-radius: 25px;
  min-width: 150px;
  padding-inline: 20px;
  height: 35px;
  text-decoration: none;
}

.cta p {
  color: white;
}

*.dark {
  background-color: black !important;
}

*.dark * {
  color: white !important;
}

*.dark .cta {
  background-color: white !important;
}

*.dark .cta p {
  background-color: white !important;
  color: black !important;
}

.news-slider .post .summary * {
  font-size: 13px;
}

/* ============ Text Section ============ */

.text-section {
  position: relative;
  align-items: center;
  justify-content: center;
  padding-block: 75px;
}

.text-section .content-row {
  margin-block: 30px;
  width: 75%;
  justify-content: space-between;
  align-items: center;
}

.text-section .content-row > img {
  object-fit: cover;
  width: 545px;
  height: 350px;
  border: 10px solid black;
}

.text-section .text-column {
  gap: 25px;
  justify-content: center;
}

.text-section .text-column ul {
  width: 90% !important;
}

.text-section .text-column > p {
  width: 70%;
}

.text-section .links {
  display: flex;
  gap: 20px;
}

.text-section .streaming-links {
  align-items: center;
  gap: 50px;
}

.text-section:has(iframe) .text-column {
  width: 55%;
}

.text-section iframe{
  max-width: 100%;
}

.text-section .streaming-links img {
  width: 70px;
  aspect-ratio: 1;
}

.link {
  display: flex;
  gap: 20px;
  align-items: center;
}

.text-section.dark-background {
  background-color: #000;
}

.text-section.dark-background * {
  color: white !important;
}

.text-section.dark-background .content-row > img {
  border: 10px solid white;
}

.text-section.left-image .text-column {
  width: 55%;
}

.text-section.left-image .text-column p {
  width: 100%;
}

/* ============ Header ============ */

header {
  background-color: #000;
  align-items: center;
  padding-block: 25px;
}

header .wrapper {
  align-items: center;
  justify-content: space-between;
  width: 90%;
}

header .logo img {
  width: 200px;
}

header .main-nav {
  width: 70%;
}

header .main-nav ul {
  display: flex;
  justify-content: space-evenly;
}

header .main-nav a {
  transition: opacity 0.3s;
  font-size: 20px;
  text-decoration: none;
  color: white;
}

header .main-nav a:hover {
  opacity: 0.6;
}

body {
  display: relative;
}

body:has(#burger.rotated) {
  overflow-y: hidden;
}

body > .title {
  width: 100%;
  justify-content: center;
  background-color: #000;
  padding-bottom: 50px;
}

body > .title h1 {
  color: white;
}

#burger {
  display: none;
  position: absolute;
  right: 50px;
  top: 25px;
  flex-direction: column;
  justify-content: space-evenly;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 200;
}

#burger rect {
  display: block;
  width: 100%;
  height: 10%;
  border-radius: 100px;
  background-color: white;
  transition: transform 0.5s;
}

#burger.rotated rect:nth-child(1) {
  transform: translate(0, 270%) rotate(45deg);
  background-color: black;
}

#burger.rotated rect:nth-child(2) {
  opacity: 0;
  background-color: black;
}

#burger.rotated rect:nth-child(3) {
  transform: translate(0, -260%) rotate(-45deg);
  background-color: black;
}

.burger-menu {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}

.burger-menu:not(.hidden) {
  z-index: 100;
}

.burger-menu .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.burger-menu .main-nav {
  position: absolute;
  top: 62%;
  left: 10%;
  transform: translate(0%, -50%);
  height: 80%;
}

.burger-menu .header-menu {
  display: flex;
  flex-direction: column;
  height: 80%;
  justify-content: space-evenly;
}

.burger-menu .main-nav a {
  font-size: 30px !important;
}

.burger-menu .logo {
  width: 200px;
  filter: invert(1);
  position: absolute;
  top: 24px;
  left: 35px;
}

/* ============ Banner ============ */

.banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  height: 650px;
}

.banner .wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.band-members .wrapper {
  grid-template-columns: repeat(2, 1fr);
}

.banner .logo {
  position: absolute;
  left: 184px;
  bottom: 20px;
  z-index: 2;
}

.banner .image-1 {
  position: absolute;
  object-fit: cover;
  top: 43%;
  left: 50%;
  height: 608px;
  width: 76%;
  transform: translate(-50%, -50%);
}

.banner .image-2 {
  object-fit: cover;
  width: 638px;
  height: 388px;
}

.banner .links {
  display: flex;
  position: absolute;
  right: 235px;
  bottom: 137px;
  gap: 25px;
}

.banner .cta {
  background-color: white;
}

.banner .cta p {
  color: black;
}

.banner .wrapper > p {
  color: white;
  position: absolute;
  right: 265px;
  bottom: 186px;
}

.banner .image-2 {
  position: absolute;
  right: 9px;
  top: -240px;
}

/* ============ Reviews ============ */

.reviews {
  align-items: center;
  padding-block: 100px;
  background: #000;
}

.reviews .wrapper {
  width: 85%;
  justify-content: space-evenly;
}

.reviews .review {
  display: flex;
  width: 30%;
  text-align: center;
  justify-content: center;
  gap: 10px;
}

.reviews .review * {
  color: white;
}

/* ============ Band Members ============ */

.band-members {
  align-items: center;
  padding-block: 50px;
  background-color: black;
}

.band-members > .wrapper {
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.band-member {
  width: 270px;
  height: 560px;
  background-color: white;
}

.band-member img {
  object-fit: cover;
  width: 225px;
  height: 335px;
}

.band-member {
  align-items: center;
  justify-content: space-around;
}

.band-member .name {
  font-size: 20px;
}

.band-member .bio {
  width: 90%;
  overflow-y: scroll;
  height: 20%;
}

.band-member * {
  color: black !important;
}

/* ============ Featured News ============ */

.featured-news {
  position: relative;
  align-items: center;
}

.featured-news .wrapper {
  width: 70%;
  margin-block: 50px;
  justify-content: space-between;
  align-items: center;
}

.featured-news .text {
  width: 40%;
  gap: 20px;
  align-items: start;
}

.featured-news .main-image {
  width: 600px;
  height: 492px;
  border: 10px solid black;
  object-fit: cover;
}

.featured-news .more-news {
  display: flex;
  justify-content: space-evenly;
  position: absolute;
  right: 50px;
  top: 30px;
}

/* ============ Events Slider ============ */

.news-slider {
  margin-top: 20px;
  align-items: center;
}

.news-slider .slick-track {
  display: flex !important;
  align-items: center;
}

.news-slider .slider {
  margin-block: 40px;
  width: 80%;
}

.news-slider .pull-left {
  position: absolute;
  left: -100px;
  transform: rotate(180deg);
  top: 50%;
  width: 20px;
}

.news-slider .pull-right {
  position: absolute;
  right: -100px;
  top: 50%;
  width: 20px;
}

.news-slider .post-wrapper {
  display: flex !important;
  align-items: center;
}

.news-slider .post {
  width: 70%;
  text-align: center;
  align-items: center;
}

.news-slider .post * {
  font-size: 18px;
  line-height: 135%;
}

.news-slider .post .summary > * {
  margin-block: 10px;
}

.news-slider .cta {
  margin-top: 20px;
}

/* ============ Events Section ============ */

.events-section {
  align-items: center;
}

.events-section .wrapper {
  width: 90%;
  gap: 50px;
  margin-block: 50px;
}

.events-section .post {
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.events-section .post img {
  object-fit: cover;
  width: 702px;
  height: 427px;
}

.events-section .post .text {
  gap: 10px;
  align-items: center;
  width: 200px;
}

.events-section .post .text > * {
  width: 100%;
}

/* ============ Band Photos ============ */

.band-photos {
  align-items: center;
}

.band-photos .wrapper {
  width: 70%;
  margin-top: 20px;
}

.band-photos .image-section {
  position: relative;
  margin-block: 10px;
  height: 1146px;
}

.band-photos .image-section:not(:has(:nth-child(5))) {
  height: 570px;
}

.band-photos .image-section img {
  position: absolute;
  object-fit: cover;
  border: 10px solid black;
}

.band-photos .image-section > :nth-child(1) {
  width: 358px;
  height: 539px;
  left: 0px;
  top: 0px;
}

.band-photos .image-section > :nth-child(2) {
  width: 423px;
  height: 271px;
  left: 369px;
  top: 0px;
}

.band-photos .image-section > :nth-child(3) {
  width: 179px;
  height: 269px;
  right: 362px;
  top: 0px;
}

.band-photos .image-section > :nth-child(4) {
  width: 358px;
  height: 539px;
  right: 0px;
  top: 0px;
}

.band-photos .image-section > :nth-child(5) {
  width: 609px;
  height: 405px;
  left: 369px;
  top: 279px;
}

.band-photos .image-section > :nth-child(6) {
  width: 358px;
  height: 603px;
  left: 0px;
  top: 547px;
}

.band-photos .image-section > :nth-child(7) {
  width: 280px;
  height: 457px;
  left: 369px;
  top: 693px;
}

.band-photos .image-section > :nth-child(8) {
  width: 317px;
  height: 456px;
  right: 366px;
  top: 693px;
}

.band-photos .image-section > :nth-child(9) {
  width: 358px;
  height: 603px;
  right: 0px;
  top: 546px;
}

/* ============ Footer ============ */

footer {
  background-color: #000;
  align-items: center;
  padding-block: 100px;
}

footer .wrapper {
  width: 85%;
  justify-content: space-between;
}

footer .title {
  color: white;
  font-size: 20px;
}

footer .logo img {
  width: 100%;
}

footer .logo-column {
  width: 400px;
}

footer .logo-column p {
  color: white;
}

footer .news-column {
  gap: 30px;
}

footer .wrapper .flex-column a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

footer .main-nav ul li {
  transition: transform 0.3s;
}

footer .main-nav ul li:hover {
  transform: translate(2px, 0);
}

footer .main-nav ul a {
  display: block;
  color: white;
  font-size: 15px;
  text-decoration: none;
}

footer .contact {
  gap: 5px;
}

footer .contact img {
  object-fit: contain;
  width: 20px;
  height: 15px;
  filter: grayscale(1) brightness(0) invert(1);
}

.legal {
  justify-content: space-around;
  padding-block: 5px;
}

.docs {
  gap: 50px;
}

.credit {
  gap: 50px;
}

/* ============ Contact Section ============ */

.contact-section {
  align-items: center;
}

.contact-section .form {
  width: 43%;
}

.contact-section > .wrapper > img {
  width: 858px;
  height: 571px;
  object-fit: cover;
}

.contact-section > .wrapper {
  margin-block: 100px;
  width: 85%;
  justify-content: space-between;
}

.contact-section .wpcf7 .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.contact-section .wpcf7 .row:first-child {
  margin-block: 0;
  margin-bottom: 40px;
}

.contact-section .wpcf7 .row > * {
  width: 45%;
}

.contact-section input {
  margin-top: 5px;
  border: 1px solid black;
  background-color: white;
  height: 37px;
}

.contact-section textarea {
  margin-top: 5px;
  border: 1px solid black;
  background-color: white;
  width: 100%;
  height: 200px;
  resize: none;
}

.contact-section input[type="submit"] {
  display: grid;
  place-items: center;
  background-color: #000;
  border-radius: 25px;
  width: 150px;
  height: 35px;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s, transform 0.3s;
  font-size: 16px;
  cursor: pointer;
  margin-top: 40px;
}

.contact-section input[type="submit"]:hover {
  opacity: 0.6;
  transform: translate(2px, 0);
}

.contact-section .contact {
  gap: 5px;
  align-items: center;
}

.contact-section .contact img {
  object-fit: contain;
  width: 20px;
  height: 20px;
  filter: grayscale(1) brightness(0);
}

.contact-section .contacts {
  align-items: center;
  gap: 20px;
}

/* ============ Store ============ */

.products-container {
  align-items: center;
}

.products-wrapper {
  align-items: center;
  width: 75%;
}

.products {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style-type: none;
  justify-items: center;
  margin-block: 50px;
}

.product {
  width: 300px;
  cursor: default;
  pointer-events: none;
}

.product > * {
  display: block;
  margin-block: 10px;
}

.product .woocommerce-loop-product__title {
  margin-top: 5px;
  line-height: 80%;
}

.product .price {
  display: block;
  margin-top: 15px;
}

.product .add_to_cart_button {
  cursor: pointer;
  pointer-events: all;
  display: grid;
  place-items: center;
  background-color: #000;
  border-radius: 25px;
  width: 150px;
  height: 35px;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s, transform 0.3s;
}

.product .add_to_cart_button:hover {
  opacity: 0.6;
  transform: translate(2px, 0);
}

.product .added_to_cart {
  display: none;
}

.products-container {
  position: relative;
}

.products-container .basket {
  position: absolute;
  right: 116px;
  top: -121px;
  filter: invert(1);
}

.woocommerce-result-count {
  display: none;
}

.woocommerce-ordering {
  display: none;
}

.woocommerce-notices-wrapper {
  position: absolute;
  width: 100%;
  top: 0px;
}

.woocommerce-cart-form {
  position: relative;
}

.woocommerce-cart-form .shop_table {
  width: 100%;
  margin-top: 50px;
}

.shop_table tr.cart_item > * {
  width: 20%;
}

.shop_table td {
  text-align: center;
}

.shop_table thead {
  display: flex;
  justify-content: center;
  margin-left: 2.5%;
  width: 100%;
}

.shop_table thead tr {
  width: 85%;
}

.shop_table tbody {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.shop_table td input[type="number"] {
  width: 50px;
  pointer-events: none;
  border: none;
  background: unset;
  -moz-appearance: textfield;
  appearance: textfield;
}

.shop_table .actions {
  display: none;
}

.shop_table thead tr {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-left: 50px;
  width: 90%;
}

.shop_table thead {
  margin-bottom: 40px;
}

.remove {
  font-size: 40px;
}

.shop_table tr.cart_item {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 85%;
  box-shadow: 1px 1px 1px 1px #d5d5d5;
}

.coupon {
  display: none;
}

.cart-collaterals {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart_totals {
  width: 80%;
  margin-top: 50px;
  display: flex;
  gap: 50px;
}

.cart_totals tbody {
  display: block;
  margin: 0;
}

.cart-subtotal {
  display: none;
}

.wc-proceed-to-checkout {
  margin-block: 20px;
  display: grid;
  place-items: center;
  background-color: #000;
  border-radius: 25px;
  width: 175px;
  height: 35px;
  text-decoration: none;
  color: white;
  transition: opacity 0.3s, transform 0.3s;
}

.wc-proceed-to-checkout:hover {
  transform: translate(2px, 0);
  opacity: 0.6;
}

.cart_totals h2 {
  display: none;
}

.cart_totals .shop_table {
  display: flex;
  align-items: center;
}

.woocommerce-message {
  height: 78px;
}

.woocommerce-cart-form .woocommerce-notices-wrapper {
  top: -50px;
}

.basket img {
  width: 80px;
}

.woocommerce-input-wrapper input {
  border: 1px solid #d5d5d5;
  padding: 5px;
}

.woocommerce-cart-container:has(.woocommerce-cart-empty) {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  justify-content: center;
  gap: 50px;
}

.woocommerce-cart-empty {
  width: 85%;
}

.return-to-shop {
  width: 85%;
}

.return-to-shop a {
  color: white;
  display: grid;
  place-items: center;
  background-color: #000;
  border-radius: 25px;
  width: 150px;
  height: 35px;
  text-decoration: none;
}

.thank-you {
  margin-left: 10%;
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 35px;
}

/* ============ 404 ============ */

.error-404 {
  align-items: center;
  height: 500px;
}

.error-404 .text {
  width: 85%;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 50px;
  height: 100%;
}

.error-404 .text h1 {
  color: var(--primary);
  font-size: 100px;
}

.platforms {
  align-items: center;
  background: #000;
  margin-block: 50px;
  padding-block: 50px;
}

.platforms .wrapper {
  justify-content: space-between;
  width: 75%;
  align-items: center;
}

.platforms img {
  width: 70px;
  aspect-ratio: 1;
}

.platforms h1 {
  color: white;
}
