body {
  font-family: 'Rock Salt', cursive;
  font-size: 18px;
  margin: 0;
  line-height: 2.5;
  background: white;
  color: black;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.lang-switch {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #fff;
  border: 2px solid #ff5733;
  padding: 6px 12px;
  border-radius: 5px;
  text-decoration: none;
  color: #ff5733;
  font-weight: bold;
  z-index: 3;
}

/* Header with full image shown */
header {
  position: relative;
  background: url('family-beach-fit-banner.jpg') center center no-repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  min-height: 80vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(0, 0, 0, 0.3);*/
  z-index: 1;
}

/* Ensures all header content is above overlay */
header .navbar,
header h1,
header p,
header .cta-button {
  position: relative;
  z-index: 2;
}

/* Headings */
h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}

h2 {
  margin-top: 0;
}

/* Call to Action */
.cta-button {
  background: #ff5733;
  color: white;
  padding: 12px 24px;
  border: none;
  margin-top: 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

/* Section Layout */
section {
  padding: 30px 40px;
  max-width: 1200px;
  margin: auto;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

.trainer-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.trainer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.trainer-photo {
  width: 250px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trainer-bio {
  flex: 1;
  min-width: 280px;
}

.trainer-bio h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.trainer-bio h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.trainer-bio p {
  line-height: 1.8;
  margin-bottom: 10px;
}


/* Service Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--main-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #fffdfb;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.service-card ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
}

.service-card li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Photo Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Google Calendar */
.calendar-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding: 0 10px;
}

.calendar-wrapper iframe {
  width: 100%;
  max-width: 700px;
  height: 500px;
  border: solid 1px #777;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
}

/* Link Styling */
a {
  color: #ff5733;
  text-decoration: none;
}

/* Mobile Tweaks */
@media (max-width: 600px) {
  header {
    min-height: 60vh;
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .logo {
    width: 160px;
  }
}
