/*

TemplateMo 583 Festava Live

https://templatemo.com/tm-583-festava-live

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #203d3d;
  --secondary-color: #e7fa50;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #ee5007;
  --custom-btn-bg-hover-color: #c01f27;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #7fffd4;
  --link-hover-color: #e7fa50;

  --body-font-family: "Outfit", sans-serif;

  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 3000;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: linear-gradient(135deg, #fff9c4, #fdd835);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

.custom-logo {
  width: 70px; /* Adjust width as needed */
  height: 50px; /* Adjust height as needed */
  object-fit: contain; /* Ensures the image retains its aspect ratio */
  border-radius: 20%; /* Optional: make it circular */
  vertical-align: middle; /* Aligns it vertically with text */
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.nav-tabs {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-large);
  border-bottom: 0;
  padding: 15px;
}

.nav-tabs .nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 15px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  color: var(--primary-color);
}

.nav-tabs h5 {
  color: var(--p-color);
  margin-bottom: 0;
}

.nav-tabs .nav-link.active h5,
.nav-tabs .nav-link:focus h5,
.nav-tabs .nav-link:hover h5 {
  color: var(--primary-color);
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;
}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--primary-color);
  padding-top: 12px;
  padding-bottom: 12px;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--primary-color);
  border-bottom: 2px solid white;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: var(--primary-color);
  border-bottom: 2px solid white;

}

.navbar {
  top: 0;
  left: 0;
  background: transparent;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.logo-word a {
  color: white;
  text-decoration: none; /* Remove underline */
  transition: none; /* Disable any CSS transitions */
  animation: none; /* Disable any CSS animations */
}

.logo-word a:visited,
.logo-word a:active,
.logo-word a:hover {
  color: white;
  transition: none;
  animation: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
  top:0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: 100vh;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

/* General Batch Card Styling */
.batch-card {
  background-color: transparent; /* Remove background as it's now just for the image */
  border-radius: 8px; /* Rounded corners for the image */
  box-shadow: none; /* Remove shadow from the image container */
  text-align: center;
  overflow: hidden;
}

/* Images for Batches */
.batch-card img.about-image {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Ensures images fill the space without distortion */
  border-radius: 8px; /* Rounded corners for images */
}

/* General Batch Card Styling */
.batch-card {
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Images for Batches */
.batch-card img.about-image {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Ensures images fill the space without distortion */
  border-radius: 8px 8px 0 0; /* Rounded top corners for images */
}

/* Black Background Below the Image */
.about-background {
  background-color: black;
  width: 100%;
  height: 250px;
  border-radius: 0 0 8px 8px; /* Rounded bottom corners */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Batch Info Section on Black Background */
.about-text-info {
  color: white; /* Text color for contrast on black background */
  padding: 15px;
  text-align: center;
}

.about-text-info h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text-info p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* Collapse Section for Additional Info */
.about-text-info .collapse {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Buttons for Batch Cards */
.about-text-info .btn {
  background-color: var(--primary-color, #007bff); /* Default Bootstrap primary color */
  color: white;
  border-radius: 5px;
}

.about-text-info .btn:hover {
  background-color: var(--primary-color-hover, #0056b3); /* Darker shade for hover effect */
}



/*---------------------------------------
  TICKET               
-----------------------------------------*/
.ticket-section {
  background-image: url("../images/nicholas-green-unsplash-blur.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 130px;
}

.ticket-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.ticket-form .form-check {
  position: relative;
  min-height: 52px;
  padding-left: 35px;
}

.ticket-form .form-check .form-check-label {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 12px;
  margin-left: 35px;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  ARTISTS              
-----------------------------------------*/

.artists-section{
  background-color: #171616;
}

.artists-thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.artists-image {
  border-radius: var(--border-radius-medium);
  display: block;
  width: 100%;
}

.artists-thumb:hover .artists-hover {
  transform: translateY(0);
  opacity: 1;
}

.artists-hover {
  background-color: var(--primary-color);
  background-color: rgba(248, 203, 46, 0.75);
  border-radius: var(--border-radius-medium);
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  margin: 20px;
  padding: 35px;
  transition: all 0.5s ease;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
}

.artists-hover p strong {
  color: var(--white-color);
  display: inline-block;
  min-width: 180px;
  margin-right: 20px;
}

.artists-hover p a {
  color: var(--secondary-color);
}

.artists-hover p a:hover {
  color: var(--white-color);
}

.artists-hover hr {
  margin: 1.5rem 0;
}

/*---------------------------------------
  Swiper images             
-----------------------------------------*/
.swiper-container {
  padding: 0; /* Add padding around the swiper */
}

.swiper-slide {
  display: flex; /* Center image inside the slide */
  justify-content: center; /* Center image horizontally */
  align-items: center; /* Center image vertically */
  border-radius: 15px; /* Add border radius to the slide */
  overflow: hidden; /* Hide overflow */
  padding-left: 30px;
}

.swiper-slide img {
  width: 100%; /* Make image take full width of the slide */
  height: 500px; /* Set a fixed height for all images */
  object-fit: cover; /* Maintain aspect ratio and cover the slide */
  transition: transform 0.3s; /* Add transition for scaling effect */
}

.swiper-slide:hover img {
  transform: scale(1.05); /* Scale image slightly on hover */
}

.swiper-button-next,
.swiper-button-prev {
  color: orange; /* Change navigation button color */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: orange; /* Add hover effect for buttons */
  border-radius: 50%; /* Make buttons round */
  padding: 10px; /* Add some padding around buttons */
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px; /* Increase the size of the button icons */
}

/*---------------------------------------
  SCHEDULE              
-----------------------------------------*/
.schedule-section {
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.table-responsive {
  filter: drop-shadow(2px 2px 4px #606060);
}

.schedule-table {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.schedule-table .bg-warning {
  background: #f0a5a5 !important;
}

.schedule-table thead th {
  background-color: var(--secondary-color);
}

.schedule-table th,
.schedule-table tr,
.schedule-table td {
  border-bottom-color: #363a3e;
  padding: 30px;
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
  border-bottom-color: transparent;
}

.schedule-table thead th {
  border-right: 1px solid #c7460a;
  border-bottom-color: transparent;
}

.schedule-table th + td {
  border-bottom: 0;
}

.schedule-table thead th:last-child {
  border-right-color: transparent;
}

.schedule-table .pop-background-image {
  background-image: url("../images/artists/joecalih-UmTZqmMvQcw-unsplash.jpg");
}

.schedule-table .rock-background-image {
  background-image: url("../images/artists/abstral-official-bdlMO9z5yco-unsplash.jpg");
}

.schedule-table .country-background-image {
  background-image: url("../images/artists/soundtrap-rAT6FJ6wltE-unsplash.jpg");
}

.table-background-image-wrap {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: none;
  position: relative;
}

.schedule-table h3,
.schedule-table p {
  color: var(--white-color);
  position: relative;
  z-index: 2;
}

/*---------------------------------------
  PRICING              
-----------------------------------------*/
.pricing-thumb {
  border: 5px dotted var(--dark-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 50px;
}

.pricing-thumb h3 small {
  display: inline-block;
  font-size: var(--p-font-size);
  margin-right: 15px;
}

.pricing-list {
  column-count: 2;
  padding-left: 20px;
}

.pricing-list-item {
  line-height: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}

.pricing-tag {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
  margin: 20px;
}

.pricing-tag span {
  font-size: 180%;
  line-height: normal;
}

.pricing-thumb .link-fx-1 {
  color: var(--primary-color);
}

.pricing-thumb .link-fx-1:hover {
  color: var(--link-hover-color);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--secondary-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  background-color: #203d3d;
  background-image: url("../images/nainoa-shizuru-NcdG9mK3PBY-unsplash.jpg");
  background-repeat: no-repeat;
  margin-bottom: 70px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
  margin-top: 60px;
}

.site-footer-title {
  color: var(--secondary-color);
}

.site-footer-link,
.copyright-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text {
  font-size: var(--copyright-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: #203d3d;
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: #203d3d;
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: #203d3d;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.about-image {
  border-radius: var(--border-radius-medium);
  display: block;
}

.bi-star-fill::before{
  color: var(--primary-color);
}


.bi-graph-up-arrow::before{
  color: var(--primary-color);
}

.bi-trophy-fill::before{
  color: var(--primary-color);
}

.about-text-wrap {
  position: relative;
}

.about-text-icon {
  background: var(--secondary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-info {
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-medium);
  border: 1px solid rgba(209, 213, 219, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 20px;
  padding: 35px;
  height: 100px;
  align-items: center;
}



/* Animation Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--dark-color);
  }
  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}


/* Responsive Styles for Apple iPhones and Small MacBooks */


/*New*/


/* General Mobile View (max-width: 767px) */
@media screen and (max-width: 767px) {
  .img-fluid1{
    width: 20%;
  }


  /* General Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  h3 { font-size: 18px; }
  p { font-size: 14px; }

  .get{
    text-align: left;
  }

  /* Navbar */
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
    padding: 10px 15px;
  }

  /* Buttons */
  .btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 60px;
    height: auto;
  }

  /* Images */
  .batch-card img.about-image {
    height: 150px; /* Adjusted for smaller screens */
  }

  /* Sections */
  .section-padding {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Modify about-text-wrap for smaller screens */
  .about-text-wrap {
    position: relative;
  }

  /* Adjust about-text-info for smaller screens */
  .about-text-info {
    height: 45px;
    padding: 10px;
    flex-direction: row; /* Change to column for better mobile layout */
    align-items: flex-start; /* Align items to the start */
  }

  .about-text-info .d-flex {
    margin-bottom: 10px;
  }

  /* Hide the description paragraph by default */
  .about-text-info p {
    display: none;
  }
  .about-text-info h3 {
    font-size: 18px;
  }

  .d-flex i {
    height: 20px;
  }

  /* Show description when clicked */
  .about-text-info-small.clicked p {
    display: block;
  }

  /* Circular icon styling */
  .about-text-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    font-size: 16px;
    color: #000;
  }

  /* Adjust image for smaller screens */
  .about-image {
    width: 100%;
    height: auto;
  }

  /* Testimonials Section */
  .schedule-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .testimonials .section-heading {
    text-align: center;
    margin-bottom: 20px;
  }

  .testimonials .section-heading h6 {
    font-size: 14px;
  }

  .testimonials .section-heading h2 {
    font-size: 20px;
  }

  .testimonials .section-heading p {
    font-size: 14px;
  }

  /* Adjust Swiper Container for smaller screens */
  .swiper-container {
    width: 100%;
  }

  .swiper-slide {
    padding: 10px;
    width: 100%; /* Full width on mobile */
    border-radius: 50px;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s;
  }


  .testimonial-item-para {
    font-size: 14px; /* Corrected font size */
  }

  /* Testimonial Item */
  .testimonial-item {
    text-align: center;
    padding: 10px;
    background-color: #203d3d;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .testimonial-item p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  /* Author Section */
  .author {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 5px;
  }

  .author h4 {
    font-size: 14px;
    margin: 5px 0 0;
  }

  .author .category {
    font-size: 12px;
    color: #888;
  }

  /* Hero Section Footer */
  .hero-section .mt-auto {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-section .mt-auto .date-wrap,
  .hero-section .mt-auto .location-wrap,
  .hero-section .mt-auto .social-share {
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-section .mt-auto .social-share ul {
    justify-content: center;
  }

  .hero-section .mt-auto .social-share ul li {
    margin: 0 5px;
  }

  .hero-section .mt-auto .social-share span {
    display: block;
    margin-bottom: 10px;
  }

  /* Adjust font sizes for smaller screens */
  .hero-section h5 {
    font-size: 14px;
  }

  .hero-section .custom-icon {
    font-size: 12px;
  }

  /* About Us */
  .swiper-container-about {
    padding: 10px;
  }

  .swiper-slide-about {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    padding-left: 0;
  }

  .img-fluid {
    width: 100%;
  }
  
  .swiper-slide-about img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    border: #000000 solid 1px;
    transition: transform 0.3s;
  }

  .swiper-slide-about:hover img {
    transform: scale(1.05);
  }

  .swiper-button-next,
  .swiper-button-prev {
    color: orange;
  }

  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background-color: orange;
    border-radius: 50%;
    padding: 10px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 20px;
  }
}

/* JavaScript will toggle this class */
.about-text-info-small.clicked {
  height: auto;
}

/*New*/


/* Small Laptops and MacBooks (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  /* General Typography */
  h1 { font-size: 60px; }
  h2 { font-size: 32px; }
  h3 { font-size: 28px; }
  p { font-size: 16px; }

  /* Navbar */
  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
  }
.lower{
  text-align: left;
}
  /* Buttons */
  .btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  /* Hero Section */
  .hero-section {
    height: auto; /* Remove fixed height */
    padding-top: 100px;
  }

  /* Images */
  .batch-card img.about-image {
    height: 220px;
  }

  /* Sections */
  .section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Batch Info */
  .about-text-info {
    padding: 15px;
  }
}

/* General Small Devices Adjustments */
@media screen and (max-width: 768px) {
  /* Stacking Layout */
  .row {
    flex-direction: column;
    align-items: center;
  }

  /* Batch Cards */
  .batch-card {
    margin-bottom: 20px;
  }

  /* Footer */
  .site-footer {
    padding: 20px 10px;
    text-align: center;
  }
}

/* Section Styling */
.trainers-section {
  background-color: var(--primary-color);
  padding: 50px 20px;
}

.section-title {
  font-family: var(--body-font-family);
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Trainer Card Styling */
.trainer-card {
  border: none;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f2edea;
}

.trainer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.trainer-card img {
  object-fit: contain;

}

.card-body{
  background-color: #f2edea;  
}

.card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #203d3d;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  font-weight: 400;
  color: #666666;
}

.card-body ul {
  padding-left: 0;
  margin-bottom: 10px;
}

.card-body ul li {
  font-size: 0.95rem;
  font-weight: 500;
  color: #555555;
  list-style: none;
  margin-bottom: 5px;
}

.card-body .achievements {
  font-size: 0.9rem;
  color: #444444;
  font-style: italic;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-img-top {
    height: 250px;
  }

  .section-title {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .row {
  display: flex;
  flex-wrap: wrap;
}
.col-lg-6, .col-12 {
  flex: 1 0 100%;
}
@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 50%;
  }
}

  @media (max-width: 768px) {

  .swiper-container {
    margin: 0;
  }
  .swiper-slide {
    width: 100%;
  }
}

  @media (max-width: 768px) {
  #section_1 {
    padding-top: 100px;
  }
}

  .custom-btn, .form-control {
  padding: 12px 20px;
  font-size: 16px;
}
  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.9rem;
  }
}


@media (max-width:375px){
  .about-text-info-small {
    height: 200px;
  }
}



/* General Mobile View (max-width: 767px) */
@media screen and (max-width: 767px) {
  .padel-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* Padel Section Adjustments */
  .padel-section .container {
    padding: 0 15px; /* Adjust container padding for mobile */
  }

  .padel-section .row {
    min-height: auto; /* Remove fixed height for mobile */
  }

  /* Heading */
  .padel-section h2 {
    font-size: 24px; /* Smaller font size for mobile */
    margin-bottom: 20px; /* Space below heading */
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Padel Information and Images */
  .padel-section .col-12 {
    margin-bottom: 20px; /* Space between sections */
  }

  .padel-section .col-md-6 {
    width: 100%; /* Full width on mobile */
    margin-bottom: 20px; /* Space below each column */
  }

  /* Images */
  .padel-image {
    width: 100%;
    height: auto; /* Auto height to maintain aspect ratio */
    max-height: 300px; /* Limit max height for smaller screens */
    object-fit: cover; /* Ensure image covers the area */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Text */
  .padel-section h3 {
    font-size: 18px; /* Smaller heading for mobile */
    margin-bottom: 10px; /* Space below heading */
  }

  .padel-section p {
    font-size: 14px; /* Smaller text for readability */
    line-height: 1.5; /* Better readability */
    margin-bottom: 15px; /* Space between paragraphs */
  }

  /* Reordering for better flow on mobile */
  .padel-section .order-md-2 {
    order: 2; /* Text first, image second on mobile */
  }

  .padel-section .order-md-1 {
    order: 1;
  }
}

/* For slightly larger screens like tablets */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .padel-section .padel-image {
    height: 400px; /* Adjust height for tablets */
  }

  .padel-section h2 {
    font-size: 30px; /* Slightly larger for tablets */
  }

  .padel-section h3 {
    font-size: 20px; /* Adjust for tablets */
  }

  .padel-section p {
    font-size: 16px; /* Slightly larger for tablets */
  }
}


.text_color{
  color: var(--secondary-color);
}

.button_color{
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 100px;
  padding: 15px;
}

.lets_talk{
  background: #e7fa50;

}


.our_events {
  background-color: #e7fa50;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
  margin-bottom: 20px;
  
}

.our_paddle{
  background-color: #e7fa50;
  border-top-left-radius: 200px;
  border-bottom-right-radius: 200px;
  margin-bottom: 20px;
}

.swiper-vertical{
  padding: 200px;
}


/* 
*---------------------------------------
*  Transition style
*---------------------------------------
*/

/* Ensure smooth transitions for background and text color */
body {
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Adjust text color for better contrast */
h1, h2, h3, h4, h5, h6, p, a, .text-white {
  transition: color 0.5s ease;
}

/* Default background color */
body {
  background-color: #203d3d; /* Green background */
  color: #000000; /* Black text */
}

/* Black background for specific sections */
#section_3,
#section_4 {
  background-color: #171616; /* Black background */
  color: #ffffff; /* White text */
}

/* Green background for specific sections */
#section_5 {
  background-color: #203d3d; /* Green background */
  color: #000000; /* Black text */
}