/* style.css */

/* Color palette */
:root {
  --color-maroon: #8c1d40;
  --color-gold:   #ecaf48;
  --text-dark:    #333;
  --bg-light:     #f9f9f9;
}

/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

h1,
h2,
h3{
    font-weight: 400;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: var(--color-maroon);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.logo img {
  height: 70px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8rem;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover{
    color:#ecaf48;
}

/* Hero */

.hero-video {
    position: relative;
    width: 100%;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video__media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
  }
  
  .hero-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 11, 0.4);
    z-index: 2;
  }

  .hero-video__content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: #fff;
    margin-top: 12rem;
  }

  .hero-video__content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 200;
  }

  .btn {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 400;
    background-color: var(--color-gold);
    color: #000;
  }

  .btn-primary{
    padding: 0.75rem 4.5rem;
    margin-top: 4rem;
    border: solid;
    border-width: 0 0 0 8px;
    border-color: #333;
  }

  .btn-secondary{
    padding: 0.75rem 4.5rem;
    margin-top: 6rem;
    border: solid;
    border-width: 0 8px 0 0;
    border-color: #333;
  }
 
  
/* Sections */
.section {
  padding: 4rem 0 0 0;
}

.section-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}


.section-text,
.about-text {
  flex: 1 1 350px;
  font-weight: 400;
}

h2{
    padding-bottom: 2rem;
}

.section-image,
.about-image {
  flex: 1 1 350px;
}

.section-image img {
    width: 100%;
    border-radius: 0px;
    border: solid;
    border-width: 0 0 0 8px;
    border-color: #333;
  }

.about-image img {
  width: 100%;
  border-radius: 0px;
  border: solid;
  border-width: 0 8px 0 0;
  border-color: #333;
}

/* waves section specific */

.section-text{
    padding: 0 5rem 1rem 0;
}


/* About section specific */
.about-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.about-text{
    padding: 0 0 1rem 5rem;
}

/* Instructors */
.instructors {
  background-color: var(--color-gold);
  color: #000;
}

.section-title {
  margin-bottom: 0rem;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding-bottom: 4rem;
}

.instructor-card {
  background-color: #fff;
  padding: 1.5rem;
  text-align: left;
}

.instructor-card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  font-weight: 400;
  border: solid;
  border-width: 0 0 8px 0;
  border-color: #333;
}

/* Footer */
.site-footer {
  background-color: var(--color-maroon);
  color: #fff;
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer-copy {
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-inner,
  .about-inner {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .main-nav {
    display: none; /* Simplified mobile nav - you may add a hamburger menu */
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
