body {
	font-family: Arial, sans-serif;
	margin: 0;
	line-height: 1.6;
}

header {
	background: #9dd3a8;
	color: white;
	padding: 20px;
	text-align: center;
}

section {
	padding: 20px;
	max-width: 800px;
	margin: auto;
}

h2 {
	color: #5a8a63;
}

footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 10px;
}
.instructor-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
	gap: 20px;
	flex-wrap: wrap; /* allows stacking on smaller sreens */
}

.instructor-photo {
	width: 180px;
	height: 180px;
	border-radius: 50%; 
	object-fit: cover;
	flex-shrink: 0; /* stops image from shrinking */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /*soft shadow */
}

.instructor-text {
	flex: 1;
	min-width: 250px; /* ensures text isn't too narrow */
}

.instructor-text h2{
	margin-top: 0;
}

.instructor-text p {
	font-size: 1.1em;
	line-height: 1.6;
}

/* Small screen adjustments */@media (max-width: 600px) {
	.instructor-profile {
		flex-direction: column;
		text-align: center;
	}
}

.image-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 15px; /* space between images*/
	justify-content: center;
	margin-top: 20px;
}

.image-gallery img {
	max-width: 100%;
	height: auto;
	width: 200px; /* fixed width, but adjusts if screen is smaller */
	border-radius: 8px;/* rounded corners */
	box-shadow: 0 2px 6px
	rgba(0,0,0,0.2);/*subtle shadow*/
	object-fit: cover;
}

.instructor-photo {
	display: block;
	margin: 0 auto 20px; /*centers the image and adds space below */
	width: 150px; /*adjust size*/
	height: auto; /*keeps proportions */
	border-radius: 50%; /* makes it circular */
}

.site-header {
    text-align: center; /* centers the logo */
    padding: 20px 0;
    background-color: #ffffff; /* optional background */
}

.logo {
    max-width: 200px; /* adjust size */
    height: auto;
}

.sport-premium {
  background-color: #f0f8ff; /* Light blue background, you can change the color */
  padding: 10px; /* Padding around the text */
  border: 2px solid #0073e6; /* Blue border, you can change the color */
  border-radius: 5px; /* Rounded corners */
  font-weight: bold; /* Make the text bold */
  color: #003366; /* Dark blue text color */
}