/ * css/style.css */

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;
  background-color: #fff;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #2d2d91;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 40px;
  color: white;
  text-align: left;
  border-radius: 10px;
  max-width: 800px;
  margin-left: 5%;
  margin-right: auto;
}

.banner-overlay h1 {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: bold;
  word-break: keep-all;
  white-space: normal;
  max-width: 600px;
  margin: 0 auto;
}

.quick-menu {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.quick-menu h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2d2d91;
}

.menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.menu-card {
  width: 150px;
  padding: 20px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.menu-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .menu-items {
    flex-direction: column;
    align-items: center;
  }

  .menu-card {
    width: 80%;
  }

  .logo {
    font-size: 1.2rem;
  }
}

/* 모바일 헤더 메뉴 수직 정렬 대응 */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li a {
    font-size: 0.85rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 480px) {
  .banner-overlay h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}

.banner-overlay p {
  font-size: 1rem;
  font-weight: 300;
  color: #eee;
  margin: 0;
}

.event-section {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.event-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #e84c3d;
}

.event-highlight {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
}

.event-highlight strong {
  color: #2d2d91;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .event-highlight {
    font-size: 1rem;
  }
}

.strength-section {
  padding: 60px 20px;
  background-color: #f4f6fa;
  text-align: center;
}

.strength-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2d2d91;
}

.strength-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.strength-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 30px 20px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease;
}

.strength-card:hover {
  transform: translateY(-5px);
}

.strength-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.strength-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2d2d91;
}

.strength-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .strength-cards {
    flex-direction: column;
    align-items: center;
  }

  .strength-card {
    width: 90%;
  }
  .strength-card {
    width: 90%;
    margin: 0 auto;
  }

  .strength-card h3 {
    font-size: 1.1rem;
  }

  .strength-card p {
    font-size: 0.95rem;
  }

  .strength-card img {
    width: 60px;
    height: 60px;
  }

  .strength-section h2 {
    font-size: 1.6rem;
  }
}
/* Footer Styles */
.site-footer {
  padding: 40px 20px;
  background-color: #2d2d91;
  color: #fff;
  text-align: left;
}

.site-footer p,
.site-footer address {
  margin: 5px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer address {
  font-style: normal;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px;
  }

  .site-footer p,
  .site-footer address {
    font-size: 0.85rem;
  }
}

/* 모바일 헤더 메뉴 수직 정렬 대응 */
@media (max-width: 768px) {
  .site-footer p,
  .site-footer address {
    font-size: 0.8rem;
    line-height: 1.4;
    word-break: keep-all;
    white-space: normal;
  }

  .site-footer address {
    display: block;
  }
}

.top-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 12px 16px;
  background-color: #2d2d91;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background-color 0.3s ease;
}

.top-button:hover {
  background-color: #1a1a80;
}
.membership-tier-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #e8f9f9, #fdfcff);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
}

.membership-tier-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #222;
}

.tier-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.tier-card {
  flex: 1 1 180px;
  max-width: 200px;
}

.tier-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}

.tier-card p {
  font-size: 1rem;
  font-weight: bold;
  color: #2d2d91;
  margin: 0;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .tier-cards {
    flex-direction: column;
    align-items: center;
  }

  .tier-card {
    max-width: 300px;
  }
}
/* Intro Section Styles */
.intro-section {
  background: linear-gradient(to right, #f8f9fc, #eef2f7);
  padding: 60px 20px;
  text-align: center;
  color: #333;
}

.intro-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2d2d91;
}

.intro-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  word-break: keep-word;
}

@media (max-width: 768px) {
  .intro-section h2 {
    font-size: 1.6rem;
  }

  .intro-section p {
    font-size: 1rem;
  }
}

/* Team Section Styles */
.team-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.team-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #2d2d91;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.team-member {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  width: 240px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.2rem;
  color: #2d2d91;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    width: 90%;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.modal-content h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #155724;
  margin-bottom: 20px;
}

.expert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.expert-card {
  width: 150px;
  background-color: #f5fef7;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.expert-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.expert-card h4 {
  font-size: 1rem;
  margin: 5px 0;
  color: #003366;
}

.expert-card p {
  font-size: 0.9rem;
  color: #198754;
  margin: 0;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .expert-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .expert-card {
    width: 90%;
  }
}

.expert-button {
  background: linear-gradient(45deg, #2d2d91, #6a89cc);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.expert-button:hover {
  background: linear-gradient(45deg, #1e1e70, #5068b3);
  transform: translateY(-2px);
}
.strengths-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.strengths-section h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #0056c3;
}

.strengths-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.strengths-item {
  max-width: 280px;
  text-align: center;
}

.strengths-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.strengths-item h3 {
  font-size: 1.5rem;
  color: #0056c3;
  margin-bottom: 10px;
}

.strengths-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.strengths-item p strong {
  color: #0056c3;
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .strengths-grid {
    flex-direction: column;
    align-items: center;
  }

  .strengths-item {
    max-width: 100%;
  }

  .strengths-section h2 {
    font-size: 1.6rem;
  }
}
.html {
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}