@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    font-family: 'Pretendard', sans-serif;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.text-center {
    text-align: center;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 1000;
    color: #ffffff;
    opacity: 0;
    line-height: 1;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, color 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header.scrolled {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.nav {
    display: flex;
    gap: 40px;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav a:hover {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.register-header {
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

/* 1. Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  color: #ffffff;
  font-family: "Faktum", Arial, sans-serif;
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
  transition: clip-path 1100ms cubic-bezier(0.76, 0, 0.24, 1), visibility 1100ms step-end;
}

.loader::before {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  content: "";
  background: #000000;
}

.loader.is-hidden {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  pointer-events: none;
}

.loader__track {
  grid-area: 1 / 1;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: marquee-x 96s linear infinite;
}

.loader__line {
  display: flex;
  align-items: center;
  gap: clamp(8px, 4.2vw, 50px);
  padding-right: clamp(36px, 6vw, 96px);
  font-size: clamp(66px, 15vw, 240px);
  line-height: 0.95;
  white-space: nowrap;
}

.loader__gear {
  display: block;
  width: 100%;
  height: 100%;
  animation: gear-spin 3.6s linear infinite;
}

.loader__gear-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.748em;
  height: 0.748em;
  flex: 0 0 auto;
  line-height: 1;
  vertical-align: -0.03em;
}

.loader__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  z-index: 1;
  height: 36px;
}

.loader__progress-line {
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms linear;
  will-change: transform;
}

.loader__year {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms linear;
  will-change: transform;
}

@keyframes marquee-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes gear-spin {
  to {
    transform: rotate(360deg);
  }
}

/* 3. Main Wrapper */
.main-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Added to keep animation contained, but wait, overflow: hidden on main-wrapper might prevent scrolling on the page! */
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    z-index: 1;
}

.hero-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    aspect-ratio: 1987 / 1109;
    margin: auto;
    --welcome-bottom: 38%;
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.welcome-wrapper {
    position: absolute;
    top: 9%; 
    left: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 10;
}

.welcome-text {
    width: 100%;
    height: auto;
    display: block;
}

.people-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    overflow: hidden;
    opacity: 0; 
}

.people-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Center Content */
.center-content {
    position: absolute;
    top: var(--welcome-bottom);
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
    text-align: center;
    pointer-events: none;
}

.slogan {
    font-size: clamp(16px, 2.5vw, 40px);
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.date {
    font-size: clamp(12px, 1.5vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    margin: 20px 0;
}

.location {
    font-size: clamp(12px, 1.5vw, 24px);
    font-weight: 700;
    line-height: 1.2;
}

/* Base Sections */
.section {
    position: relative;
    z-index: 2; /* Intro and others slide over sticky Hero */
    width: 100%;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #F9F0C7;
}

/* Intro Section */
.intro {
    background-color: #F9F0C7;
    color: #000000;
    text-align: center;
}
.main-word {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
}

.scripture {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 80px;
    word-break: keep-all;
}

.scripture1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.8;
    word-break: keep-all;
}
.scripture span {
    display: block;
    font-size: 20px;
    margin-top: 10px;
    color: #555;
}

.scripture1 span {
    display: block;
    font-size: 20px;
    margin-top: 10px;
    color: #555;
}

/* About Section */
.about {
    background-color: #000000;
    color: #ffffff;
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    color: #dddddd;
    word-break: keep-all;
}
.about-content strong {
    color: #ffffff;
    font-weight: 400;
}
.about-content .quote {
    font-size: 26px;
    font-weight: 700;
    color: #F9F0C7;
    margin: 40px 0;
    text-align: center;
}
.about-content .ref {
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

/* Schedule Section */
.schedule {
    background-color: #FF4B15;
    color: #000000;
}
.schedule .section-title {
    color: #000000;
}
.schedule-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #000;
}
.sched-row {
    display: flex;
    border-bottom: 1px solid #000;
    padding: 30px 0;
    align-items: flex-start;
}
.sched-title {
    flex: 0 0 250px;
    font-size: 18px;
    font-weight: 700;
}
.sched-desc {
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    word-break: keep-all;
}
.sub-desc {
    font-size: 12px;
    word-break:keep-all;
}

/* Cast Section */
.cast {
    background-color: #000000;
    color: #ffffff;
}
.cast-wrap {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cast-box {
    background: #111111;
    border: 1px solid #333;
    padding: 40px;
    border-radius: 10px;
    flex: 1;
    min-width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.cast-day-label {
    font-size: 34px;
    font-weight: 900;
    color: #FF4B15;
    margin-bottom: 10px;
}
.cast-date {
    font-size: 20px;
    font-weight: 800;
    color: #F9F0C7;
    margin-bottom: 40px;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
}
.cast-date sup {
    font-size: 13px;
    vertical-align: super;
}
.cast-list {
    list-style: none;
    flex-grow: 1;
}
.cast-list li {
    display: flex;
    margin-bottom: 24px;
    font-size: 18px;
    align-items: flex-start;
}
.cast-list .role {
    font-weight: 700;
    color: #F9F0C7;
    width: 140px;
    flex-shrink: 0;
}
.cast-list .name {
    color: #ccc;
    line-height: 1.5;
}
.songlist-btn {
    width: 100%;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    border: none;
    padding: 20px 0;
    border-radius: 10px;
    margin-top: 40px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family:pretendard;
}
.songlist-btn:hover {
    opacity: 0.8;
}

body.songlist-modal-open {
    overflow: hidden;
}

.awc-songlist-modal[hidden] {
    display: none;
}

.awc-songlist-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: block;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0 15px;
    color: #000;
    outline: 0;
}

.awc-songlist-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.awc-songlist-modal .modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    margin: 1.75rem auto;
    pointer-events: none;
}

.awc-songlist-modal .modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.awc-songlist-modal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: calc(100vh - 3.5rem);
    pointer-events: auto;
    background-clip: padding-box;
    border-radius: 0.3rem;
    outline: 0;
}

.awc-songlist-modal .song-list-wrap {
    position: relative;
    overflow: hidden;
    color: #000;
    border: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.awc-songlist-modal .song-list-wrap--day1 {
    background-image: url("assets/day1.jpg");
}

.awc-songlist-modal .song-list-wrap--day2 {
    background-image: url("assets/day2.jpg");
}

.awc-songlist-modal .song-list-wrap .modal-body {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    padding: 2rem;
}

.awc-songlist-modal .song-list-wrap .modal-body .close {
    float: right;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: none;
    color: #000;
    opacity: 1;
    line-height: 0.3;
    cursor: pointer;
    appearance: none;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-tit {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #000;
    display: flex;
    align-items: center;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-tit span img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
}

.awc-songlist-modal .song-list-wrap .modal-body h6 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-left: 15px;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-scroll {
    position: relative;
    max-height: 56vh;
    max-height: min(56vh, 560px, calc(100vh - 220px));
    min-height: 0;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul {
    list-style: none;
    max-height: inherit;
    overflow-y: auto;
    padding-right: 18px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
    -webkit-appearance: none;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-button:single-button,
.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-button:double-button,
.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-button:vertical:start:decrement,
.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-button:vertical:end:increment {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 999px;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-scrollbar {
    position: absolute;
    top: 0;
    right: 2px;
    bottom: 0;
    width: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-scrollbar[hidden] {
    display: none;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-scrollbar__thumb {
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    min-height: 28px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    transform: translateY(var(--songlist-thumb-y, 0px));
    cursor: grab;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-scrollbar__thumb.is-dragging {
    cursor: grabbing;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li {
    font-size: 16px;
    line-height: 2;
    position: relative;
    padding-left: 15px;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li span {
    font-size: 12px;
    opacity: 0.6;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li em {
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "\3002";
    color: #000;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul .song-list-entry--new::before {
    top: 6px;
}

.awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li button {
    position: absolute;
    top: 2px;
    margin-left: 5px;
    font-size: 9px;
    line-height: 1;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #333;
    text-transform: capitalize;
    color: #000;
    cursor: pointer;
    font-family: 'Pretendard', sans-serif;
}

#songlist-001 .song-list-ul--day1 li.song-list-section,
#songlist-002 .song-list-ul--day2 li.song-list-section {
    margin: 14px 0 10px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

#songlist-001 .song-list-ul--day1 li.song-list-section:first-child,
#songlist-002 .song-list-ul--day2 li.song-list-section:first-child {
    margin-top: 0;
}

#songlist-001 .song-list-ul--day1 li.song-list-section::before,
#songlist-002 .song-list-ul--day2 li.song-list-section::before {
    content: none;
}

#songlist-001 .song-list-ul--day1 li.song-list-entry,
#songlist-002 .song-list-ul--day2 li.song-list-entry {
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 1.45;
    word-break: keep-all;
}

#songlist-001 .song-list-ul--day1 li.song-list-entry span,
#songlist-002 .song-list-ul--day2 li.song-list-entry span {
    display: block;
    margin-top: 2px;
    line-height: 1.45;
}

#songlist-001 .song-list-ul--day1 li.song-list-entry em,
#songlist-002 .song-list-ul--day2 li.song-list-entry em {
    margin-left: 4px;
}

#songlist-001 .song-list-ul--day1 li.song-list-entry button,
#songlist-002 .song-list-ul--day2 li.song-list-entry button {
    position: static;
    vertical-align: 1px;
    margin-left: 5px;
}

@media screen and (max-width: 767px) {
    .awc-songlist-modal .modal-dialog {
        margin: 0.5rem auto;
    }

    .awc-songlist-modal .modal-dialog-centered {
        min-height: calc(100% - 1rem);
    }

    .awc-songlist-modal .song-list-wrap .modal-body h6 {
        font-size: 16px;
    }

    .awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li {
        font-size: 13px;
        line-height: 2;
        padding-left: 10px;
    }

    .awc-songlist-modal .song-list-wrap .modal-body .song-list-ul li button {
        top: -1px;
        font-size: 9px;
    }

    #songlist-001 .song-list-ul--day1 li.song-list-section,
    #songlist-002 .song-list-ul--day2 li.song-list-section {
        font-size: 13px;
    }
}

/* FAQ Section */
.faq {
    background-color: #111111;
    color: #ffffff;
}
.faq-accordion {
    max-width: 1000px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #333;
}
.faq-item summary {
    font-size: 22px;
    font-weight: 600;
    padding: 34px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
    color: #F9F0C7;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    padding: 0 0 30px 0;
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
}

/* Map Section */
.map {
    background-color: #000000;
}
.map-box {
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}
.map-tabs-design {
    display: flex;
    width: 100%;
}
.map-tab-btn {
    flex: 1;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background-color: #222;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}
.map-tab-btn.active {
    background-color: #555;
}
.map-view-container {
    position: relative;
    width: 100%;
    aspect-ratio: 20 / 11;
    height: auto;
    background-color: #1a1a1a;
}
.kakao-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.map-sdk-message {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #dddddd;
    background: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    white-space: pre-line;
    word-break: keep-all;
}
.map-type-controls {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    display: flex;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.map-type-btn {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-right: 1px solid #ddd;
}
.map-type-btn:last-child {
    border-right: none;
}
.map-type-btn.active {
    background: #333;
    color: #fff;
}
.map-info {
    margin-top: 20px;
    margin-bottom: 20px;
}
.map-address-text {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-align: left;
}
.map-external-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}
.ext-link {
    flex: 1;
    padding: 16px 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
}
.ext-link.kakao-link {
    background-color: #fee500;
    color: #000;
}
.ext-link.naver-link {
    background-color: #03c75a;
    color: #fff;
}

/* Custom Overlay for Roadview */
.rv-infowindow {
    padding: 8px 12px;
    background-color: #FF4B15;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    white-space: nowrap;
}
.rv-infowindow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #FF4B15 transparent transparent transparent;
}



/* Footer AWC Visual */
.footer-awc {
    position: relative;
    z-index: 2;
    width: 100%;
    height: clamp(240px, 21.2vw, 407px);
    overflow: hidden;
    background-color: #000000;
}

.footer-awc__wordmark {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1;
    transform: translateY(-50%);
}

.footer-awc__text {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1760 / 254.807;
    opacity:.1;
}

.footer-minime {
    position: absolute;
    right: clamp(24px, 8vw, 150px);
    bottom: clamp(0px, 1vw, 24px);
    z-index: 2;
    pointer-events: none;
}

.minime__wrap {
    width: clamp(64px, 6.67vw, 128px);
    aspect-ratio: 4 / 5;
    pointer-events: auto;
}

.minime__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: center bottom;
    will-change: transform;
}

.minime__inner__img {
    --minime-bg-position: 0%;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    background-image: url("./assets/welcome.png");
    background-repeat: no-repeat;
    background-position: var(--minime-bg-position) 0;
    background-size: 900% 100%;
}

.minime__balloon {
    position: absolute;
    right: 68%;
    bottom: 84%;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    transform: translateY(-6px);
}

.minime__balloon__text {
    position: relative;
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: #f9f5ef;
    background-color: #a6814c;
    text-align: left;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.minime__balloon__text--col-brown {
    color: #f9f5ef;
    background-color: #a6814c;
}

.minime__balloon-copy {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(11px, 0.84vw, 13px);
    font-weight: 500;
    line-height: 1.38;
    letter-spacing: 0;
}

.minime__balloon__text .tail {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 14px;
    height: 17px;
    color: #a6814c;
}

.minime__balloon__text .tail svg {
    display: block;
    width: 100%;
    height: 100%;
}



/* Footer */
.footer {
    position: relative;
    z-index: 2;
    background-color: #000000;
    color: #ffffff;
    padding: 80px 0;
    width: 100%;
}
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    
    flex-wrap: wrap;
    gap: 40px;
}
.footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    opacity: .1;
    line-height: 1;
}
.footer-info {
    text-align: right;
    font-size: 16px;
    color: #888;
    line-height: 1.8;
}
.footer-info p {
    word-break:keep-all;
    margin: 0;
}
.footer-info .copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #555;
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 14px 60px;
    font-size: 20px;
    font-weight: 700;
    color: #F9F0C7;
    
    /* Tailwind ?�과 번역 (브랜??컬러 #FF4B15 반영) */
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    border: 1px solid rgba(255, 75, 21, 0.3);
    box-shadow: 0 0 60px -15px rgba(255, 75, 21, 0.4);
    
    transition: all 500ms ease;
}

.floating-btn:hover {
    transform: translateX(-50%);
    border-color: rgba(255, 75, 21, 0.6);
    box-shadow: 0 0 80px -10px rgba(255, 75, 21, 0.6);
    color: #ffffff;
}

/* status-dot styling */
.status-dot {
    position: relative;
    display: inline-flex;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background-color: #FF4B15;
    box-shadow: 0 0 20px 4px #FF4B15;
    margin-right: 12px;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { opacity: 0.8; box-shadow: 0 0 10px 2px #FF4B15; }
    50% { opacity: 1; box-shadow: 0 0 25px 6px #FF4B15; }
    100% { opacity: 0.8; box-shadow: 0 0 10px 2px #FF4B15; }
}

.d-day-text {
    line-height: 1;
    font-size: 14px;
    color: #aaa;
}

.register-text {
    margin-left: 10px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

.arrow-icon {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    stroke: #ffffff;
    transition: transform 0.3s ease;
}

.floating-btn:hover .arrow-icon {
    transform: translateX(5px);
}



@media (max-width: 1200px) {

.cast-box {
    padding: 30px;
}

.cast-wrap {
    gap: 30px;
}

.cast-list li {
    font-size: 16px;
    flex-flow:column;
}

}



/* Responsive adjust for Grid */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    .sched-row {
        flex-direction: column;
    }
    .sched-title {
        flex: 0 0 0px;
    }
    .sched-desc {
        font-size: 14px;
    }
    
    .cast-wrap {
        flex-direction: column;
    }
    .cast-box {
        min-width: 0;
        width: 100%;
    }
    .cast-list .name {
        overflow-wrap: anywhere;
    }
    .footer-container {
        flex-direction: column;
    }
    .footer-info {
        text-align: left;
    }
    .footer-awc {
        height: clamp(200px, 48vw, 300px);
    }
    .footer-awc__wordmark {
        padding: 0 20px;
    }
    .footer-minime {
        right: 20px;
    }

    .map-buttons {
        flex-direction: column;
    }
}

@media (max-width: 786px) {

    .header {padding:20px 15px;}
    .welcome-wrapper {
        padding: 0 15px;
    }
    .container {
        padding: 0 15px;
    }
    .footer-awc__wordmark {
        padding: 0 15px;
    }
    .footer-container {
        padding: 0 15px;
    }


    .awc-songlist-modal .song-list-wrap .modal-body .song-list-ul .song-list-entry--new::before {
        top: 10px;
    }

    .section {
        padding: 60px 0;

    }
    .awc-mobile {display:none;}

    .people-wrapper {
        top:inherit;
        bottom: 0;
        height: 80%;
    }

    .section-title {
        font-size: 30px;
    }

    .faq-item summary,
    .faq-answer {
        font-size: 16px;
    }

    .faq-item summary {
        padding: 24px 0;
    }

    .scripture,
    .scripture1 {
        font-size: 24px;
    }

    .scripture span,
    .scripture1 span {
        font-size: 14px;
    }

    .scripture {
        margin-bottom: 30px;
    }

    .map-view-container {
        min-height: 300px;
    }

    .floating-btn {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        max-width: calc(100vw - 40px);
        padding: 12px 18px;
        white-space: nowrap;
    }

    .main-word {
        font-size: 28px;
        margin-bottom:30px;
    }

    .status-dot {
        margin-right: 0;
    }

    .d-day-text {
        font-size: 12px;
    }

    .cast-box {
        padding: 20px;
    }

    .register-text {
        margin-left: 0;
        font-size: 12px;
    }

    .arrow-icon {
        margin-left: 0;
        width: 20px;
        height: 20px;
        flex: 0 0 auto;
    }

    .ext-link {
        padding: 14px 0;
        font-size: 14px;
    }

    .center-content .date {
        margin:15px 0;
    }

    .center-content .date,
    .center-content .location {
        font-size: 20px;
    }

    .footer-awc {
        height: clamp(260px, 72vw, 340px);
    }

    .footer-awc__wordmark {
        top: 30%;
    }

    .footer-minime {
        left: 50%;
        right: auto;
        bottom: 30px;
        transform: translateX(-50%);
    }

    .minime__wrap {
        width: 64px;
        height: 80px;
        aspect-ratio: auto;
    }

    .minime__inner {
        height: 80px;
    }

    .minime__inner__img {
        height: 80px;
    }

    .footer-container {
        gap:20px
    }

    .footer-logo {
        opacity: 1;
        color:#888;
        font-size:24px;
    }
    
    .footer-info p {font-size:14px;}
}
