
/* Pretendard Webfont */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

  /* ±âº» ½ºÅ¸ÀÏ ÃÊ±âÈ­ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		html {
    scroll-behavior: smooth;
    /* Çì´õ ³ôÀÌ¸¸Å­ ½ºÅ©·Ñ À§Ä¡ º¸Á¤ (Çì´õ°¡ ÄÜÅÙÃ÷¸¦ °¡¸®´Â Çö»ó ¹æÁö) */
    scroll-padding-top: 80px; 
}

        body {
            font-family: 'Pretendard', sans-serif;
            background-color: #0a0a1a;
            color: #ffffff;
        }

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

        /* Çì´õ ¹× ³×ºñ°ÔÀÌ¼Ç */
        .header {
    position: fixed; /* 'absolute'¿¡¼­ 'fixed'·Î º¯°æ */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 10;
   background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Çì´õ ¾Æ·¡¿¡ ±×¸²ÀÚ Ãß°¡ (¼±ÅÃ »çÇ×) */
}

/* ½ºÅ©·Ñ ½Ã Çì´õ¿¡ Àû¿ëµÉ »õ·Î¿î ½ºÅ¸ÀÏ */
.header.scrolled {
    background-color: #0a0a1a; /* ¾îµÎ¿î ¹è°æ»ö ÁöÁ¤ */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* ±×¸²ÀÚ È¿°ú */
}

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
           /*  font-size: 24px;
            font-weight: bold;
            color: #fff; */
            /* ·Î°í ÀÌ¹ÌÁö¸¦ »ç¿ëÇÒ °æ¿ì ¾Æ·¡¿Í °°ÀÌ ¼öÁ¤ */
             content: url('../images/kaci-logo.svg'); 
			 height: 30px;
			 
        }

        .nav-menu ul {
            list-style: none;
            display: flex;
        }

        .nav-menu ul li {
            margin-left: 30px;
        }
		
		
.nav-menu ul li.menu-separator {
    margin-left: 140px; /* ±âÁ¸º¸´Ù ´õ Å« °£°ÝÀ» ÁÖ¾î ±×·ìÀ» ³ª´® */
}

        .nav-menu ul li a {
             position: relative; /* ::after ¿ä¼Ò¸¦ À§ÇÑ ±âÁØÁ¡ */
    color: #d0d0d0;
    font-size: 16px;
    transition: color 0.3s;
    padding-bottom: 5px; /* ¹ØÁÙÀ» À§ÇÑ °ø°£ È®º¸ */ font-weight:500;
        }
		
		/* È°¼ºÈ­ ½ºÅ¸ÀÏÀ» À§ÇÑ ¹ØÁÙ ±âº» »óÅÂ (¼û±è) */
.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; /* Æò¼Ò¿£ ³Êºñ 0 */
    height: 3px;
    background-color: #0AFADF;
    border-radius: 2px;
    box-shadow: 0 0 10px #0AFADF, 0 0 5px #0AFADF;
    transition: width 0.3s ease-in-out; /* ³Êºñ º¯°æ¿¡ ¾Ö´Ï¸ÞÀÌ¼Ç È¿°ú */
}

/* 'active' Å¬·¡½º°¡ Ãß°¡µÇ¾úÀ» ¶§ÀÇ È°¼ºÈ­ ½ºÅ¸ÀÏ */
.nav-menu ul li a.active,
.nav-menu ul li a:hover {
    color: #ffffff; /* È°¼ºÈ­ ½Ã ÅØ½ºÆ® »ö»ó ¹à°Ô */
}

.nav-menu ul li a.active::after {
    width: 80%; /* È°¼ºÈ­ ½Ã ³Êºñ¸¦ 80%·Î ´Ã¸² */
}

      /*   .nav-menu ul li a:hover {
            color: #ffffff;
        }
         */
        /* »ó´Ü ¾È³» ¼½¼Ç (Hero) */
        .hero {
            position: relative;
            height: 600px;
            background-image: url('../images/header.png'); /* Á¦°øµÈ ÀÌ¹ÌÁö¿Í À¯»çÇÑ ¹è°æ */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: left;
			padding-top: 80px; 
        }

        .hero-content {
            padding-top: 0px; /* Çì´õ¿ÍÀÇ °£°Ý */
        }
		
		 .hero-content-line {
      background-image: linear-gradient(90deg, rgba(135, 206, 250, 0.5) 5%, transparent 65%);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 2px;
 }

        .hero h1 {
            font-size: 80px;
            font-weight: 700;
            margin-bottom: 10px;
           color: #fff; /* ÅØ½ºÆ®ÀÇ ±âº» Áß½É »öÀº Èò»öÀ¸·Î À¯Áö */
    text-shadow: 
      0 0 5px #08AABF,
        0 0 5px #08AABF,
        0 0 5px #08AABF,
        0 0 5px #08AABF;
        }

        .hero h2 {
            font-size: 28px;
            font-weight: 400;
            margin-bottom: 0px;
            padding-top: 10px;
            color: #e0e0e0;
            text-shadow: 0 0 8px rgba(0,0,0,0.5);
        }

        .event-info {
            list-style: none;
            margin-bottom: 50px; padding-top:20px;
        }

        .event-info li {
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .event-info li::before {
            /* ¾ÆÀÌÄÜÀ» À§ÇÑ °ø°£ */
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            margin-right: 12px;
            background-size: contain;
            background-repeat: no-repeat;
           
        }

        .event-info li.date::before {
    /* fill ¼Ó¼ºÀ» ÇÏ´Ã»ö(#87CEEB)À¸·Î º¯°æ */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2387CEEB"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 0 0 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM5 8V6h14v2H5z"/></svg>');
}

.event-info li.location::before {
    /* fill ¼Ó¼ºÀ» ÇÏ´Ã»ö(#87CEEB)À¸·Î º¯°æ */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2387CEEB"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}


        .register-btn {
            display: inline-block;
            padding: 15px 40px;
            border: none;
            border-radius: 30px;
            background: linear-gradient(90deg, #4a69bd, #6a82fb);
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .register-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(74, 105, 189, 0.3);
        }

        /* ÀÎ»ç¸» ¼½¼Ç */
       .intro {  padding: 80px 0;
    position: relative; /* ÀÚ½Ä ¿ä¼ÒÀÎ ºñµð¿ÀÀÇ absolute À§Ä¡¸¦ À§ÇÑ ±âÁØÁ¡ ¼³Á¤ */
    overflow: hidden; /* ºñµð¿À°¡ ¼½¼ÇÀ» ¹þ¾î³ªÁö ¾Êµµ·Ï ¼û±è */
    /* ÇÊ¿äÇÏ´Ù¸é ÃÖ¼Ò ³ôÀÌ(min-height)¸¦ ¼³Á¤ÇÏ¿© ³»¿ëÀÌ Àû´õ¶óµµ ºñµð¿À°¡ º¸ÀÌ°Ô ÇÒ ¼ö ÀÖ½À´Ï´Ù. */
    /* min-height: 100vh; */ /* ºäÆ÷Æ® ³ôÀÌ¸¸Å­ ¼³Á¤ ¿¹½Ã */
    display: flex; /* ÀÚ½Ä ¿ä¼Ò¸¦ Áß¾Ó¿¡ ¹èÄ¡ÇÏ°Å³ª Á¤·ÄÇÏ±â À§ÇØ */
    align-items: center; /* ¼öÁ÷ Áß¾Ó Á¤·Ä (³»¿ë°ú ºñµð¿À ¸ðµÎ ÇØ´ç) */
    justify-content: center; /* ¼öÆò Áß¾Ó Á¤·Ä */
}

#background-video {
    position: absolute; /* .intro ¼½¼Ç ³»¿¡¼­ ÀÚÀ¯·Ó°Ô À§Ä¡ */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ¼½¼ÇÀ» ²Ë Ã¤¿ì¸é¼­ ºñµð¿À ºñÀ² À¯Áö (Å©·ÓµÉ ¼ö ÀÖÀ½) */
    z-index: -1; /* ³»¿ëÀ» ºñµð¿À À§·Î ¿Ã¸®±â À§ÇØ °¡Àå ³·Àº z-index ¼³Á¤ */
    filter: brightness(1); /* ºñµð¿À¸¦ ¾îµÓ°Ô ÇÏ¿© ±× À§¿¡ ÅØ½ºÆ®°¡ Àß º¸ÀÌµµ·Ï (¼±ÅÃ »çÇ×) */
}

/* ºñµð¿À À§¿¡ ³»¿ëÀÌ º¸ÀÌµµ·Ï z-index Á¶Á¤ */
.intro .container,
.intro .intro-content,
.intro .countdown-container { /* PHP include·Î µé¾î¿À´Â D-Day À§Á¬µµ Æ÷ÇÔ */
    position: relative; /* z-index¸¦ Àû¿ëÇÏ·Á¸é positionÀÌ staticÀÌ ¾Æ´Ï¾î¾ß ÇÕ´Ï´Ù. */
    z-index: 1; /* ºñµð¿À(z-index: -1) À§¿¡ Ç¥½ÃµÇµµ·Ï */
    color: white; /* ÅØ½ºÆ® »ö»óÀ» Èò»öÀ¸·Î ¼³Á¤ÇÏ¿© ¾îµÎ¿î ¹è°æ À§¿¡¼­ Àß º¸ÀÌ°Ô (ÇÊ¿ä½Ã) */
    text-align: center; /* ³»¿ë Áß¾Ó Á¤·Ä (ÇÊ¿ä½Ã) */
}

/* ÅØ½ºÆ®°¡ ¾îµÎ¿î ºñµð¿À ¹è°æ À§¿¡¼­ Àß º¸ÀÌµµ·Ï ±×¸²ÀÚ Ãß°¡ (¼±ÅÃ »çÇ×) */
.intro .intro-content h3,
.intro .intro-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
        
        .intro-content {
         
            margin: 0 auto;
        }

        .intro h3 {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .intro p {
            font-size: 17px; 
            line-height: 1.8;
            color: #fff;
            margin-bottom: 25px;
            text-align: center;
        }
		
		
		
		/* ================== Agenda Section ================== */
.agenda-section {
    padding: 100px 0;
    background-color: #ffffff;
    color: #333;
}

.agenda-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
  
    color: #00035a;
}

.agenda-table {
    width: 100%;
}

/* Agenda Header (½Ã°£, ÁÖ¿ä³»¿ë, ºñ°í) */
.agenda-header {
    display: flex; text-align:center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 15px;
    text-transform: uppercase;
	    border-top: 2px #101010 solid;
    border-bottom: 1px #101010 solid;
	 background-image: url('../images/agenta_bak.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
}

/* Agenda Row (ÇÑ ÁÙ ÀüÃ¼) */
.agenda-row {
    display: flex; text-align:center;
    align-items: center;
    padding: 25px 15px;
    border-bottom: 1px solid #eee;
}

/* Columns (½Ã°£, ÁÖ¿ä³»¿ë, ºñ°í °¢°¢) */
.agenda-row .time,
.agenda-header .time {
    flex-basis: 20%; /* ½Ã°£ ÄÃ·³ ³Êºñ */
    font-weight: 600;
}

.agenda-row .session,
.agenda-header .session {
    flex-basis: 60%; /* ÁÖ¿ä³»¿ë ÄÃ·³ ³Êºñ */
}

.agenda-row .speaker,
.agenda-header .speaker {
    flex-basis: 20%; /* ºñ°í ÄÃ·³ ³Êºñ */
}

/* Speaker Column (ÀÌ¸§, ¼Ò¼Ó) */
.agenda-row .speaker strong {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.agenda-row .speaker span {
    color: #777;
    font-size: 14px;
}

/* Separators (¿ÀÇÁ´×, Å¬·ÎÂ¡ µî) */
.agenda-separator {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
     background: linear-gradient(to right, 
    rgba(255, 255, 255, 1) 0%,     /* ¿ÞÂÊ Èò»ö */
    rgba(224, 242, 255, 1) 20%,   /* ¿¬ÇÑ ÆÄ¶û (¼±¸íÇÑ ¿µ¿ª ½ÃÀÛ) */
    rgba(224, 242, 255, 1) 80%,   /* ¼±¸íÇÑ ¿µ¿ª À¯Áö */
    rgba(255, 255, 255, 1) 100%   /* ¿À¸¥ÂÊ Èò»ö */
  );
  text-align: center;
    color: #333;
   
}

.agenda-separator-2 {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
     background: linear-gradient(to right, 
    rgba(255, 255, 255, 1) 0%,     /* ¿ÞÂÊ Èò»ö */
    rgba(224, 242, 255, 1) 20%,   /* ¿¬ÇÑ ÆÄ¶û (¼±¸íÇÑ ¿µ¿ª ½ÃÀÛ) */
    rgba(224, 242, 255, 1) 80%,   /* ¼±¸íÇÑ ¿µ¿ª À¯Áö */
    rgba(255, 255, 255, 1) 100%   /* ¿À¸¥ÂÊ Èò»ö */
  );
  text-align: center;
    color: #333;
   
}

.agenda-break {
   background: linear-gradient(to right, 
    rgba(255, 255, 255, 1) 0%,     /* ¿ÞÂÊ Èò»ö */
    rgba(232, 236, 245, 1) 20%,   /* ¿¬ÇÑ ÆÄ¶û (¼±¸íÇÑ ¿µ¿ª ½ÃÀÛ) */
    rgba(232, 236, 245, 1) 80%,   /* ¼±¸íÇÑ ¿µ¿ª À¯Áö */
    rgba(255, 255, 255, 1) 100%   /* ¿À¸¥ÂÊ Èò»ö */
  );
 padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}



/* --- Speakers Section (¼öÁ¤µÈ ¹öÀü) --- */
.speakers-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.speakers-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: left; color:#00035a;
}

.speaker-content {
    position: relative; /* ÀÚ½Ä ¿ä¼Ò(È­»ìÇ¥)¸¦ absolute·Î À§Ä¡½ÃÅ°±â À§ÇÑ ±âÁØÁ¡ */
    margin-bottom: 0px;  height: 480px;
}

.speaker-profile {
    display: none;
    flex-direction: row;
    align-items: end;
    text-align: left;
    gap: 40px;
}

.speaker-profile.active {
    display: flex; height: -webkit-fill-available;
}

.speaker-info {
    width:80%
}

.speaker-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px; color:#7d7d7d;
}

.speaker-info .speaker-title {
    font-size: 20px;
    font-weight: 500;
    color: #3371dc;
    margin-left: 10px;
}

.speaker-info .speaker-company {
    font-size: 16px;     background: #f1f3f6;
    color: #777;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
}

.speaker-info .info-block {
    margin-bottom: 25px; border-bottom: 1px solid #ededed;
    padding-bottom: 10px;
}

.speaker-info .info-block h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #3a86c9;
}

.speaker-info .info-block p,
.speaker-info .info-block ul li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}
.speaker-info .info-block ul {
    list-style-position: inside;
    padding-left: 0;
}
.speaker-info .info-block ul li {
    margin-bottom: 0px;
}

.speaker-photo {
    width: 90%; bottom: -3px;
    position: absolute;
    /* right: 20px; */
    text-align: right;
}

.speaker-photo img {
        width: 350px;
    border-radius: 10px;
}

.info-grid {
    display: flex;          /* Flexbox ·¹ÀÌ¾Æ¿ô Àû¿ë */
   
    gap: 20px;              /* ¸ñ·Ï »çÀÌÀÇ °£°Ý */
}



/* Ã¹ ¹øÂ° ul (¿ÞÂÊ ¸ñ·Ï) */
.info-grid ul:nth-child(1) {
    width:40%;
}

/* µÎ ¹øÂ° ul (¿À¸¥ÂÊ ¸ñ·Ï) */
.info-grid ul:nth-child(2) {
    width:60%;
}

/* --- ¡å¡å¡å È­»ìÇ¥ ½ºÅ¸ÀÏ ¼öÁ¤µÈ ºÎºÐ ¡å¡å¡å --- */
.speaker-nav {
    /* ÀÌ ÄÁÅ×ÀÌ³Ê´Â ¹öÆ°À» ¹­¾îÁÖ´Â ¿ªÇÒ¸¸ ÇÕ´Ï´Ù. */
}

.speaker-nav button {
    position: absolute; /* .speaker-content¸¦ ±âÁØÀ¸·Î À§Ä¡ */
    top: 50%;
    transform: translateY(-50%); /* ¼öÁ÷ Áß¾Ó Á¤·Ä */
    z-index: 10; /* ´Ù¸¥ ¿ä¼Òµé À§¿¡ º¸ÀÌµµ·Ï ¼³Á¤ */
    
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.speaker-nav button:hover {
    background-color: #fff;
    border-color: #999;
}

.prev-btn {
    left: -60px; /* ¿ÞÂÊ ¹Ù±ùÀ¸·Î 20px ÀÌµ¿ */
}

.next-btn {
    right: -60px; /* ¿À¸¥ÂÊ ¹Ù±ùÀ¸·Î 20px ÀÌµ¿ */
}
/* --- ¡ã¡ã¡ã È­»ìÇ¥ ½ºÅ¸ÀÏ ¼öÁ¤ ¿Ï·á ¡ã¡ã¡ã --- */


.speaker-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0px;
    padding-top: 30px;
    border-top: 2px solid #007bff;
}

.speaker-thumb {
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s;
    opacity: 0.6;
}

.speaker-thumb:hover,
.speaker-thumb.active {
    transform: scale(1.1);
    opacity: 1;
}

.speaker-thumb img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.speaker-thumb p {
    font-weight: 500;
    margin: 0;     color: #666; padding-bottom:10px;
}

.speaker-thumb span {
    font-size: 14px;
    color: #3371dc;;
}

/* ================== ¹ÝÀÀÇü (¸ð¹ÙÀÏ) ½ºÅ¸ÀÏ ================== */

/* ÇÜ¹ö°Å ¸Þ´º ¹öÆ° ±âº» ½ºÅ¸ÀÏ (Æò¼Ò¿£ ¼û±è) */
.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001; /* ¸Þ´ºº¸´Ù À§¿¡ ¿Àµµ·Ï */
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}






/* È­¸é ³Êºñ°¡ 768px ÀÌÇÏÀÏ ¶§ Àû¿ëµÉ ½ºÅ¸ÀÏ */
@media (max-width: 768px) {

  .hero {
        /* ¹ÝÅõ¸í °ËÀº»ö ÇÊÅÍ(gradient)¸¦ ±âÁ¸ ¹è°æ ÀÌ¹ÌÁö À§¿¡ °ãÄ¨´Ï´Ù. */
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
            url(../images/header.png); height: auto;
    }
	
	
	.hero-content {
        
        width: 100%;
    }

    /* ¸ÞÀÎ Å¸ÀÌÆ²(h1) ÆùÆ® Å©±â¸¦ ÁÙÀÔ´Ï´Ù. */
    .hero h1 {
        font-size: 50px; /* 80px -> 50px */
		        line-height: 1.2; padding-top: 20px;
    }

    /* ¼­ºê Å¸ÀÌÆ²(h2) ÆùÆ® Å©±â¸¦ ÁÙÀÔ´Ï´Ù. */
    .hero h2 {
        font-size: 22px; /* 28px -> 22px */
		        line-height: 1.2;
    }
    
    /* ³¯Â¥, Àå¼Ò Á¤º¸µµ ÇÔ²² Áß¾Ó Á¤·Ä */
    .event-info {
     
    }
	
	
    /* ±âÁ¸ ¸Þ´º ¼û±â±â */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* È­¸é ¿À¸¥ÂÊ ¹Û¿¡ ¼û°ÜµÒ */
        width: 80%;
        height: 100vh;
        background-color: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(5px);
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }
    
    /* ¸Þ´º°¡ ¿­·ÈÀ» ¶§ÀÇ ½ºÅ¸ÀÏ (.is-open Å¬·¡½º Ãß°¡ ½Ã) */
    .nav-menu.is-open {
        right: 0; /* ¿À¸¥ÂÊ¿¡¼­ ½½¶óÀÌµå ÀÎ */
    }
    
    /* ÇÜ¹ö°Å ¹öÆ° º¸ÀÌ±â */
    .hamburger-menu {
        display: block;
    }

    /* ¸Þ´º Ç×¸ñµéÀ» ¼¼·Î·Î Á¤·Ä */
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
    }
    
    .nav-menu ul li {
        margin: 20px 0;
    }

    .nav-menu ul li a {
        font-size: 20px;
    }
    
    /* ±×·ì ºÐ¸®¿ë ¿©¹é Á¶Á¤ */
    .nav-menu ul li.menu-separator {
        margin-left: 0;
        margin-top: 40px;
    }
    
    /* ÇÜ¹ö°Å ¹öÆ°ÀÌ 'X' ¸ð¾çÀ¸·Î ¹Ù²î´Â ¾Ö´Ï¸ÞÀÌ¼Ç */
    .hamburger-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

