/* ==========================================
   Spine - 3D Canvas
   ========================================== */

html, body {
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section .spine-canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: #000000;
}

.hero-section .spine-canvas-container canvas {
    width: 100%;
    height: 100%;
}

.spine-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    z-index: 10;
    transition: opacity 0.6s ease;
}

.spine-loading.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.spinner-ring {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 169, 110, 0.2);
    border-top-color: #C9A96E;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-section .scroll-sections {
    position: relative;
    z-index: 5;
    pointer-events: none;
}

.scroll-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.scroll-section.active {
    opacity: 1;
    pointer-events: auto;
}

.scroll-section[data-section="0"],
.scroll-section[data-section="2"],
.scroll-section[data-section="4"],
.scroll-section[data-section="6"] {
    justify-content: flex-start;
    padding-left: 6%;
}

.scroll-section[data-section="1"],
.scroll-section[data-section="3"],
.scroll-section[data-section="5"] {
    justify-content: flex-end;
    padding-right: 6%;
}

.hero-section .section-content {
    max-width: 480px;
    padding: 2.2rem 2.5rem;
    pointer-events: auto;
    background: rgba(42, 42, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(201, 169, 110, 0.1);
}

.hero-section .section-content h2 {
    color: #ffffff;
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 0.8rem;
}

.hero-section .section-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.85;
}

.hero-section .section-label {
    color: #C9A96E;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.hero-section .scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(201, 169, 110, 0.45);
    font-size: 0.72rem;
    z-index: 100;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-progress {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 180px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 2px;
    z-index: 100;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #C9A96E, #D4B87A);
    border-radius: 2px;
    transition: height 0.15s ease;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.6);
}

/* Hide sections below hero on front page */
.front-page .about-section,
.front-page .benefits-section,
.front-page .services-section,
.front-page .gallery-section,
.front-page .testimonials-section,
.front-page .faq-section,
.front-page .cta-section,
.front-page .booking-section,
.site-footer,
#site-footer {
    display: none !important;
}

/* Page styles */
.page-main {
    padding-top: calc(var(--header-height, 70px) + 2rem);
    min-height: 100vh;
    background: #000000;
}

.page-main .section {
    padding: 4rem 0;
}

.page-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-main .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-main .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-main .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.page-main .section-label {
    color: #C9A96E;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}
