/* 리셋 및 기본 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.baro-brand-container {
  font-family: "Noto Sans KR", sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.baro-brand-section {
  display: flex;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

/* 이미지 컨테이너 및 스타일 */
.baro-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.baro-image-container:hover {
  transform: scale(1.02);
}

.baro-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.baro-image-container:hover .baro-hero-image {
  transform: scale(1.05);
}

/* 재생 버튼 스타일 */
.baro-play-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-color: #0095ff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 2;
}

.baro-play-button svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.baro-play-button:hover {
  transform: scale(1.1);
  background-color: #007ad6;
}

/* 컨텐츠 스타일 */
.baro-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.baro-title {
  font-size: 36px;
  font-weight: 700;
  color: #0095ff;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.baro-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #0095ff;
  transition: width 0.5s ease;
}

.baro-content:hover .baro-title::after {
  width: 100%;
}

.baro-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* 버튼 스타일 */
.baro-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background-color: #0095ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 16px;
  transition: all 0.3s ease;
  width: fit-content;
}

.baro-button:hover {
  background-color: #007ad6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 149, 255, 0.3);
}

.baro-arrow-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.baro-button:hover .baro-arrow-icon {
  transform: translateX(5px);
}

/* 반응형 디자인 */
@media (max-width: 992px) {
  .baro-brand-section {
    flex-direction: column;
  }

  .baro-image-container,
  .baro-content {
    width: 100%;
  }

  .baro-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .baro-play-button {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  .baro-play-button svg {
    width: 24px;
    height: 24px;
  }

  .baro-title {
    font-size: 28px;
  }

  .baro-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .baro-container {
    padding: 10px;
  }

  .baro-brand-section {
    margin: 20px 0;
    gap: 20px;
  }

  .baro-play-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .baro-play-button svg {
    width: 20px;
    height: 20px;
  }

  .baro-title {
    font-size: 24px;
  }

  .baro-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
