/*
Theme Name: Tag Fitness
Theme URI: https://tagtiness.tlmstaging.com/
Author: Codiffy
Author URI: http://codiffy.com
Description: A brief description of the theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tag-fitness
*/


:root {
  --clr-primary: #004b8d;
  --clr-secondary: #e20012;
  --clr-light-white: #fffdfa;
  --clr-yellow: #faff73;
  --clr-black: #101828;
  --clr-red: #ce1a28;

  --transition-base: all 0.3s linear;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Saira", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.6;
  color: #FFFDFA;
  background-color: var(--clr-black);
  text-shadow: 0 3px 6px #00000016;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
  padding-left: 0;
}

figure {
  margin-bottom: 0;
}

input,
textarea,
button {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

img.cover,
video.cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

img.fill {
  height: 100%;
  width: 100%;
  object-fit: fill;
}

h1 {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-style: italic;
  font-size: 60px;
	line-height: 1;
}
h2 {
  font-family: "Saira", sans-serif;
  font-weight: 700;
  font-size: 36px;
	line-height: 1;
}
h3 {
  font-family: "Saira", sans-serif;
  font-size: 28px;
  font-weight: 600;
	line-height: 1;
}
h4 {
  font-family: "Saira", sans-serif;
  font-size: 21px;
  font-weight: 600;
	line-height: 1;
}
p {
  font-family: "Montserrat", sans-serif;
	margin-bottom: 18px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

section {
  overflow: hidden;
}

.section-padding {
  padding: 80px 0;
}

.hero-heading {
  font-size: clamp(40px, 4.9vw, 70px);
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 3px 6px #00000050;
}

.section-heading {
  font-family: "Saira", sans-serif;
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  text-align: center;
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 3px 6px #00000016;
}

.section-desc {
  font-size: 20px;
  line-height: 1.5;
  text-shadow: 0 2px 6px #00000050;.tax-product_cat 
}

.btn, 
.woocommerce div.product form.cart .button,
.add_to_cart_button,
.form-submit input.submit,
:is(.woocommerce-shop, .tax-product_cat) .load-more-btn {
  cursor: pointer !important;
  border: none !important;
  outline: none !important;
  white-space: nowrap !important;
  padding: 4px 16px !important;
  border-radius: 100px !important;
  display: inline-flex !important;
  justify-content: center !important;
  font-weight: 500 !important;
  color: #FFFDFA !important;
  font-size: 16px !important;
  transition: var(--transition-base) !important;
  text-transform: uppercase !important;
  text-align: center !important;
  border: 2px solid transparent !important;
  box-shadow: 0 2px 3px #00000050 !important;
  text-shadow: 0 3px 6px #00000016 !important; 
}

.btn:hover,
.woocommerce div.product form.cart .button:hover,
.add_to_cart_button:hover,
.form-submit input.submit:hover,
:is(.woocommerce-shop, .tax-product_cat) .load-more-btn:hover {
  border-color: #FFFDFA !important;
  background-color: var(--clr-primary) !important;
}

.primary-btn,
.woocommerce div.product form.cart .button,
.add_to_cart_button,
.form-submit input.submit,
:is(.woocommerce-shop, .tax-product_cat) .load-more-btn {
  background-color: var(--clr-secondary) !important;
}

/* //////////////////// HELPER CLASSES ////////////////////// */
.grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* //////////////////// UTILITY CLASSES ////////////////// */
.clr-white {
  color: var(--clr-white);
}
.clr-primary {
  color: var(--clr-primary);
}

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

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

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-5 {
  margin-bottom: 50px;
}
.my-4 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.w-100 {
  width: 100%;
}

.pt-main {
	padding-top: 200px;
}


/* MEDIA QUERIES */
@media (min-width: 1600px) {
  html {
    font-size: 110%;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 32px 0;
  }

  .grid-cols-2 {
    gap: 30px;
  }
}

@media (max-width: 479px) {
  .btn {
    width: 100%;
  }
}
