/*
Theme Name: Twin Tigers Taekwondo Oxnard
Theme URI: https://oxnardtkd.com
Author: Upward Web Agency
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* GLOBAL CSS */
html,
body {
  overflow-x: hidden;
  width: 100%;
}
body {
  background-color: #f3f4f5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  color: #000000;
}
body,
p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}
h1 {
  font-size: 48px;
  font-weight: 900;
}
h2 {
  font-size: 36px;
  font-weight: 700;
}
h3 {
  font-size: 28px;
  font-weight: 600;
}
h4 {
  font-size: 22px;
  font-weight: 500;
}
p,
a {
  font-weight: 400;
  font-size: 17px;
  color: #000000;
  font-family: "Inter", sans-serif;
}
a {
  text-decoration: none;
}
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  font-family: "Inter", sans-serif;
}
img {
  border-radius: 8px;
  overflow: hidden;
}

.navbar {
  padding: 20px 20px;
}
.custom-navbar {
  background-color: #FFFFFF !important;
}
.custom-dropdown .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  padding: 10px;
  min-width: 200px;
  margin-top: 3px;
  /* display: none; */
}
.dropdown.show .dropdown-menu {
  display: block;
}
.dropdown-item:focus,
.dropdown-item:active {
  background-color: transparent !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
}
a.dropdown-item {
  font-family: "Inter", sans-serif;
  font-size: 18px;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  padding: 10px;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}
.navbar-toggler:hover {
  background-color: transparent !important;
}
nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
}
.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  font-family: "Inter", sans-serif;
}
img.logo {
  max-width: 175px;
}
.nav-cta-button {
  margin-left: 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
ul#menu-main-menu {
  align-items: center;
}
.nav-link:focus-visible {
  box-shadow: none !important;
}
/* FOOTER */
.footer {
  background-color: #222;
  color: white;
}
.footer h5 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #f3f4f5;
}
.footer p,
.footer li,
footer a {
  font-size: 0.9rem;
  color: #f3f4f5;
}
.footer .list-unstyled li {
  margin-bottom: 5px;
}
.footer a {
  color: white;
  transition: color 0.3s ease-in-out;
}
.footer a:hover {
  color: #f8b400;
}
.footer .row.mt-4 {
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* REUSABLE COMPONENTS */
.curved-section-up {
  background: #9cafa1;
  padding: 135px 0;
  clip-path: ellipse(100% 100% at 50% 100%);
}
.curved-section-down {
  background: #9cafa1;
  padding: 135px 0;
  clip-path: ellipse(100% 100% at 50% 0%);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left-to-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left-to-right.visible {
  opacity: 1;
  transform: translateX(0);
}
section {
  padding: 100px 0;
}
.testimonial-section {
  background-color: #f3f4f5;
  border-radius: 10px;
  text-align: center;
}
.testimonial-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}
.testimonial-carousel {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.testimonial {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  text-align: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}
.testimonial.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.google-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 15px auto;
}
.btn-primary {
  background-color: #f47413;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}
.btn-primary:hover {
  background-color: #000000;
  transform: scale(1.05);
  color: #ffffff;
}
.btn-secondary {
  background-color: #ffffff !important;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: none;
}
.btn-secondary:hover {
  background-color: #000000 !important;
  transform: scale(1.05);
  color: #ffffff
}
#form {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
}
input,
textarea {
  font-family: "Lato", sans-serif;
  font-size: 1em;
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: transparent;
  outline: none;
  color: #000000;
  border: solid 1px #000000;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}
input::placeholder,
textarea::placeholder {
  color: #000000;
}
input:focus,
textarea:focus {
  background: #f3f4f5;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
textarea {
  height: 120px;
  resize: none;
}
.form-checkbox-group {
  margin: 15px 0;
}
.form-checkbox-group > label:first-child {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000000;
  font-family: "Inter", sans-serif;
}
.checkbox-options {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  color: #000000;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  accent-color: #f47413;
}
.checkbox-label span {
  font-size: 17px;
}
#form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
#form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
#form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
#submit {
  background-color: #f47413 !important;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
}
#submit:hover {
  background-color: #000000 !important;
  transform: scale(1.05);
  color: #ffffff !important;
}
section ul li {
  margin-bottom: 5px;
}
.global-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 100%;
  align-items: stretch;
}
.global-col {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  align-items: stretch;
}
.global-content-box {
  border: 1px solid #9cafa1;
  padding: 35px;
  border-radius: 8px;
  background-color: #f3f4f5;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.global-row.cols-2 .global-col {
  width: calc((100% - 25px) / 2);
}
.global-row.cols-3 .global-col {
  width: calc((100% - 50px) / 3);
}
.global-row.cols-4 .global-col {
  width: calc((100% - 75px) / 4);
}
.global-row.cols-5 .global-col {
  width: calc((100% - 100px) / 5);
}
.global-row.cols-6 .global-col {
  width: calc((100% - 125px) / 6);
}
.global-row.cols-7 .global-col {
  width: calc((100% - 150px) / 7);
}
.global-row.cols-8 .global-col {
  width: calc((100% - 175px) / 8);
}
.global-row.cols-9 .global-col {
  width: calc((100% - 200px) / 9);
}
.global-row.cols-10 .global-col {
  width: calc((100% - 225px) / 10);
}
.global-row.cols-11 .global-col {
  width: calc((100% - 250px) / 11);
}
.global-row.cols-12 .global-col {
  width: calc((100% - 275px) / 12);
}
.white {
  color: #ffffff;
}
.centered-divider {
  width: 50%;
  margin: 40px auto;
  border: 1px solid #ccc;
}
/* REGULAR CSS */
.home .section1 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}
.home .section1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.80);
  z-index: 0;
}
.home .section1 .container {
  position: relative;
  z-index: 1;
}
.home .section1 h1,
.home .section1 h2,
.home .section1 p {
  color: #000000;
}
.home .section1 hr.centered-divider {
  border-color: #000000;
}
.home .section1 .btn {
  display: inline-block;
  margin: 0 auto;
}
.home .section2 {
  background-color: #FFFFFF;
  text-align: left;
}
.home .section4 {
  background-color: #f47413;
}
.home .section4 h2 {
  color: #ffffff;
  text-align: center;
}
.home .section4 p {
  color: #ffffff;
}
.home .section5 {
  background-color: #FFFFFF;
  text-align: center;
}
.home .section6 {
  background-color: #f3f4f5;
  text-align: left;
}
/* Blog Page */
img.card-img-top {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
h3.card-title a {
  font-size: 22px;
  text-decoration: none;
  line-height: 0.9em;
  font-weight: 600;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}
.pagination li {
  margin: 0 5px;
}
.pagination a,
.pagination span {
  color: #242424;
  background-color: #e9e0d9;
  border: 1px solid #e9e0d9;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out;
  margin: 3px;
}
.pagination a:hover {
  background-color: #d3cbc5;
  border-color: #d3cbc5;
}
.pagination .current {
  background-color: #e9e0d9;
  color: #000000;
  font-weight: bold;
}
/* Individual Blog Post */
.single-post-page {
  padding: 50px 0;
}
.single-post-page .section1 {
  padding: 0 0;
}
.post-thumbnail img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.post-title {
  font-size: 48px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 10px;
}
.post-meta {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
p.post-meta {
  color: #000000 !important;
}
.post-content {
  font-size: 1.1rem;
  line-height: 1.8;
}
.author-box {
  display: flex;
  align-items: center;
}
.author-box img {
  border-radius: 50%;
}
.comments-section {
  margin-top: 40px;
}
.post-meta svg {
  margin-bottom: 0;
  margin-right: 5px;
  vertical-align: middle;
}
.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
span.author a {
  font-size: 15px;
  text-decoration: none;
  color: #000000;
}
/* Media Queries */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
    padding: 20px;
  }
  .dropdown-menu a:not(:last-child) {
    margin-bottom: 5px;
  }
  .navbar-nav .nav-item:last-of-type {
    margin-right: 20px;
  }
  .navbar-nav .dropdown-toggle::after {
    display: none !important;
  }
  .hide-desktop {
    display: none !important;
  }
  .hide-mobile {
    display: block !important;
  }
}
@media (max-width: 992px) {
  .hide-mobile {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 18px;
  }
  #submit {
    font-size: 18px;
  }
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    margin-top: 15px;
  }
  .navbar {
    padding: 15px 20px;
  }
  .navbar-toggler {
    padding-right: 0;
  }
  .navbar .btn-primary {
    margin-top: 20px;
  }
  .nav-cta-button {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  .navbar .gap-3 {
    gap: 0.5em !important;
  }
  .navbar-nav {
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .nav-link {
    text-align: left;
    padding-left: 0;
    font-size: 18px;
  }
  .row > [class^="col-"]:not(:first-child) {
    margin-top: 40px;
  }
  section {
    padding: 65px 0;
  }
  .curved-section-up {
    padding: 135px 0;
    clip-path: unset;
  }
  .curved-section-down {
    padding: 135px 0;
    clip-path: unset;
  }
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  .global-row {
    flex-wrap: wrap;
  }
  .global-col {
    width: 100% !important;
  }
  .full-width-button {
    width: 100%;
    text-align: center;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .post-title {
    font-size: 36px;
  }
  .single-post-page {
    padding: 0 0;
  }
  footer .row > [class^="col-"]:not(:first-child) {
    margin-top: 10px;
  }
  .footer h5 {
    margin-bottom: 10px;
  }
  span.author a {
    font-size: 15px;
    text-decoration: none;
  }
  a.dropdown-item {
    font-size: 16px;
  }
  .checkbox-options {
    flex-direction: column;
    gap: 8px;
  }
  img.logo {
    max-width: 115px;
  }
}
/* Privacy Policy Page */
.privacy-policy-page {
  background-color: #FFFFFF;
}
.privacy-policy-section {
  background-color: #FFFFFF;
  padding: 80px 0;
}
.privacy-policy-section h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #000000;
}
.privacy-policy-section .last-updated {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  font-style: italic;
}
.privacy-policy-section h2 {
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #000000;
}
.privacy-policy-section h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #000000;
}
.privacy-policy-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000000;
}
.privacy-policy-section ul {
  margin-bottom: 20px;
  padding-left: 30px;
}
.privacy-policy-section li {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #000000;
}
.privacy-policy-section a {
  color: #f47413;
  text-decoration: underline;
}
.privacy-policy-section a:hover {
  color: #000000;
}
@media (max-width: 992px) {
  .privacy-policy-section {
    padding: 50px 0;
  }
  .privacy-policy-section h1 {
    font-size: 36px;
  }
  .privacy-policy-section h2 {
    font-size: 28px;
  }
  .privacy-policy-section h3 {
    font-size: 22px;
  }
}

/* Programs page mobile image spacing */
@media (max-width: 991.98px) {
  .programs-mobile-image-spacing {
    margin-bottom: 35px;
  }
}

/* Programs page section 1 styling */
.programs-children-section {
  background-color: #FFFFFF !important;
  background-image: none !important;
  text-align: left !important;
}

.programs-children-section::before {
  display: none !important;
}

.programs-header-text {
  text-align: center !important;
  max-width: 750px;
  margin: 0 auto;
}

.programs-divider-row {
  margin-bottom: 35px;
}

@media (min-width: 992px) {
  .programs-divider-row {
    margin-bottom: 75px;
  }
}

.home-hero-text {
  max-width: 600px;
  margin: 0 auto;
}

.home-programs-intro {
  max-width: 600px;
  margin: 0 auto;
}

/* About page section 1 styling */
.about .about-section1 {
  background-color: #FFFFFF !important;
  background-image: none !important;
  text-align: left !important;
}

.about .about-section1::before {
  display: none !important;
}

.about .about-section1 h1,
.about .about-section1 h2,
.about .about-section1 p {
  color: #000000;
  text-align: left !important;
}

/* About page history section styling */
.about .about-history-section {
  background-color: #f3f4f5 !important;
}

/* Programs page section 2 styling */
.programs .programs-teens-section {
  background-color: #f3f4f5 !important;
  text-align: left;
}

/* Programs page section 3 styling */
.programs .programs-adults-section {
  background-color: #FFFFFF !important;
  text-align: left;
}

/* Programs page benefits rows spacing */
.programs-benefits-row {
  margin-top: 35px;
}