
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
   font-family: 'Poppins', 'Noto Sans KR', sans-serif;
   background-color: #ffffff; 
  color: #000000;

}

/* Header */
.header {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
  color: white;
  overflow: hidden;
  background: #000062;
}
/* ÅØ½ºÆ® */
    .header-content {
      position: relative;
      z-index: 2;
      justify-content: space-between;
      animation: fadeInUp 5s ease-out;
      text-align: center;
  }
    .header-content h1 {
      font-size: 64px;
      text-shadow: 0px 0px 10px #eb9aef;
      letter-spacing: 2px;
    }
    .header-content p {
      font-size: 22px;
      margin-top: 15px;
    }
@keyframes fadeInUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }



.logo img {
  height: 40px;
}

/* Navigation */
.nav ul {
 
  background: #000062;
  display: flex;
  list-style: none;
  justify-content: center;
  flex-direction: row;
  backdrop-filter: blur(8px);
  gap: 24px;
  z-index: 1000;

}

.nav a {
   color: white;
  text-decoration: none;
  font-weight: 500;
}
 nav a:hover { color: #ff5de7; }
/* Language */
.lang select {
  padding: 6px 8px;
  font-size: 14px;
}

/* Section */
.section {
     max-width: 1100px;
      margin: auto;
      padding: 100px 20px;


}
h2 {
      color: #000000;
      font-size: 28px;
      margin-bottom: 20px;
      border-left: 5px solid #000000;
      padding-left: 10px;
    }

/*.section h2 {
      color: #000000;
      font-size: 28px;
      margin-bottom: 20px;
      border-left: 5px solid #000000;
      padding-left: 10px;*/

}

/*.section p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;*/
}

.gray {
  background: #f8f8f8;
}

/*  CARD FROM */
    .card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0 0 20px rgba(0,200,255,0.1);
      backdrop-filter: blur(8px);
      transition: 0.3s;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 25px rgba(0,200,255,0.3);
    }
/* --- °¶·¯¸® --- */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      overflow: visible;
    }
    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      border: 4px solid rgba(46,32,248,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      transform-origin: center center
    }
    .gallery img:hover {
      transform: scale(1.3);
      z-index: 10;
      position: relative;
      border-color: #2e20f8;
      box-shadow: 0 0 20px rgba(46,32,248,0.3);
    }
.image_show{
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 0px;
      padding: 5px;
      margin-bottom: 0px;
      box-shadow: 0 0 0px rgba(0,200,255,0.1);
      backdrop-filter: blur(8px);
      transition: 0.3s;
      height: 47vh;
  
      color: white;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}

.responsive-img{
max-width:100%;
height: auto;
}



/* --- ½Ã¿îÀü ¿µ»ó --- */
    .video {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    .video img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid rgba(0,255,255,0.1);
      transition: 0.3s;
    }
    .video img:hover {
      transform: scale(3);
      border-color: #00e5ff;
      box-shadow: 0 0 20px rgba(0,229,255,0.3);
    }
/* --- ¹®ÀÇÇÏ±â --- */
    #contact {
      text-align: left;
    }
    #contact a {
      color: #00e5ff;
      text-decoration: none;
    }

    footer {
      text-align: center;
      background: #001a33;
      color: #aaa;
      padding: 30px 0;
      font-size: 14px;
      letter-spacing: 1px;
    }


/* Map */
.map img {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #eee;
}

/* Tablet */
@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav ul {
    display: flex;
  }
}
