/* ===== 基本設定と変数 ===== */
:root {
    --bg-color: #1a202c;
    --text-color: #e2e8f0;
    --accent-color: #F39800;
    --card-bg-color: #2d3748;
    --header-bg-color: rgba(26, 32, 44, 0.8);
    --font-primary: 'Poppins', 'Noto Sans JP', sans-serif;
    --font-secondary: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.section-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* ===== ヘッダー ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--header-bg-color);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.header-nav ul {
    display: flex;
    list-style: none;
}

.header-nav li {
    margin-left: 30px;
}

.header-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--accent-color);
}

/* ===== ヒーローセクション ===== */
.hero {
    position: relative; /* 疑似要素を配置するため */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color); /* 背景が消えたときの色 */
    overflow: hidden; /* 疑似要素がはみ出さないように */
}

/* 背景画像を持つ疑似要素を作成 */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 背景画像の設定をこちらに移動 */
    background-image: url('images/IMG_1750.png');
    background-size: cover;
    background-position: center;
    
    /* コンテンツ（テキスト）の背面に配置 */
    z-index: 0; 
    
    /* ゆっくり変化させるための設定 */
    opacity: 1; /* 初期状態は不透明 */
    transition: opacity 0.8s ease-in-out; /* 0.8秒かけて透明度を変化させる */
}

/* ヒーローセクションのコンテンツ（テキストなど）が背景より手前に来るように設定 */
.hero .container {
    position: relative;
    z-index: 1;
}

/* no-backgroundクラスがついたら、疑似要素を透明にする */
.hero.no-background::before {
    opacity: 0; /* 透明にする */
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
}


/* ===== 作品一覧 ===== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.work-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.work-image img {
    width: 100%;
    height: auto;
    display: block;
}

.work-info {
    padding: 25px;
}

.work-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.work-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.work-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background-color: var(--bg-color);
    color: var(--accent-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-right: 5px;
    margin-bottom: 5px;
}

.work-link {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: opacity 0.3s;
}

.work-link:hover {
    opacity: 0.8;
}

/* ===== スキル ===== */
.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    background-color: var(--card-bg-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

/* ===== お問い合わせ ===== */
.contact-links {
    text-align: center;
    margin-top: 30px;
}

.contact-links a {
    display: inline-block;
    margin: 0 15px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1.2rem;
    border: 2px solid var(--accent-color);
    padding: 10px 25px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-links a:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
}

/* ===== フッター ===== */
.footer {
    padding: 30px 0;
    text-align: center;
    background-color: #11151c;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== アニメーション ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* style.css の一番下に追加 */

/* ===== 好きなものリスト ===== */
.favorites-grid {
    display: grid;
    /* 画面幅に応じて2列または3列に自動調整 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.favorite-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.favorite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.favorite-icon {
    font-size: 3rem; /* アイコンの大きさ */
    margin-bottom: 15px;
    line-height: 1;
}

.favorite-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.favorite-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.favorite-list li {
    margin-bottom: 8px;
}

/* ===== Twemojiのスタイル調整 ===== */
.favorite-icon .emoji {
    width: 3rem;  /* アイコンの高さを調整 */
    height: 3rem; /* アイコンの幅を調整 */
    margin: 0 auto; /* 中央揃えのため */
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    /* ▼▼▼ この部分を書き換える ▼▼▼ */
    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* 画面全体の高さ */
        background-color: var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        /* 最初は画面の外に隠しておく */
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 100; /* ヘッダーより手前に表示 */
    }

    /* メニューが開いたときのスタイル */
    .header-nav.nav-open {
        transform: translateX(0);
    }

    .header-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .header-nav li {
        margin: 0;
        padding: 20px 0;
    }

    .header-nav a {
        font-size: 1.5rem;
    }
    /* ▲▲▲ ここまで書き換える ▲▲▲ */
    .section-title {
        font-size: 2rem;
    }
}

/* ===== 表示/非表示のアニメーション ===== */
#favorites {
    /* 変化にかける時間や速度を指定 */
    transition: opacity 0.5s ease-in-out, padding 0.5s ease-in-out, height 0.5s ease-in-out, margin 0.5s ease-in-out;
}

.section.hidden {
    /* 非表示の状態 */
    opacity: 0;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
    overflow: hidden;
    /* アクセシビリティのためにも追加 */
    visibility: hidden;
}

/* style.css の一番下に追加 */

/* ===== メディアセクション ===== */
.media-list {
    display: grid;
    /* 画面幅に応じて1列または2列に自動調整 */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.media-item {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    display: flex; /* 画像とコンテンツを横並びにする */
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.media-image {
    flex: 0 0 33.33%; /* 左側の幅を1/3に固定 */
    max-width: 33.33%;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像の比率を保ったまま領域を埋める */
    display: block;
}

.media-content {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.media-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.media-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.media-tag {
    background-color: var(--bg-color);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* style.css の一番下に追加 */

/* ===== ハンバーガーメニュー ===== */
.hamburger-menu {
    display: none; /* PCでは非表示 */
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101; /* メニュー本体より手前に */
}

.hamburger-menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.4s, opacity 0.4s, top 0.4s;
}

.hamburger-menu span:nth-of-type(1) {
    top: 0;
}
.hamburger-menu span:nth-of-type(2) {
    top: 10px;
}
.hamburger-menu span:nth-of-type(3) {
    top: 20px;
}

/* ハンバーガーメニューが開いたとき（×印に変化） */
.hamburger-menu.is-active span:nth-of-type(1) {
    top: 10px;
    transform: rotate(45deg);
}
.hamburger-menu.is-active span:nth-of-type(2) {
    opacity: 0;
}
.hamburger-menu.is-active span:nth-of-type(3) {
    top: 10px;
    transform: rotate(-45deg);
}


/* スマホ表示のときだけハンバーガーを表示 */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
}