    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'PaperlogyRegular', sans-serif; overflow-x: hidden; }

    

    @font-face { font-family: 'GiantsBold'; src: url('/app/font/Giants-Bold.ttf') format('truetype'); }
    @font-face { font-family: 'PaperlogyBlack'; src: url('/app/font/Paperlogy-9Black.ttf') format('truetype'); font-weight: 900; }
    @font-face { font-family: 'PaperlogySemiBold'; src: url('/app/font/Paperlogy-6SemiBold.ttf') format('truetype'); font-weight: 600; }
    @font-face { font-family: 'PaperlogyMedium'; src: url('/app/font/Paperlogy-5Medium.ttf') format('truetype'); font-weight: 500; }
    @font-face { font-family: 'PaperlogyRegular'; src: url('/app/font/Paperlogy-4Regular.ttf') format('truetype'); font-weight: 400; }

    nav {
      font-family: 'GiantsBold', sans-serif;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 6px 40px;
      background: rgba(0, 0, 0, 0.4);
      color: white;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 10;
      transition: background-color 0.3s ease; 
    }
   
    nav.scrolled { background: rgba(0, 0, 0, 1); }
    nav ul { display: flex; gap: 45px; list-style: none; }
    nav ul li a { color: white; text-decoration: none; font-size: 1.2rem; }

    .hamburger {
      display: none;
      font-size: 2rem;
      color: white;
      cursor: pointer;
      z-index: 20;
    }

    .lang-switch-icon {
      position: fixed;
      top: 70px;
      right: 20px;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #f42328; /* 기본 빨강 */
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: background 0.3s ease, transform 0.2s ease, width 0.2s ease, border-radius 0.2s ease;
      overflow: hidden;
    }
    .lang-switch-icon img.lang-icon {
      width: 34px;
      height: 34px;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .lang-switch-icon:hover {
      background-color: #d81c22;
      transform: scale(1.1);
      width: 80px;
      border-radius: 20px;
    }
    /* hover 시 아이콘 사라짐 */
    .lang-switch-icon:hover img.lang-icon {
      opacity: 0;
    }
    /* KO → KOREAN */
    .lang-switch-icon[hreflang="ko"]:hover::after {
      content: "KOREAN";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 12px;
      font-family: 'PaperlogySemiBold', sans-serif;
      white-space: nowrap;
      pointer-events: none;
    }
    /* EN → ENGLISH */
    .lang-switch-icon[hreflang="en"]:hover::after {
      content: "ENGLISH";
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      font-size: 12px;
      font-family: 'PaperlogySemiBold', sans-serif;
      white-space: nowrap;
      pointer-events: none;
    }
   
    header { padding-top: 100px; }


    h1, h2, h3, p { margin-top: 0px; text-align: center; }
    h1 { font-family: 'GiantsBold'; }
    h2 { font-family: 'PaperlogyBlack'; }
    h3 { font-family: 'PaperlogySemiBold'; font-size: 24px; color: #333; }
    p { font-family: 'PaperlogyRegular'; font-size: 16px; color: #555; line-height: 1.6; }

    

    .section-subtitle {
      font-family: 'PaperlogyBlack', sans-serif;
      font-size: 1.8rem; text-align: center;
      margin-bottom: 20px;
    }

    .section-description {
      font-family: 'PaperlogySemiBold';
      font-size: 1.8rem; text-align: center; color: #000000;
      margin-bottom: 30px;
    }

    .section-subtext {
      font-family: 'PaperlogyRegular';
      font-size: 1.2rem; text-align: center; color: #666666;
      margin-bottom: 30px; line-height: 1.5;
    }


    .top-visual-wrapper { position: relative; overflow: hidden; }
    .top-visual-wrapper img { width: 100%; height: auto; display: block; }
    .top-visual-textbox {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      color: #fff; text-align: center;
    }
    .top-visual-title {
      font-family: 'PaperlogyBlack', sans-serif;
      font-size: 4.8rem;
      text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
      margin: 0;
    }

    .top-visual-subtitle {
        font-family: 'PaperlogySemiBold', sans-serif;
        font-size: 1.4rem;
        margin-top: 20px;
        color: #fff;
    }

    

    .zone-nav{
      position: sticky;
      top: 90px;
      z-index: 100;
      display: flex;
      justify-content: center;
      gap: 40px;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(10px);
      padding: 15px 0;
    }

    .zone-nav a{
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      padding: 8px 14px;
      border-radius: 20px;
      transition: 0.3s;
    }

    .zone-nav a:hover{
      background: rgba(255,255,255,0.15);
    }

    .zone-nav a.active{
      background: #f42328;
      color: #fff;
    }

    
    .section-title {
      font-family: 'PaperlogySemiBold';
      font-size: 48px; text-align: center; color: #000000;
      background-color: #ffffff;
      top: 80px;
      margin-bottom: 30px;
      position: sticky;
      z-index: 9;
      padding: 10px 0; /* 추가적인 패딩 */
      border-bottom: 1px solid #ddd;
    }


    /* 섹션 */
    .venue-section { margin: 140px 0; }
    
    .section-gray { background: #f9f9f9; padding: 140px 0; }

    /* 첫 섹션만 예외 */
    #zone-space {
      margin-top: 0;
      padding-top: 120px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }


    /* 그리드 */
    .venue-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 32px;
    }

    #zone-space,
    #zone-space * {
      color: #000;
    }

    /* 카드 */
    .venue-card {
      border: 1px solid #e5e5e5;
      border-radius: 16px;
      overflow: hidden;
      background: #fff;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .venue-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .venue-card.horizontal {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 40px;
      padding: 32px;
    }

    .venue-image img {
      width: 100%;
      height: 360px;
      object-fit: cover;
    }

    /* 가로형 카드 전용 */
    .venue-card.horizontal .venue-image img {
      height: 100%;
      max-height: 360px;
      border-radius: 14px;
    }

    /* 콘텐츠 */
    .venue-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    /* 뱃지 */
    .badge-wrap {
      display: flex;
      gap: 8px;
      margin-bottom: 12px;
    }
    .badge {
      font-size: 0.8rem;
      padding: 6px 10px;
      border-radius: 20px;
      background: #f1f1f1;
    }

    .badge.primary { background: #e6f0ff; color: #1a4fd8; }
    .badge.secondary { background: #e8f7ef; color: #1b7a4b; }

    .venue-title {
      font-family: 'PaperlogyMedium';
      font-size: 1.6rem;
      position: relative;
      padding-top: 30px;
      margin-bottom: 12px;
    }

    .venue-title::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;       /* 짧은 선 */
        height: 3px;
        background: #000;
    }

    
    .venue-desc {
      font-family: 'PaperlogySemiBold';
      font-size: 1rem;
      line-height: 1.6;
      color: #000;
      position: relative;
      padding-bottom: 30px;
      margin-bottom: 30px;
    }

    .venue-desc::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 360px;      /* 조금 긴 선 */
      height: 1px;
      background: #000;
      opacity: 0.3;     /* 살짝 연하게 */
    }


    /* 특징 리스트 */
    .venue-features {
      font-family: 'PaperlogyRegular';
      padding-left: 18px;
      margin-bottom: auto;
      color: #444;
    }

    .venue-features li {
      margin-bottom: 6px;
    }


    /* 오른쪽 콘텐츠 */
    .venue-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }


    /* 제목/설명은 전체 폭 */
    .venue-card.horizontal .venue-title,
    .venue-card.horizontal .venue-desc {
      grid-column: 1 / -1;
      text-align: left;
    }


    /* 콘텐츠 정렬 */
    .venue-card.horizontal .venue-content {
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }


    /* 링크 */
    .venue-link {
      margin-top: 24px;
      font-weight: 600;
      text-decoration: none;
      color: #111;
      align-self: flex-start;
    }

    .venue-link:hover {
      text-decoration: underline;
    }

    .contact-section {
      padding-bottom: 140px;
    }


    

    /* 좌우 배치 wrapper */
    .contact-form-wrap {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    /* LEFT */
    .contact-form-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    /* input / textarea */
    .contact-form-left input,
    .contact-form-left textarea {
      padding: 12px;
      font-size: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: inherit;
        width: 100%;
    }

    /* RIGHT */
    .contact-form-right {
      flex: 1;
      text-align: left;
    }

    /* 개인정보 박스 */
    .privacy-box {
      border: 1px solid #ccc;
      padding: 30px;
      font-size: 14px;
      line-height: 1.6;
      color: #444;
    }

    /* 동의 문구 */
    .privacy-agree { font-size: 15px; font-family: 'PaperlogyRegular'; }

    /* 제출 버튼 */
    .submit-btn {
      width: 100%;
      background: #f42328;
      color: #fff;
      border: none;
      padding: 14px;
      font-size: 1.1rem;
      font-family: 'PaperlogyBlack';
      border-radius: 6px;
      cursor: pointer;
      margin-top: 28px;
    }
    






    #searchInput {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      margin-bottom: 20px;
    }

    .category-filter {
      text-align: center;
      margin-bottom: 30px;
    }

    .category-filter button {
      padding: 8px 16px;
      margin: 4px;
      border: 1px solid #ddd;
      background: #fff;
      cursor: pointer;
    }

    .category-filter button.active {
      background: #222;
      color: #fff;
    }

    .logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
    }

    .logo-card {
      background: #fff;
      border: 1px solid #eee;
      text-align: center;
      padding: 20px;
      transition: 0.2s;
    }

    .logo-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }

    .logo-card img {
      max-width: 100%;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .logo-card h3 {
      font-size: 16px;
      margin: 8px 0;
    }

    .logo-card span {
      font-size: 13px;
      color: #888;
    }




    footer {background-color: #181818; color: white; padding: 20px 0; width: 100%; } 

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%; /* footer의 내부 콘텐츠 너비를 100%로 설정 */
    }

    .footer-left, .footer-right { width: 100%; }
    .footer-left { display: flex; flex-direction: column; }
    .footer-left p { font-family: 'PaperlogySemiBold'; margin: 10px 0;}


    /* 버튼 스타일 */
    footer .top-button { 
      font-size: 1.5rem; 
      display: inline-block; 
      padding: 10px 20px;
      background-color: #f42328; /* 버튼 색상 */
      border-radius: 30px;
      font-weight: bold; /* 텍스트 강조를 위해 font-weight 추가 */
      margin: 0 auto; /* 버튼 가운데 배치 */
    }

    .footer-right { display: flex; flex-direction: column; align-items: flex-end; }

    .footer-right button {
      font-family: 'PaperlogySemiBold'; 
      font-size: 14px; 
      color: white; 
      background-color: transparent;
      border: 1px solid white;
      padding: 12px 20px;
      margin: 5px 0;
      cursor: pointer;
      text-align: center;
      width: 220px;
      max-width: 220px; 
    }

    .footer-right button a { color: white; text-decoration: none; display: block; }
    .footer-right button:hover { background-color: white; color: #181818; }
    .footer-right button:hover a { color: #181818; }

    footer a { text-decoration: none; color: white; }

    .btn-baseball {
      display: inline-block;
      font-family: 'PaperlogySemiBold'; font-size: 14px; color: #69C9FF;
      border: 1px solid #69C9FF; padding: 12px 20px; margin: 5px 0;
      text-align: center;
      width: 220px; max-width: 220px;
      background-color: transparent;
      cursor: pointer;
      text-decoration: none;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .btn-baseball:hover { background-color: #69C9FF; color: #ffffff; text-decoration: none; }


    @media (max-width: 768px) {

      nav a img { height: 50px; }
      nav { padding: 4px 10px; }

      .hamburger {
        display: block;
        font-size: 2rem;
        color: white;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 20px;
        z-index: 20;
      }
      nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0,0,0,0.9);
        width: 200px;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease;
      }
      nav ul li { margin: 5px 5px; text-align: left; }
      nav ul li a { display: block; padding: 3px 3px; }

       .zone-nav {
    justify-content: center; /* 좌우 밀어내기 ❌ */
    flex-wrap: wrap;   /* 줄바꿈 허용 */
    gap: 12px 20px;    /* 위아래 / 좌우 간격 */
    text-align: center;
  }

  .zone-nav a {
    white-space: normal; /* 줄바꿈 허용 */
    text-align: center;
    line-height: 1.3;
  }

      .zone-grid { flex-direction: column; gap: 16px; }

      .item { width: 100%; }

      .info { padding: 16px; }
      .title {
        font-size: 18px;
        flex-direction: column;
        align-items: flex-start;
      }
      .desc {
        font-size: 14px;
      }

      .slider-btn {
        font-size: 20px;
        padding: 4px 8px;
      }

      
      body { font-size: 0.9rem; }

      .section-title { font-size: 2rem; }
      .section-description { font-size: 1.2rem; }
      .section-subtext { font-size: 0.85rem; }

      .korean-text {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: keep-all;
        white-space: normal;
      }

      .top-visual-wrapper {
          height: 40vh; /* 세로 높이를 지정해 이미지가 보이도록 */
        }

      .top-visual-wrapper img {
        height: 100%; /* 지정한 높이에 맞추어 이미지 표시 */
        object-fit: cover; /* 이미지 비율 유지하며 채움 */
        display: block;
      }

      .top-visual-textbox {
        padding: 0 10px;
      }

      .top-visual-title {
        font-size: 2rem; /* 모바일용 폰트 축소 */
        line-height: 1.2;
      }

      .top-visual-subtitle {
        font-size: 1rem;
        line-height: 1.4;
      }


      .venue-card.horizontal {
        grid-template-columns: 1fr;
      }

      .venue-content {
        text-align: left;
      }

      .badge-wrap {
        justify-content: left;
      }


  .contact-form-wrap {
    display: flex;
    flex-direction: column; /* ← 좌우 ❌ 위아래 ⭕ */
    gap: 40px;      /* 위아래 간격 */
  }

  .contact-form-left,
  .contact-form-right {
    width: 100%;
  }



      .footer-content { flex-direction: column; text-align: left; }      

      .footer-right button,
      .btn-baseball {
        width: 100%;
        max-width: 280px; 
        padding: 12px 0; 
        font-size: 14px; 
        text-align: center; 
        margin: 5px auto; 
        display: block;
      }

    }