@font-face {
    font-family: fontstyle;
    src: url(/fonts/BonaNovaSC-Regular.ttf);
}

:root {
    --bg-cream: #fdf6f2;
    --card-dark: #1e1e25;
    --muted: #8c8c8c;
    --cta: linear-gradient(90deg, #ff7b65, #ff5a8b);
    --text-black: #191919;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", system-ui, sans-serif;
    background: var(--bg-cream);
    color: var(--text-black);
    -webkit-font-smoothing: antialiased;
}

/* Container */
.container {
    display: flex;
    height: 100vh;
}

/* Left Section */
.left {
    flex: 1 1 60%;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: "Merriweather", serif;
    font-weight: 700;
    font-size: 36px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand:hover {
    transform: translateY(-3px);
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    gap: 28px;
    white-space: nowrap;
    align-items: center;
    font-weight: 500;
    color: #6b6b6b;
    margin-left: 45%;
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--cta);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #000;
    transform: translateY(-3px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    border-radius: 26px;
    padding: 10px 18px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: var(--cta);
    color: black;
    cursor: pointer;
    font-family: fontstyle;
    z-index: 100;
    transition: all 0.3s ease;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 90, 139, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero_2{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}



.hero h1 {
    font-size: 50px;
    line-height: 0.9;
    letter-spacing: 2px;
    color: #222;
    max-width: 680px;
}

.learn-content h2 {
  font-size: 50px;
  color: #222;
  line-height: 1.1;
  letter-spacing: 2px;
}



.hero p.lead {
    max-width: 520px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Buttons */
.cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 16px;
}

.btn-primary {
    background: var(--cta);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    box-shadow: 0 8px 18px rgba(255, 90, 110, 0.18);
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.link-secondary {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.right-bg {
    width: 35%;
    /* adjust size of right section */
    background: #1f1f1f;
    /* OR use image below */
    border-radius: 0 0 0 50px;
}

/* Partner Logos */
.partners {
    display: flex;
    gap: 36px;
    align-items: center;
    opacity: 0.6;
}

.partners img {
    height: 38px;
    width: auto;
}

/* Right Section */
.right {
    flex: 0 0 40%;
    position: relative;
    min-width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.image-area {
    width: 260px;
    height: 260px;
    overflow: visible;
    z-index: 2;
}

.image-area-2{
     width: 260px;
    height: 260px;
    overflow: visible;
    z-index: 2;
}


.image-area img {
    width: auto;
    height: 550px;
    border-radius: 80%;
    margin-top: -45px;
    position: relative;
    right: 60px;
}

.image-area-2 img {
    width: auto;
    height: 300px;
     margin-top: -45px;
    position: relative;
    right: 60px;
}

.card p {
    color: black;
    font-size: 14px;
    margin: 20px;
    line-height: 1.4;
    font-family: fontstyle;
}

.card h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: fontstyle;
}

.corner-accent {
    position: absolute;
    bottom: -26px;
    right: 18px;
    width: 120px;
    height: 60px;
    background: var(--right-grad-b);
    border-radius: 18px;
    z-index: 1;
}

.right {
    flex: 0 0 40%;
    position: relative;
    min-width: 360px;
    display: flex;
    /* Remove center alignment */
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 90px;
    /* moves card downward */
    padding-left: 60px;
    /* moves card to the left */
}



.section_2 {
    padding: 60px 20px;
    text-align: center;
}

.section_3{
    padding: 60px 20px;
    text-align: left;
}

.box {
    color: white;
    height: 100vh;
    margin: 0 auto;
    background-color: black;
}

section.section_2 {
    background: #000;  
    color: white;
    min-height: 400px
}



.program-section {
  background: #1c1c1c;
  padding: 120px 60px;
  text-align: center;
  color: white;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-subtitle {
  margin-top: 10px;
  color: #cfcfcf;
  font-size: 16px;
}

.program-cards {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.program-card {
  background: var(--cta);
  color: var(--cta);
  width: 280px;
  padding: 40px 28px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.icon-circle img {
  width: auto;
  height: 75px;
  object-fit: cover;
  border-radius: 50px;
}

.learn-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.learn-link:hover {
  text-decoration: underline;
}

.learn-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 8%;
  background: white;
  gap: 60px;
}



.learn-desc {
  max-width: 460px;
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.learn-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.btn-start {
  background: var(--cta);
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  cursor: pointer;
}

.btn-video {
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.play-icon {
  background: var(--cta);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-images {
  position: relative;
}

.img-shape {
  width: 370px;
  height: 370px;
  border-radius: 14px;
  transform: rotate(45deg);
  position: relative;
  overflow: hidden;
}

.img {
  position: absolute;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: 14px;
}

/* positioning images */
.img-top-left {
  top: 0;
  left: 0;
}
.img-top-right {
  top: 0;
  right: 0;
}
.img-bottom-left {
  bottom: 0;
  left: 0;
}
.img-bottom-right {
  bottom: 0;
  right: 0;
}

.assist-section h2{
    text-align: center;
    margin-top: 40px;
}

h3{
    font-family: fontstyle;
}

.trainer-card {
  width: 230px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  border: 2px solid black;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.trainer-img {
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
}

.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer-grid {
   display: flex;
  justify-content: center; /* centers them */
  align-items: flex-start;
  gap: 30px; /* space between cards */
  flex-wrap: wrap; /* allows wrap on smaller screens */
  margin-top: 40px;
  margin-bottom: 40px;
}

.trainer-card p{
    white-space: nowrap;
}




.nav-links {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  align-items: center;
  font-weight: 500;
  color: #6b6b6b;
  margin-left: 45%;
}

/* Responsive */
@media(max-width:900px) {
  .learn-section {
    flex-direction: column;
    text-align: center;
  }

  .learn-images {
    margin-top: 40px;
  }
}



@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .login-btn {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 15px 20px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

.connect-section {
  background: #1e1e25;
  color: white;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.connect-left h2 {
  font-size: 30px;
  line-height: 1.2;
  font-family: fontstyle;
}

.join-btn {
  margin-top: 28px;
  background: var(--cta);
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.join-btn:hover {
  transform: scale(1.05);
}

.connect-right {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px;
  justify-items: center;
  align-items: center;
}

.word {
  background: #ffffff;
  color: #000;
  padding: 10px 20px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
}

/* Center row words */
.word:nth-child(4) {
  grid-column: 1 / 2;
}

.word:nth-child(5) {
  grid-column: 3 / 4;
}

/* Responsive */


.footer {
  background: var(--bg-cream);
  padding: 50px;
  color: #000;
  font-family: "Montserrat", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: "Merriweather", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s;
}

.footer-col ul li:hover {
  color: var(--right-grad-b);
}

.footer-col p {
  margin-bottom: 8px;
  color: #444;
}

.footer-bottom {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}





hr {
  border: none;
  border-top: 1px solid #ddd;
  margin-bottom: 30px;
}

.copyright {
  text-align: center;
  margin-top: 18px;
  padding-bottom: 20px;
  font-size: 14px;
  color: #f8f6f6;
  font-weight: 500;
  background: black;
  font-family: fontstyle;
}


/* Responsive */










/* Responsive 
@media (max-width:1100px) {
  .hero h1 { font-size: 68px; }
  .container { padding: 30px; }
  .left { padding: 24px; }
  .right { min-width: 320px; }
  .photo-circle { width: 190px; height: 190px; top: -60px; right: 26px; }
  .testimonial-card { width: 320px; padding: 28px; }
}
@media (max-width:880px) {
  .container { flex-direction: column; padding: 24px; }
  .left { padding: 18px; }
  .right { min-width: unset; height: 420px; margin-top: -30px; }
  .right .bg-strip { width: 100%; height: 380px; border-radius: 18px; }
  .testimonial-card { margin: 0 auto; transform: translateY(-60px); }
  .hero h1 { font-size: 44px; }
  .nav-links { display: none; }
  .brand { font-size: 28px; }
}
@media (max-width:460px) {
  .hero h1 { font-size: 34px; }
  .photo-circle { width: 150px; height: 150px; top: -50px; right: calc(50% - 75px); }
  .testimonial-card { width: 86%; }
  .hero p.lead { font-size: 14px; }
  .btn-primary { padding: 10px 16px; }
}

@media (max-width: 900px) {
  .connect-section {
    flex-direction: column;
    text-align: center;
  }

  .connect-right {
    grid-template-columns: repeat(2, auto);
  }
}

@media(max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

  */

  


