:root {
  --accent: #960000;
  --bg: #fff;
  --bg-contr: #f7f7f7;
  --border: #d0d0d0;
  --font-sans: "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
}

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

body {
  font: 16px/1.6 var(--font-sans);
  background: var(--bg);
  color: #333;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}


img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin: auto;
  cursor: pointer;
}

/* ----- Buttons ----- */
button {
  background: #4caf50;
  border: none;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background: #45a049;
  transform: scale(1.05);
}
button:active {
  transform: scale(0.98);
}

/* ----- Header ----- */
header {
  background: var(--accent);
  color: #fff;
  padding: 1rem 5vw;
  position: sticky;
  top: 0;
  z-index: 999;
  max-height: fit-content;

}

header h1 {
  font-size: 1.6rem;
  text-align: center;
}


nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
	text-wrap:wrap;
  gap: 1rem;
  align-items: center;
max-width:90vw;


}

nav a {
  color: #fff;
  font-weight: 600;
}

/* ----- Logo ----- */
.logo {
  margin: 0.7vh;
}

.logo a img {
  max-width: 130px;
  max-height: 130px;
	max-width:10vw;
  object-fit: contain;
  display: block;
  margin: auto;


}


img.logo  {
  max-width: 130px;
  max-height: 130px;
	max-width:10vw;
  object-fit: contain;
  display: block;
  margin: auto;


}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  background: url("images/666A1010.jpg") center/cover no-repeat;

	height:80vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero h2 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.8rem;
  }
}

/* ----- Headings ----- */
h3 {
  font-size: 1.3rem;
  color: var(--accent);
  text-align: center;
  text-transform: uppercase;
  margin: auto;
  width: fit-content;
max-width:90vw;
}

h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin: auto;
  width: fit-content;
max-width:90vw;
}

h4 em {
  margin: auto;
}

/* ----- Main Content ----- */
main {
  padding: 3rem 5vw;
  display: grid;
  gap: 3rem;
}

/* ----- Cards ----- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.card {
  background: var(--bg-contr);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  width: 450px;
  height: 450px;
  max-width: 80%;
  min-height: fit-content;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.card img {
  max-width: 300px;
  max-height: 90%;
  border-radius: 10px;
  object-fit: cover;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card ul {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-indent: 15px;
}

@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
  }

  .card-grid img {
    width: 100%;
    max-height: 300px;
  }
}

/* ----- About Section ----- */
.about-card {
  width: 80%;
  margin: auto;
}

.about-card ul {
  list-style: disc inside;
  margin-top: 0.6rem;
}

/* ----- Pricing List ----- */
.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.pricing-list li {
  background: var(--bg-contr);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.6rem 1rem;
}

/* ----- Marquee (Flex Scrolling) ----- */

.marquee-wrapper,
.marquee-wrapper-vid {
  display: flex;
  margin: auto;
  overflow: hidden;
  overflow-x: scroll;
  background: var(--bg-contr);
  border-block: 1px solid var(--border);
  max-height: 50vh;
}

.marquee-vid,
.marquee {
  margin: auto;
  display: flex;
  gap: 0.5rem;
  animation: scroll-right 150s linear infinite;
}

.marquee .item {
  flex: 0 0 auto;
  background: #ddd;
  padding: 0.3rem;
  border-radius: 4px;
  text-align: center;
  min-width: 150px;
  max-height: 50vh;
}
.marquee > img {
  object-fit: contain;
  max-height: 40vh;
}

.marquee > video {
  object-fit: contain;
  max-height: 40vh;
}

@keyframes scroll-right {
  0% {
    transform: translateX(0);
  }
100%{
    transform: translateX(-9400px);	
}
}

/* ----- Contact Modal & Social Buttons ----- */
.contact-modal {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.contact-modal.active {
  opacity: 1;
}

.contact-modal h1 {
  font-size: 1rem;
  color: var(--accent);
}

.social-btns {
  display: none;
  opacity: 0;
  transition: all 0.4s;
}

.social-btns.active {
  display: flex;
  justify-content: space-between;
  opacity: 1;
  height: 35px;
  gap: 1vh;
  margin: auto;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.social-btn:hover {
  background: #313131;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  opacity: 1;
}

/* ----- Footer ----- */
footer {
  background: var(--bg-contr);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1.5rem 5vw;
  font-size: 0.9rem;
}

/* Coaches Section (Unified) */
#coaches {
  padding: 2rem 1rem;
  background: #f4f4f4;
}

li {
  text-indent: 0;
}

footer{
	display:flex;
	align-content:center;
	justify-content:center;
	max-height:10vh;
	padding:auto;
}

img {
  border-radius: 10px;
}
li.logo {
  max-height: 100%;
	max-width:10vw;
	

}

@media (width > height) {
  .card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
	.hero{
		height:75vh;
	}

}
@media (height > width) {
  .card-grid {
    display: flex;
    
    flex-direction: column;
    overflow-y: scroll;
    gap: 1.5rem;
    justify-content: center;
  }
	.hero{
		height:calc(65vh);
	}
}
h2{
font-size:1rem; 

}