/* ===========================
   ゲストハウス紹介ページ専用スタイル
   =========================== */

/* ページヘッダー */
.guesthouse-header {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
}

.guesthouse-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1490806843957-31f4c9a91c65?w=1920&h=400&fit=crop') center/cover;
    opacity: 0.2;
}

.guesthouse-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.guesthouse-header .container {
    position: relative;
    z-index: 1;
}

/* パンくずリスト */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb-separator {
    opacity: 0.6;
}

.breadcrumb-current {
    opacity: 1;
    font-weight: 500;
}

/* 物件紹介セクション */
.properties-section {
    padding: 5rem 0;
    background: var(--white);
}

.properties-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.properties-intro-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.properties-intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* 物件グリッド */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.property-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.property-card.animate {
    animation: fadeInUp 0.6s ease forwards;
}

.property-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.property-card-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.property-card-disabled:hover {
    transform: translateY(0);
    box-shadow: var(--shadow);
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 102, 204, 0.95);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.property-badge-disabled {
    background: rgba(128, 128, 128, 0.85);
}

.property-content {
    padding: 2rem;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.rating-stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

.rating-score {
    font-weight: 700;
    color: var(--text-color);
}

.rating-count {
    color: var(--text-light);
}

.property-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.property-feature svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* CTAセクション */
.property-cta {
    background: var(--secondary-color);
    padding: 4rem 0;
    text-align: center;
}

.property-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.property-cta-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.property-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* レスポンシブデザイン */
/* タブレット（768px - 1024px）: 2列表示 */
@media (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* モバイル（768px以下）: 1列表示 */
@media (max-width: 768px) {
    .guesthouse-header {
        height: 350px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .breadcrumb {
        margin-bottom: 1.5rem;
        font-size: 0.85rem;
    }

    .properties-section {
        padding: 3rem 0;
    }

    .properties-intro {
        margin-bottom: 3rem;
    }

    .properties-intro-title {
        font-size: 1.5rem;
    }

    .properties-intro-text {
        font-size: 1rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .property-image {
        height: 240px;
    }

    .property-content {
        padding: 1.5rem;
    }

    .property-title {
        font-size: 1.3rem;
    }

    .property-cta {
        padding: 3rem 0;
    }

    .property-cta-title {
        font-size: 1.6rem;
    }

    .property-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .property-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .guesthouse-header {
        height: 380px;
    }

    .properties-intro-title {
        font-size: 1.6rem;
    }

    .properties-grid {
        gap: 2rem;
    }

    .property-image {
        height: 260px;
    }
}

@media (min-width: 1025px) {
    .properties-grid {
        gap: 3rem;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
