/*
Theme Name: trinitycyclesindia
Theme URI: https://trinitycyclesindia.com
Author: Pk web developers
Author URI: https://pkwebdevelopers.com/
Description: A custom responsive WordPress theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* import fonts (inter) */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap');


:root {
  --font-heading: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;

  /* =========================
     COLORS
  ========================= */

  --color-primary: #111111;
  --color-secondary: #C9DA3B;
  --color-light-text: #C1C1BC;


  --bg-primary: #11110C;
  --bg-secondary: #F4F1EA;
  --bg-card: #F6F2EC;
}

html,
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

html {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);

  font-size: 16px;
  line-height: 20px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
button {
  cursor: pointer;
}

.container {
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
  width: 100%;
  /* height: 100%; */
}

@media (min-width:1440px) {
  .container {
    max-width: 1640px;
  }
}

@media (max-width:767px) {
  .container {
    padding: 0 16px !important;
  }
}


.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  border: 2px solid transparent;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0;
  transition: 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}


/* ============== Section Button ============= */

/* PRIMARY BTN */
.btn-primary {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--bg-primary);
}

.btn-primary::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url("./assets/images/btn-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.btn-primary:hover {
  background: var(--color-secondary);
}

.btn-primary:hover::after {
  transition: 0.5s;
  transform: translateX(4px);
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: var(--bg-primary);
  color: var(--bg-secondary);
  border-color: var(--color-primary);
}

.btn-secondary::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("./assets/images/btn-play.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.btn-secondary:hover {
  color: var(--bg-secondary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.6);
}

.mobile-btn {
  display: none;
}

@media (max-width:768px) {
  .btn {
    font-size: 13px;
    padding: 10px;
  }

  .mobile-btn {
    display: flex;
    margin: 20px auto 0; 
  }

  .btn-primary::after,
  .btn-secondary::before {
    width: 15px;
    height: 15px;
  }

}


/* ============== Section Heading ============= */

.section-prefix {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.section-title {
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.1;
  font-size: 40px;
  letter-spacing: -2px;
}

.section-title span {
  color: var(--color-secondary);
  font-size: 40px;
}

/* use that parent class name  (common__content) */
.common__content p {
  margin: 4px 0 14px;

}

/* anker animation  ass the anker class that */
.common__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #111;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;

  transition: color .3s ease;
}

.common__link svg {
  transition: transform .35s ease,
    color .35s ease;
}

.common__link:hover {
  color: #b5cc2e;
}

.common__link:hover svg {
  transform: translateX(6px);
}

/* enf of the section  */

.section-description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-btn {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  padding: 10px 0;
}

.section-btn:hover {
  background-color: transparent;
  color: var(--color-secondary);
}

.section-btn-white {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  padding: 10px 0;
  color: var(--bg-secondary);
}

.section-btn-white:hover {
  background-color: transparent;
  color: var(--color-secondary);
}


/* =========================== Banner Title ======================= */

.banner-content {
  max-width: 700px;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.banner-subtitle {
  color: var(--color-secondary) !important;
  margin-bottom: 12px;
}

.banner-title {
  color: #ffffff;
  font-size: 70px;
  margin-bottom: 0;
  line-height: 100%;
}

.page-title {
  font-size: 52px;
  line-height: 100%;
  text-transform: none;
}

.banner-title span {
  font-size: inherit;
}

.banner-divider {
  width: 50px;
  height: 3px;
  background-color: var(--color-secondary);
  margin-top: 15px;
  margin-bottom: 25px;
  border-radius: 2px;
}

.banner-desc {
  color: #c1c1bc;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
}


@media (max-width: 1023px) {
  .banner-content {
    max-width: 460px;
  }

  .banner-title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .banner-desc {
    font-size: 15px;
  }

  .page-title {
    font-size: 52px;
    text-transform: none;
  }
}

@media (max-width: 767px) {
  .banner-content {
    max-width: 100%;
  }

  .banner-title {
    font-size: 32px;
    letter-spacing: -0.5px;
    text-align: left;
  }

  .banner-desc {
    font-size: 15px;
    line-height: 1.55;
  }

  .banner-divider {
    margin-top: 12px;
    margin-bottom: 20px;
  }

  .page-title {
    font-size: 52px;
    text-transform: none;
  }
}

@media (max-width: 575px) {
  .banner-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .banner-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #b0b0aa;
  }

  .banner-subtitle {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .banner-divider {
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .page-title {
    font-size: 52px;
    text-transform: none;
  }
}

/* =========================== Banner Title End ======================= */


@media (max-width: 1200px) {
  .section-description {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .section-title{
    margin-bottom: 15px;
  }
}

/* Tablet */
@media (max-width: 991px) {

  .section-prefix {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .section-btn {
    font-size: 14px;
    padding: 10px 0;
  }

}

/* Mobile */
@media (max-width: 767px) {

  .section-prefix {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .section-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .section-btn {
    font-size: 13px;
    width: 100%;
    text-align: center;
  }

}

/* Small Mobile */
@media (max-width: 480px) {
  .section-description {
    font-size: 13px;
  }
}


/*  that media query */
@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }

  .section-title span {
    font-size: 30px
  }

  .common__content p {
    font-size: 14px;
    text-align: center;
  }

  .common__content a {
    font-size: 14px;
  }

  .common__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .common__content p {
    margin: 5px 0px 25px;

    br {
      display: none;
    }
  }

  .common__content a {
    align-self: flex-end;
  }
}

#wpadminbar {
  display: none;
}

/* catalogue-books Css Start  */

.catalogue-books {
  padding: 70px 0;
}

.catalogue-books .catalogue-books-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col-lg-4.col-md-6.mb-4 {
  width: 100%;
}

.catalogue-card img {
  width: 100%;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #efefef;
  border-radius: 20px;
  overflow: hidden;
  padding: 0 0 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.catalogue-card:hover {
  transform: translateY(-3px);
  background: #111111;
  color: var(--color-secondary);
}

@media(max-width: 1024px) {
  .catalogue-books .catalogue-books-inner {
    gap: 15px;
  }

  .catalogue-card {
    gap: 15px;
    padding: 0 0 15px;
  }
}

@media(max-width: 767px) {
  .catalogue-books .catalogue-books-inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .catalogue-books {
    padding: 50px 0;
  }
}




/* catalogue-books Css End  */