/* spot.php 固有のスタイル */

.spot-detail-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}

.spot-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.spot-detail-title {
    position: relative;
    z-index: 2;
}

.spot-detail-title h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.spot-detail-content {
    background-color: #fff;
    padding: 40px;
    margin-top: -50px; /* ヒーロー画像に少し重ねる */
    position: relative;
    z-index: 3;
    border-radius: 8px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.spot-description {
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

.back-to-home {
    text-align: center;
    margin-top: 20px;
}

.spot-reserve-action {
    text-align: center;
    margin-top: 40px;
}

.spot-reserve-action .btn {
    background-color: #ff9f1c; /* 目立つオレンジ色 */
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
}

.spot-reserve-action .btn:hover {
    background-color: #e68a00;
    transform: translateY(-2px);
}