/* Privage（プリヴァージュ）専用スタイル */
/* ブラック/ゴールド/ホワイト、余白のある高級感 */

:root {
    --privage-black: #0a0a0a;
    --privage-gold: #d4af37;
    --privage-gold-light: #f4e4bc;
    --privage-white: #ffffff;
    --privage-gray: #2a2a2a;
    --privage-gray-light: #f5f5f5;
}

/* 全体の余白とタイポグラフィ */
body {
    font-family: 'Noto Serif JP', 'Playfair Display', serif;
    color: var(--privage-black);
    background-color: var(--privage-white);
    line-height: 1.8;
}

/* ナビゲーションバー */
.luxury-nav {
    background: linear-gradient(135deg, var(--privage-black) 0%, var(--privage-gray) 100%) !important;
    border-bottom: 2px solid var(--privage-gold);
    padding: 1rem 0;
}

.luxury-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--privage-gold) !important;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.luxury-nav .nav-link {
    color: var(--privage-white) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.luxury-nav .nav-link:hover {
    color: var(--privage-gold) !important;
    transform: translateY(-2px);
}

/* フッター */
.luxury-footer {
    background: linear-gradient(135deg, var(--privage-black) 0%, var(--privage-gray) 100%);
    color: var(--privage-white);
    border-top: 2px solid var(--privage-gold);
    margin-top: auto;
}

.luxury-footer * {
    color: var(--privage-white) !important;
}

.luxury-footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.luxury-footer a {
    color: var(--privage-gold-light) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.luxury-footer a:hover {
    color: var(--privage-gold) !important;
}

.luxury-footer .luxury-brand {
    color: var(--privage-gold) !important;
}

/* ボタン */
.btn-privage {
    background: linear-gradient(135deg, var(--privage-gold) 0%, #b8941f 100%);
    color: var(--privage-black);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-privage:hover {
    background: linear-gradient(135deg, #b8941f 0%, var(--privage-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--privage-black);
}

.btn-privage-outline {
    background: transparent;
    color: var(--privage-gold);
    border: 2px solid var(--privage-gold);
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-privage-outline:hover {
    background: var(--privage-gold);
    color: var(--privage-black);
    transform: translateY(-2px);
}

/* カード */
.privage-card {
    background: var(--privage-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.privage-card:hover {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.privage-card-title {
    color: var(--privage-black);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--privage-gold);
    padding-bottom: 0.5rem;
}

/* セクション */
.privage-section {
    padding: 4rem 0;
}

.privage-section h1,
.privage-section h2,
.privage-section h3,
.privage-section h4,
.privage-section h5,
.privage-section h6 {
    color: var(--luxury-gold);
}

.privage-section-alt {
    background: var(--privage-gray-light);
    padding: 4rem 0;
}

/* ヒーローセクション */
.privage-hero {
    background: linear-gradient(135deg, var(--privage-black) 0%, var(--privage-gray) 100%);
    color: var(--privage-white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.privage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/fv.png') no-repeat center;
    background-size: cover;
    opacity: 0.8;
    z-index: 0;
}

.privage-hero .container {
    position: relative;
    z-index: 1;
}

.privage-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--privage-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.privage-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* スクロール追従ボタン（モバイル） */
.scroll-follow-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.scroll-follow-btn a {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

@media (max-width: 768px) {
    .scroll-follow-btn {
        display: flex;
    }
    
    .privage-hero h1 {
        font-size: 2rem;
    }
    
    .privage-hero {
        padding: 4rem 0;
    }
}

/* モザイク効果 */
.photo-blur {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.photo-blur.revealed {
    filter: blur(0px);
}

/* Google Translate スタイル調整 */
#google_translate_element {
    margin-left: 1rem;
}

.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

/* 余白の調整 */
.privage-spacing {
    margin: 3rem 0;
}

.privage-spacing-lg {
    margin: 5rem 0;
}

