/* リセットCSS: ブラウザのデフォルトスタイルを統一します */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 💻 基本設定 */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* シンプルなフォント */
    line-height: 1.6;
    color: #333; /* 文字の色 */
    background-color: #f8f8f8; /* 背景色はわずかにグレーにして写真を際立たせる */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* 🌐 ヘッダーとナビゲーション */
header {
    background-color: rgba(0, 0, 0, 0.8); /* 半透明の黒で写真を邪魔しない */
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between; /* 両端寄せ */
    align-items: center;
    position: fixed; /* 画面上部に固定 */
    width: 100%;
    z-index: 100; /* 他の要素の上に表示 */
}

.site-title h1 {
    font-size: 1.5em;
    font-weight: 300;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 0.9em;
    padding: 5px 0;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #aaaaaa; /* ホバー時に色が変わる */
}

/* 🖼️ メインビジュアル (Hero Section) */
.hero-section {
    /* 画像はimagesフォルダにmain-visual.jpgとして保存することを想定 */
    background-image: url('../images/main-visual.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh; /* 画面全体を覆う高さ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    /* 背景画像を見やすくするためのオーバーレイ */
    position: relative;
    z-index: 1; 
}
/* 画像の上に暗いオーバーレイを重ねる */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 暗くする度合いを調整 */
    z-index: -1;
}


.hero-section h2 {
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 100; /* 細いフォントで洗練された印象に */
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #333;
    padding: 12px 30px;
    border: 2px solid white;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
}

/* 🌟 おすすめ作品エリア */
.featured-work {
    padding: 80px 40px;
    text-align: center;
}

.featured-work h3 {
    font-size: 2em;
    margin-bottom: 40px;
}

.work-grid {
    display: grid;
    /* 3列のレイアウト。写真の数やサイズに合わせて調整してください */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.work-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-item img:hover {
    transform: scale(1.03); /* ホバーで少し拡大 */
    opacity: 0.9;
}

.view-all-button {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #333;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.view-all-button:hover {
    background-color: #333;
    color: white;
}

/* 🦶 フッター */
footer {
    background-color: #333;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8em;
}

/* 📱 スマートフォン対応（メディアクエリ） */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 10px 20px;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin: 0 15px;
    }

    .hero-section h2 {
        font-size: 2em;
    }

    .featured-work {
        padding: 50px 20px;
    }
}