/* Custom Properties */
:root {
    /* 色の反転と調整 */
    --brand-color: #008080; /* ティール（ブランドカラー）はそのまま */
    --text-color: #fff;     /* メインテキストを白に反転 */
    --light-bg: #008080;    /* 明るい背景をティールに設定 (body背景) */
    --dark-bg: #004d4d;     /* 濃い背景をティールの濃いトーンに調整 (フッター, ヘッダーなど) */
    --light-text: #333;     /* 明るいテキストを濃い色に反転 (ホバー時など) */
    --font-primary: 'Cinzel', serif;
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* メインの背景色をティールに、文字色を白に反転 */
    font-family: var(--font-sans);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg); /* ティール */
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--light-text); /* ホバー色をコントラストの高い濃い色に反転 */
}

/* Header & Navigation */
/* --- Header & Logo Updates --- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; 
    background-color: var(--dark-bg); /* ヘッダー背景を濃いティールに */
    border-bottom: 1px solid #003333; /* ボーダー色を調整 */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ロゴのスタイル設定 (変更なし) */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    height: auto;
    width: 160px;
    transition: opacity 0.3s;
}

.logo:hover img {
    opacity: 0.8;
}

/* --- ▼▼▼ SNS プルダウンメニュー スタイル追加 ▼▼▼ --- */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a.dropbtn {
    padding-right: 20px;
}

/* プルダウンアイコン (変更なし) */
.dropbtn .fa-caret-down {
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s;
}

/* ドロップダウンメニュー本体の調整 */
.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    background-color: var(--dark-bg); /* メニュー背景を濃いティールに反転 */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5); /* 影を濃く */
    z-index: 100;
    right: 0;
    border-top: 2px solid var(--text-color); /* ボーダー色を白に反転 */
}

.dropdown-content a {
    color: var(--text-color); /* 白 */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.9em;
}

.dropdown-content a:hover {
    background-color: var(--brand-color); /* ホバー背景をティールに */
    color: var(--light-text); /* ホバー文字色を濃い色に反転 */
}

/* ホバー時にメニューを表示 (変更なし) */
.dropdown:hover .dropdown-content {
    display: block;
}

/* ホバー時にアイコンを回転 (変更なし) */
.dropdown:hover .dropbtn .fa-caret-down {
    transform: rotate(180deg);
}

/* --- Mobile Styles (Media Query) --- */
@media (max-width: 768px) {
    /* メインナビゲーションの開閉 */
    #main-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--dark-bg); /* メニュー背景を濃いティールに反転 */
        border-top: 1px solid #003333;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }

    #main-nav.active {
        display: block;
    }

    /* メインナビ内のリスト */
    #main-nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    #main-nav ul li a {
        padding: 12px 20px;
        border-bottom: 1px solid #006666; /* 境界線を調整 */
    }
    
    /* モバイルメニューアイコン */
    .menu-icon {
        display: block;
        margin-left: 10px;
        color: var(--text-color); /* アイコン色を白に反転 */
    }

    /* モバイルメニュー内のドロップダウンの挙動 (重複定義を整理) */
    .dropdown {
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .dropdown-content {
        /* モバイルでは絶対配置ではなく、下に展開する */
        position: static; 
        box-shadow: none;
        border-top: none;
        width: 100%;
        min-width: auto;
        right: auto;
        
        /* JS制御用の設定 */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

    /* JSで'active'クラスを付与して展開 */
    .dropdown.active .dropdown-content {
        max-height: 200px;
    }
    
    .dropdown-content a {
        padding-left: 30px;
        background-color: var(--brand-color); /* インデント部分の背景をティールに調整 */
    }
    
    /* Hero Adjustments */
    .hero {
        height: 60vh;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1em;
    }
    
    /* モバイルでのロゴサイズ */
    .logo img {
        width: 120px;
    }


    /* Cookie Banner Mobile */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
    }
    .cookie-btn {
        width: 100%;
    }
}

/* PCナブ要素 (メディアクエリの外) */
#main-nav ul {
    display: flex;
    list-style: none;
}

#main-nav ul li a {
    padding: 10px 15px;
    display: block;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 0.9em;
}

.header-controls {
    display: flex;
    align-items: center;
}

/* 言語切り替えボタンの調整 */
.lang-switch {
    background: none;
    border: 1px solid var(--text-color); /* 白 */
    color: var(--text-color); /* 白 */
    padding: 5px 10px;
    margin-right: 15px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}

.lang-switch:hover {
    background-color: var(--light-text); /* ホバー背景を濃い色に反転 */
    color: var(--brand-color); /* ホバー文字色をティールに反転 */
    border-color: var(--light-text);
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.5em;
    color: var(--brand-color);
}


/* --- Update: Hero Section & Slider --- */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color); /* 白 */
    overflow: hidden;
}

/* Slider Container (変更なし) */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slide (変更なし) */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

/* Dark Overlay for Readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* オーバーレイを薄くし、背景のティールを見せる */
    z-index: 2;
}

/* Text Content (変更なし) */
.hero-content {
    z-index: 3;
    position: relative;
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3.5em;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* CTAボタンの調整 */
.cta-button {
    background-color: var(--light-text); /* 背景を濃い色に反転 */
    color: var(--brand-color); /* 文字をティールに反転 */
    padding: 12px 30px;
    border-radius: 5px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #555;
    color: var(--text-color); /* 文字を白に反転 */
}

/* Main Content */
main {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--dark-bg); /* ボーダー色を調整 */
}

.content-section h2 {
    font-family: var(--font-primary);
    font-size: 2em;
    color: var(--text-color); /* 白 */
    margin-bottom: 20px;
    text-align: center;
}

.model-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.model-item {
    background-color: var(--dark-bg); /* モデルアイテム背景を濃いティールに反転 */
    border: 1px solid var(--text-color); /* ボーダーを白に反転 */
    color: var(--text-color); /* モデルアイテム文字色を白に反転 */
    padding: 20px;
    text-align: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-color); /* 白 */
    padding: 20px 5%;
    text-align: center;
    font-size: 0.9em;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: var(--text-color); /* 白 */
    font-size: 1.5em;
    margin: 0 10px;
}

.social-links a:hover {
    color: var(--light-text); /* 濃い色に反転 */
}

/* --- Update: Cookie Banner Styles --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95); /* より暗く */
    color: var(--text-color); /* 白 */
    padding: 20px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    font-size: 0.9em;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9em;
    transition: all 0.3s;
}

/* "All" Button (Primary) */
.cookie-btn.primary {
    background-color: var(--text-color); /* プライマリボタン背景を白に反転 */
    color: var(--brand-color); /* プライマリボタン文字色をティールに反転 */
    border: 1px solid var(--text-color);
}
.cookie-btn.primary:hover {
    background-color: #eee;
}

/* "Necessary" Button (Secondary) */
.cookie-btn.outline {
    background-color: transparent;
    color: var(--text-color); /* 白 */
    border: 1px solid var(--text-color); /* 白 */
}
.cookie-btn.outline:hover {
    border-color: var(--light-text);
    background-color: rgba(255,255,255,0.1);
}