/**
 * 栗駒ジオパーク バリアフリー調査報告書ページ用CSS
 *
 * @package TourCenter
 * @since 1.0.0
 */

/* Page Background */
.geo-page {
    background: #ffffff;
}

/* Hero Section */
.geo-hero {
    position: relative;
    width: 100%;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.geo-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-hero-title {
    color: #ffffff;
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Section */
.geo-section {
    padding: 60px 0;
}

.geo-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.geo-section-title {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #005a24;
    margin-bottom: 12px;
}

.geo-section-description {
    font-size: 1.05rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Map */
.geo-map {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Location Card */
.geo-location-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.geo-location-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #005a24 0%, #007a32 100%);
    color: #ffffff;
}

.geo-location-number {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.geo-location-name {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.geo-location-body {
    padding: 32px;
}

/* Preparing Text */
.geo-preparing {
    text-align: center;
    color: #adb5bd;
    font-size: 1rem;
    padding: 40px 0;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    margin: 0;
}

/* Back to Top */
.geo-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #005a24;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 90, 36, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geo-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.geo-back-to-top:hover {
    background: #007a32;
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 90, 36, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .geo-map {
        height: 450px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .geo-hero {
        min-height: 360px;
    }

    .geo-section {
        padding: 48px 0;
    }

    .geo-map {
        height: 380px;
        border-radius: 8px;
    }

    .geo-location-header {
        padding: 20px 24px;
        gap: 12px;
    }

    .geo-location-number {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .geo-location-name {
        font-size: 1.15rem;
    }

    .geo-location-body {
        padding: 24px;
    }

    .geo-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .geo-hero {
        min-height: 280px;
    }

    .geo-section {
        padding: 36px 0;
    }

    .geo-map {
        height: 300px;
    }

    .geo-location-header {
        padding: 16px 20px;
    }

    .geo-location-number {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    .geo-location-name {
        font-size: 1.05rem;
    }

    .geo-location-body {
        padding: 20px;
    }

    .geo-preparing {
        padding: 30px 0;
        font-size: 0.9rem;
    }
}
