/* ======================================================
   HERO SECTION
   Landing hero layout for the home page cover area.
====================================================== */
.hero-section {
    background: transparent;
    color: var(--color-primary);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Index hero SVG replacement */
.index-hero-svg-section {
    min-height: 100vh;
    padding: 0;
    background-image: var(--global-bg-pattern);
    background-size: var(--bg-size) var(--bg-size);
    background-repeat: repeat;
}

.index-hero-svg {
    display: block;
    width: var(--hero-art-width);
    height: var(--hero-art-height);
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    margin: 0;
}

/* Index hero SVG replacement: place arrows in side empty space */
.index-hero-svg-section .scroll-arrow-left {
    left: clamp(1.5rem, calc(50% - 520px), 22rem);
}

.index-hero-svg-section .scroll-arrow-right {
    right: clamp(1.5rem, calc(50% - 520px), 22rem);
}

.hero-pattern-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 800px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-background {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-location-wrapper {
    position: relative;
    margin-top: 3rem;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-location {
    background: transparent;
    color: var(--color-primary);
    padding: 0.5rem 2rem;
    margin: 0;
    font-size: 0.9375rem;
    letter-spacing: 0.15em;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 500px;
}

.cover-panel {
    position: relative;
    overflow: hidden;
    min-height: 620px;
}

.cover-panel::before {
    /* Legacy cover panel layer (unused on index after SVG hero replacement) */
    content: "";
    position: absolute;
    inset: 0;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: var(--ornament-opacity);
    z-index: 0;
    pointer-events: none;
}

.cover-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 620px;
}

.hero-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 2rem;
    max-width: 100%;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.hero-logo-container {
    display: none;
}

.hero-logo {
    display: none;
}

.hero-title {
    font-size: 4.25rem;
    margin: 0;
    color: var(--color-tertiary);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
    max-width: 100%;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--color-tertiary);
    text-transform: uppercase;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

/* ======================================================
   SCROLL INDICATOR
   Animated arrows guide users toward the next section.
====================================================== */
.scroll-down-arrow {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    width: 50px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 10;
    cursor: pointer;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-arrow-left {
    left: 15%;
}

.scroll-arrow-right {
    right: 15%;
    left: auto;
    transform: translateY(50%) scaleX(-1);
}

.scroll-arrow-center {
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 15;
}

.arrow-line {
    width: 4px;
    height: 35px;
    background-color: var(--page-color);
    transform-origin: top center;
}

.arrow-line-center {
    width: 5px;
    height: 45px;
    background-color: #ffffff;
    transform-origin: top center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.arrow-line:first-child {
    transform: rotate(45deg) translateX(12px);
}

.arrow-line:last-child {
    transform: rotate(-45deg) translateX(-12px);
}

.arrow-line-center:first-child {
    transform: rotate(45deg) translateX(15px);
}

.arrow-line-center:last-child {
    transform: rotate(-45deg) translateX(-15px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(50%) translateX(0);
    }
    40% {
        transform: translateY(50%) translateY(-10px);
    }
    60% {
        transform: translateY(50%) translateY(-5px);
    }
}

.scroll-arrow-center {
    animation: bounceCenter 2s infinite;
}

@keyframes bounceCenter {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 50%) translateY(0);
    }
    40% {
        transform: translate(-50%, 50%) translateY(-10px);
    }
    60% {
        transform: translate(-50%, 50%) translateY(-5px);
    }
}

.scroll-arrow-right {
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(50%) scaleX(-1) translateX(0);
    }
    40% {
        transform: translateY(50%) scaleX(-1) translateY(-10px);
    }
    60% {
        transform: translateY(50%) scaleX(-1) translateY(-5px);
    }
}

.scroll-down-arrow:hover .arrow-line {
    background-color: var(--color-accent-warm);
}



