/* COLOR PALETTE
BLACK #111111
RED #540000
TEAL #004749
TAN #b09b72
WHITE ededed */
/* General Styling */
:root {
  --black: #000000;
  --white: #fcfcfc;
  --red: #ad0013;
  --gold: #a67d43;
}

* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "Metrophobic", "roboto", sans-serif;
  color: var(--white);
  border: 0px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
  overflow-x: hidden;
}

html {
  background: var(--black);
  height: 100%;
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
}

section {
  height: 100vh;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 5rem;
  background-color: var(--black);
}

h2 {
  font-size: 4rem;
  font-family: "metal mania", sans-serif;
  color: var(--red);
  margin-bottom: 1rem;
}

button {
  margin-top: 2rem;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  background: linear-gradient(60deg, #470008, var(--red));
  cursor: pointer;
  border: none;
  width: 200px;
  transition: all 0.3s ease;
}

.red {
  color: var(--red);
}

.gold {
  color: var(--gold);
}

/* HERO SECTION */
#hero {
  background: none;
  justify-content: center;

}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: url("../assets/img/mtai_floor.JPG") no-repeat center center;
  object-fit: cover;

  z-index: -10;
  filter: grayscale(100%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35));
}

.hero-text-container {
  margin-left: 10%;
}


.hero-text {
  width: 600px;
  font-family: "Metal Mania", sans-serif;
  font-weight: normal;
  font-size: 7rem;
}

.tagline {
  font-size: 2rem;
  letter-spacing: .25rem;
  color: var(--gold);
}

.cta-btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--black);
  cursor: pointer;
  border: none;
  width: 200px;
  transition: background 0.3s ease;
}

.about-btn {
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--black);
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: var(--red);
}



/* ABOUT SECTION */
#about {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-text {
  margin: 3rem;
}

.about-text p {
  font-size: 1.5rem;
  max-width: 800px;
  text-align: left;
  margin-bottom: 1.5rem;
  word-spacing: 1rem;
}

.instructors-img {
  padding: 3rem;
  width: 50%;
}

.learn-more-btn {
  margin-top: 2rem;
  margin: 500px;
}

/* PROGRAM SECTION */
#program {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#program h3 {
  margin-bottom: 1rem;
  font-family: "Metal Mania", sans-serif;
  letter-spacing: .25rem;
}

.program-card-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}

.program-card {
  border: 2px solid var(--gold);
  padding: 2rem;
  margin: .5rem;
  width: 25%;
  aspect-ratio: 1/1;
  text-align: left;
}

.program-card h3 {
  font-size: 2rem;
}

.program-card p {
  font-size: 1.2rem;
}

.schedule-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}

.schedule-container li {
  margin-bottom: .5rem;
}

.schedule-container b {
  color: var(--gold);
}

.vl {
  border-left: 2px solid var(--gold);
  height: 150px;
  margin: 0 1rem;
}

.schedule h3 {
  font-size: 2rem;
  margin-bottom: 0;
}

.schedule p {
  font-size: 1.2rem;
}

.specialized-training-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.specialized-training-container h3 {
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--gold);
}

.specialized-training-container h4 {
  margin-top: 1rem;
}

.specialized-training-container p {
  font-size: 1rem;

}

/* TESTIMONIALS SECTION */
#testimonials {
  height: auto;
  text-align: center;
  padding: 4rem 2rem;
}

.carousel-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  gap: 1rem;
}

.carousel {
  position: relative;
  /* anchors absolute children */
  width: 100%;
  height: 300px;
  overflow: hidden;
  /* clips anything outside */
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial {
  transform: scale(0%);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
}

.testimonial[data-active],
.testimonial[data-next],
.testimonial[data-prev] {
  opacity: 1;
  transition: 0.5s all ease;
  position: absolute;
  width: 400px;
  aspect-ratio: 2/1;
  display: flex;
  z-index: 0;
}

.testimonial[data-active] {
  transform: scale(100%);

}

.testimonial[data-next] {
  transform: translateX(80%) scale(40%);
  opacity: 40%;
}

.testimonial[data-prev] {
  transform: translateX(-80%) scale(40%);
  opacity: 40%;
}

.testimonial p {
  font-size: 1.25rem;
  font-style: italic;
}

.testimonial cite {
  font-weight: bold;
  color: var(--gold);
}

.carousel-btn-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

.carousel-container button {
  background: var(--red);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  margin: 0 0.5rem;
  border-radius: 5px;
  width: 20%;
}

.carousel-container button:hover {
  background: var(--gold);
}

/* CTA CONTAINER */

#cta {
  background: var(--black);
  display: flex;
  flex-direction: row;
}

/* CONTACT CONTAINER */

.contact-container h4 {
  font-size: 1.5rem;
  margin: 1rem 0 0 0;
}

.contact-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  text-align: left;
  padding: 2rem;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.contact-form button {
  background: linear-gradient(90deg, var(#470008) var(--red));
  color: var(--black);
  border: none;
  padding: 0.75rem;
  cursor: pointer;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: var(--black);
  color: white;
  padding: 2rem;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  padding: 1rem;
}

.footer-section h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: var(--gold);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 0.9rem;
}