/* Google Fonts - Noto Sans KR */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;900&display=swap");

/* Basic Styling */
body {
  font-family: "Noto Sans KR", sans-serif;
  background-color: #ffffff;
  color: #3a4d4a; /* 기본 텍스트 색상 변경 */
}

.navbar-item img {
  max-height: 100%;
  max-width: 100%;
}
/* 데스크톱에서만 상단 패딩 적용 */
@media screen and (min-width: 769px) {
  a.navbar-item.topmenu {
    /* padding-top: 4rem !important; */
  }
}
/* 모바일에서 브랜드 로고 크기 조정 */
@media screen and (max-width: 768px) {
  .navbar-brand .navbar-item img {
    width: 120px !important;
    max-width: 120px !important;
  }
}

/* Header */
.header-container {
  background-image: url("img/bg_nav.jpg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #d8e0db;
}

.navbar {
  background-color: transparent;
  /* height: 150px; */
}

.navbar-item {
  font-weight: 700;
  color: #3a4d4a; /* 네비게이션 텍스트 색상 */
  font-size: 1.1rem;
}

.navbar-item:hover {
  background-color: transparent;
  color: #1a8869; /* 호버 시 색상 변경 */
}

/* Hero Section */
.main-hero {
  background-image: url("img/bg_mainImg.jpg");
  background-size: cover;
  background-position: center bottom; /* 배경 이미지 위치 조정 */
}

.main-hero .hero-body {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.main-content-image {
  max-width: 1170px; /* 메인 이미지 최대 너비 설정 */
  height: auto;
}

/* Schedule Section */
.schedule-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}

.main-schedule-image {
  max-width: 1270px;
}

/* Sponsors Section */
.sponsors-section {
  background-image: url("img/bg_btHost.jpg");
  background-size: cover;
  background-position: center;
  padding: 3rem 1.5rem;
}

.host-image {
  max-width: 800px;
}

/* Footer */
.footer {
  background-image: url("img/bg_footer.jpg");
  background-size: cover;
  background-color: #252525;
  color: #a0a0a0; /* 푸터 텍스트 색상 */
  padding: 3rem 1.5rem;
}

.footer p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.footer-logo {
  width: 180px;
}

.navbar-burger span {
  background-color: #000 !important;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .navbar-item {
    font-size: 1rem;
  }

  .main-content-image,
  .main-schedule-image,
  .host-image {
    max-width: 95%; /* 모바일에서 이미지 너비 조정 */
  }

  .footer .columns {
    text-align: center;
  }
  .footer .column.is-narrow {
    margin: 1.5rem auto 0;
  }
}
