/**
 * Page Title Section Styles
 *
 * @package Forgeee
 * @since 1.0.0
 */

/* ========================================
   ページタイトルセクション
   ======================================== */
.fg-page-title-section {
    position: relative;
    width: 100%;
}

/* ヘッダーオーバーレイ時の調整 */
.fg-page-title-section.has-header-overlay {
    margin-top: 0;
}

/* 背景画像コンテナ */
.fg-page-title-bg {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* オーバーレイ */
.fg-page-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* コンテンツエリア */
.fg-page-title-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 20px 60px;
    text-align: center;
}

/* ヘッダーオーバーレイ時の上部パディング追加 */
.has-header-overlay .fg-page-title-content {
    padding-top: 160px; /* ヘッダーの高さ分追加 */
}

/* タイトル内部コンテナ */
.fg-page-title-inner {
    max-width: 1280px;
    margin: 0 auto;
}

/* ページタイトル */
.fg-page-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .fg-page-title-bg {
        min-height: 300px;
    }
    
    .fg-page-title-content {
        padding: 80px 20px 40px;
    }
    
    .has-header-overlay .fg-page-title-content {
        padding-top: 120px;
    }
    
    .fg-page-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fg-page-title {
        font-size: 1.5rem;
    }
}