
    :root {
      --primary: #1a1a2e;
      --secondary: #f9f9f9;
      --accent: #e94560;
      --text: #2e2e2e;
      --max-width: 1200px;
    }
    * {box-sizing:border-box;margin:0;padding:0;}
    body {font-family:'Segoe UI', Arial, sans-serif;color:var(--text);line-height:1.6;background:#fff;}
    header {background:var(--primary);color:#fff;position:sticky;top:0;z-index:999;box-shadow:0 2px 5px rgba(0,0,0,0.15);}
    .container {max-width:var(--max-width);margin:auto;padding:0 1rem;}
    nav {display:flex;justify-content:space-between;align-items:center;padding:1rem 0;position:relative;}
    nav .logo {font-size:1.5rem;font-weight:bold;letter-spacing:1px;}
    nav ul {display:flex;list-style:none; align-items: center;}
    nav ul li {margin-left:1rem;}
    nav ul li a {color:#fff;text-decoration:none;transition:color 0.3s;}
    nav ul li a:hover {color:var(--accent);}
    .nav-toggle {display:none;cursor:pointer;font-size:1.5rem;}
    #toggle {display:none;}



    /* 모바일 메뉴 전체화면 - 우측에서 좌측으로 */
    @media(max-width:768px){
      nav ul {
        position:fixed;
        top:0;
        right:0;
        width:100%;
        height:100%;
        background:var(--primary);
        flex-direction:column;
        justify-content:center;
        align-items:center;
        transform:translateX(100%);
        transition:transform 0.4s ease;
        z-index:998;
      }
      nav ul li {margin:1.5rem 0;text-align:center;}
      label.nav-toggle {display:block;z-index:999;color:#fff;}
      #toggle:checked ~ ul {transform:translateX(0);}
    }




    @media(min-width:768px){

    /* 플로팅 버튼 그룹 */
    .action-floating {
      position:fixed;
      right:20px;
      bottom:140px;
      display:flex;
      flex-direction:column;
      gap:14px;
      z-index:10;
    }

      .action-floating a {
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        width:100px;
        height:100px;
        font-size:18px;
        font-weight:700;
        border-radius:50%;
        color:#fff;
        text-decoration:none;
        text-align:center;
        line-height:1.2;
        color:#fff;
        box-shadow:0 4px 8px rgba(0,0,0,0.15);
        transition:transform 0.3s;
        animation: pulse-sequence 10s infinite;
        background:var(--accent);
        /* animation:pulse 2s infinite; */
        /* transition:transform 0.3s; */
      }

      .action-floating i {
        font-size:30px;
        /* margin-bottom:4px; */
        padding: 3px;
      }
    }

    @media(max-width:768px){

          /* 플로팅 버튼 그룹 */
      .action-floating {
        position:fixed;
        right:10px;
        bottom:95px;
        display:flex;
        flex-direction:column;
        gap:14px;
        z-index:999;
      }

      .action-floating a {
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        width:60px;
        height:60px;
        font-size:12px;
        font-weight:500;
        border-radius:50%;
        color:#fff;
        text-decoration:none;
        text-align:center;
        line-height:1.2;
        color:#fff;
        box-shadow:0 4px 8px rgba(0,0,0,0.15);
        transition:transform 0.3s;
        animation: pulse-sequence 10s infinite;
        background:var(--accent);
        /* animation:pulse 2s infinite; */
        /* transition:transform 0.3s; */
      }

      .action-floating i {
        font-size:16px;
        margin-bottom:4px;
      }
    }

    .action-floating a:hover {transform:scale(1.1);}

    /* @keyframes pulse {
      0% {box-shadow:0 0 0 0 rgba(233,69,96,0.6);}
      70% {box-shadow:0 0 0 12px rgba(233,69,96,0);}
      100% {box-shadow:0 0 0 0 rgba(233,69,96,0);}
    } */

/* 기본 pulse 애니메이션 */
/* @keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(233,69,96,0.6); transform: scale(1); }
  30% { box-shadow: 0 0 0 12px rgba(233,69,96,0); transform: scale(1.1); }
  60% { box-shadow: 0 0 0 0 rgba(233,69,96,0); transform: scale(1); }
  100% { box-shadow: 0 0 0 0 rgba(233,69,96,0); transform: scale(1); }
} */

/* 플로팅 버튼 기본 */
/* .action-floating a {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  width:70px;
  height:70px;
  border-radius:50%;
  font-size:12px;
  font-weight:500;
  text-align:center;
  line-height:1.2;
  color:#fff;
  box-shadow:0 4px 8px rgba(0,0,0,0.15);
  transition:transform 0.3s;
  animation: pulse 2s infinite;
} */


  @keyframes pulse-sequence {
      0%, 100% { transform: scale(1); box-shadow: none; }
      10% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(0,0,0,0); }
      20% { transform: scale(1); box-shadow: none; }

      0% {box-shadow:0 0 0 0 rgba(233,69,96,0.6);}
      70% {box-shadow:0 0 0 2px rgba(233,69,96,0);}
      100% {box-shadow:0 0 0 0 rgba(233,69,96,0);}

  }


  /* 각 버튼 순서대로 딜레이 배분 */
  .action-floating a:nth-child(1) { animation-delay: 0s; }
  .action-floating a:nth-child(2) { animation-delay: 2s; }
  .action-floating a:nth-child(3) { animation-delay: 4s; }
  /* .action-floating a:nth-child(4) { animation-delay: 6s; } */
  /* .action-floating a:nth-child(5) { animation-delay: 8s; } */



  /* 순차적 애니메이션 지연 */
  .action-floating a:nth-child(1) { animation-delay: 0s; }
  .action-floating a:nth-child(2) { animation-delay: 2s; }
  .action-floating a:nth-child(3) { animation-delay: 4s; }
  /* .action-floating a:nth-child(4) { animation-delay: 6s; } */
  /* .action-floating a:nth-child(5) { animation-delay: 8s; } */


    /* 색상별 버튼 */
    .action-floating a.call {background:#e94560;color:#fff;}
    .action-floating a.chat {background:#6c63ff;color:#fff;}
    .action-floating a.kakao {background:#FEE500;color:#000;}
    .action-floating a.customer {background:#28a745;color:#fff;}
    .action-floating a.map {background:#007bff;color:#fff;}

    /* Hero Section */
    /* .hero {background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('https://picsum.photos/1200/600') center/cover;color:#fff;text-align:center;padding:6rem 1rem;} */
    .hero {background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url('/asset/images/front1.webp') center/cover;color:#fff;text-align:center;padding:6rem 1rem;}
    .hero h1 {font-size:3rem;margin-bottom:1rem;font-weight:700;}
    .hero p {margin-bottom:2rem;font-size:1.2rem;}
    .hero .btn {background:var(--accent);color:#fff;padding:0.9rem 2rem;border-radius:50px;text-decoration:none;transition:background 0.3s;}
    .hero .btn:hover {background:#d63447;}

    /* Features */
    .features {padding:4rem 1rem;background:var(--secondary); margin: auto;}
    .features h2 {text-align:center;margin-bottom:2.5rem;font-size:2rem;color:var(--primary);}
    .feature-grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:2rem;}
    .feature-item {background:#fff;padding:2rem;border-radius:15px;text-align:center;box-shadow:0 4px 10px rgba(0,0,0,0.08);transition:transform 0.3s;}
    .feature-item:hover {transform:translateY(-5px);}
    .feature-item i {color:var(--accent);margin-bottom:1rem;}

    /* Gallery */
    .gallery {padding:4rem 20rem;}
    .gallery h2 {text-align:center;margin-bottom:2.5rem;font-size:2rem;color:var(--primary);}
    .gallery-grid {display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:1rem;}
    .gallery-grid img {width:100%;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,0.1);transition:transform 0.3s;}
    .gallery-grid img:hover {transform:scale(1.05);}

    /* Contact */
    .contact {background:var(--secondary);padding:4rem 1rem;}
    .contact h2 {text-align:center;font-size:1.2rem;color:var(--primary);}
    form {max-width:600px;margin:auto;display:flex;flex-direction:column;gap:1rem;}
    input, textarea {padding:0.9rem;border:1px solid #ccc;border-radius:10px;font-size:1rem;}
    button {background:var(--accent);color:#fff;padding:0.9rem;border:none;border-radius:50px;cursor:pointer;transition:background 0.3s;font-size:1rem;}
    button:hover {background:#d63447;}

    footer {background:#111;color:#fff;text-align:center;padding:1.5rem;font-size:0.9rem;}
  
  



  header .container {
    background-color: #ffffff00 !important;
    border-bottom: 4px solid #ff0000c7;
  }

  #termsContent p {
    text-align: center;
  }




    /* 타이핑 커서 */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;  /* 공백 보존 */
  /*border-right: 2px solid #fff; */
  display: inline-block;
  overflow: hidden;
}

/* 글자 하이라이트 */
@keyframes highlight {
  0%, 100% { color: #fff; }
  50% { color: #e94560; transform: scale(1.2); }
}


  body {
    background: var(--secondary);
  }
  .features {
    max-width: 1000px;

    padding-top: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }



    .grid-container {
    justify-content: center;
  }

  .grid-container img {
    width: 100%;
    max-width: inherit;
  }




    .grid-container {
  display: grid; /* 그리드 컨테이너 설정 */
  gap: 20px; /* 아이템 간 간격 */
  padding: 20px;

    /* grid-template-rows: 100px; */
  /* grid-template-columns: 1fr; */
 /* grid-template-columns: repeat(2, 1fr); */
}


/* 모바일 (작은 화면) 뷰포트 설정 */
@media (max-width: 600px) { /* 600px 이하의 화면에서 적용 */
  .grid-container {
    /* 모바일에서는 1개의 열로 설정 */
    /* grid-template-columns: 1fr;  */
    max-width: 100%;
    
  }
  .grid-container img {
    margin: auto;
    max-width: 100%;
  }
}

/* 데스크톱 (큰 화면) 뷰포트 설정 */
@media (min-width: 601px) { /* 601px 이상의 화면에서 적용 */
  .grid-container {
    /* grid-template-columns: repeat(2, 1fr);  */
    /* pc는 1개의 열로 설정 */
    /* grid-template-columns: 1fr;  */
    /* 큰 화면에서는 2개의 열로 설정 */
    /* 또는 grid-template-columns: 1fr 1fr; */

      grid-template-columns: repeat(1, 1fr); /* 2열 */
      max-width: 1200px; /* 좌우 여백을 위한 최대폭 */
      margin: 0 auto;    /* 중앙 정렬 */
      padding: 0 24px;   /* 좌우 여백 */

      max-width: 1000px;
    /* max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: auto; */

  }

  .grid-container img {
    margin: auto;
    max-width: inherit;
  }
}

.grid-item {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 20px;
  text-align: center;
}



  form {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding-top: 20px;

  }
  form .form {
    width: 100%;
    
  }


  @media(min-width:768px){
    form {
      padding-left: 100px;
      padding-right: 100px;
    }
  }

  @media(max-width:768px){
    form {
      padding-left: 10px;
      padding-right: 10px;
      /* background-color: #007bff; */
    }
    form .form {
      width: 100%;
    }
  }




    .agree {
    /* background-color: #28a745; */
    padding: 10px;

  }
  .agree label {
    display: flex;
    align-content: center;
    align-items: center;
    text-align: center;

  }

  .checkbox {
    width: 20px;
    height: 20px;
  }
  


    /* [자세히] 링크 스타일 */
.agre-link {
  color: #007BFF;
  cursor: pointer;
  font-weight: bold;
}
.agre-link:hover {
  text-decoration: underline;
}

/* 팝업 배경 */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  display: none; /* 기본은 숨김 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* 팝업 박스 */
.popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation: popupFadeIn 0.3s ease;
  position: relative;
}

/* 닫기 버튼 */
.popup-close {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 45px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}
.popup-close:hover {
  color: #e94560;
}

/* 팝업 타이틀 */
.popup-title {
  text-align: center;
  margin-bottom: 0rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

/* 텍스트 */
.terms-text p:first-child {
    margin-top: 30px;
}
.terms-text p {
  margin: 0.5rem 0;

  color: #444;
  line-height: 1.5;
}

/* 팝업 등장 애니메이션 */
@keyframes popupFadeIn {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}


#ident {
  margin-top: 30px;
}

#agreePopu .strView {
  font-size: 14px; 
  color: #555;
}

footer {
  margin-top: 20px;
}


#contact .form-fild {
  width: 100%;
}

#contact .form-fild:nth-child(2) {
  margin-top: 20px;
}

#contact div input {
  margin-top: 10px;
}

.submitBtnLayer {
  margin-top: 10px;
  text-align: center;
}

#thankYouMessage {
  display: none;
  text-align: center;
}


.naviSelection {
    border: solid 3px #fff;
    padding: 10px;
}



@media(min-width:768px){
  .image-container {
      display: flex;
      margin-top: 20px;

  }
  .image-container img {
      width: 70%;
      margin: auto;
  }
}

@media(max-width:768px){
  .image-container {
      display: flex;
      margin-top: 20px;

  }
  .image-container img {
      width: 100%;
  }
}


.divBanner {
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.divCoupon {
  text-align: center;
  margin-top: 20px;
}

@media(min-width:768px){
  .banners {
    width: 1080px;
    height: 254px;
    margin: auto;
    text-align: center;
    margin-top: 20px;
  }

  .banners img {
    width: 100%;
  }

  .key {
    width: 800px !important;
  }

  .landing2 {
    width: 800px !important;
  }

  .coupon {
    width: 600px !important;
  }

  
}

@media(max-width:768px){
  .banners {
    text-align: center;
    margin-top: 20px;
  }

  .banners img {
    width: 100%;
  }


  .divBanner img {
    width: 100%;
  }

  .divCoupon img {
    width: 100%;
  }
}




@media(min-width:1500px){
  .hero {
    min-height: 500px;
  }
}

@media(min-width:1700px){
  .hero {
    min-height: 600px;
  }
}

@media(min-width:1900px){
  .hero {
    min-height: 700px;
  }
}