/* Studio Location Section */
.studio-location-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

.studio-location-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 3rem;
}

/* Left side - Studio Image */
.studio-image-container {
  flex: 1;
}

.studio-exterior-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Right side - Information */
.studio-info-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.studio-logo-container {
  margin-bottom: 0.5rem;
}

.studio-logo {
  max-width: 280px;
  height: auto;
}

.studio-description {
  margin-bottom: 0.3rem;
}

.studio-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.studio-cta {
  margin-bottom: 0.5rem;
}

.btn-directions, .btn-meet {
  display: inline-block;
  background-color: #1a1a1a;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-directions:hover, .btn-meet:hover {
  background-color: #000000;
}

/* Trainer Profile */
.trainer-profile {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1rem;
}

.trainer-image-container {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
}

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

.trainer-cta {
  margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .studio-location-container {
    flex-direction: column;
    padding: 0 1.5rem;
  }
  
  .studio-image-container {
    margin-bottom: 2rem;
  }
  
  .trainer-profile {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .trainer-image-container {
    width: 180px;
    height: 180px;
  }
  
  .trainer-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
  
  .btn-meet {
    font-size: 1.1rem;
    padding: 0.85rem 2rem;
  }
  
  .studio-logo {
    max-width: 220px;
  }
}

@media (max-width: 767.98px) {
  .studio-location-section {
    padding: 3rem 0;
  }
  
  .trainer-image-container {
    width: 200px;
    height: 200px;
  }
} 