/*
Theme Name: Luxe Hair
Author: Soichiro Okuda
Description: Original WordPress theme for Luxe Hair
Version: 1.0
*/

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding: 0;
  font-family:"Helvetica Neue", Arial, sans-serif;
  color:#333;
}

/* ヘッダー */
header{
  padding:3px 20px;
  background:rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
}

.logo{
  font-family:"Georgia", serif;   /* 上品 */
  font-size:24px;                 /* 26→24で締める */
  letter-spacing:2px;             /* 空気感 */
  font-weight:500;                /* 太すぎない */
}

.nav ul{
  display:flex;
  gap:30px;
  list-style:none;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:black;
  font-weight:bold;
  position:relative;
  top:7px;
}

.menu-btn{
display:none;
}

/* ヒーロー */
.hero{
  height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9") center/cover no-repeat;
  color: white;
}

.hero-inner {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 10px;
}

.hero-inner h2{
  font-size:40px;
  margin-bottom:20px;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}

.hero-inner p{
  margin-bottom:30px;
  color:white;
  font-size: 18px;
  text-shadow:0 2px 8px rgba(0,0,0,0.5);
}

.reserve-btn{
  display:inline-block;
  padding:15px 35px;
  background:#bfa37a; /* 木目ベージュ */
  color:white;
  text-decoration:none;
  border-radius:6px;
}

/* コンセプト */
.concept{
  padding:100px 20px;
  background:white;
}

.concept-inner{
  max-width:1000px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:50px;
}

.concept-image{
  flex: 1;
}

.concept-image img{
  width:100%;
  border-radius:10px;
}

.concept-text{
  flex:1;
}

.concept-text h2{
  font-size:28px;
  margin-bottom:20px;
  letter-spacing:2px;
}

.concept-text p{
  line-height:1.8;
  color:#666;
}

/* 料金表 */
.menu{
  padding:100px 20px;
  background:#f7f5f2;
}

.menu-inner{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.menu h2{
  font-size:28px;
  margin-bottom:50px;
  letter-spacing:2px;
}

.menu-list{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.menu-item{
  display:flex;
  justify-content:space-between;
  padding:15px 0;
  border-bottom:1px solid #ddd;
  font-size:18px;
}

/* スタッフ紹介 */
.staff{
  padding:100px 20px;
  background:white;
}

.staff-inner{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.staff h2{
  font-size:28px;
  margin-bottom:50px;
  letter-spacing:2px;
}

.staff-list{
  display:flex;
  justify-content:center;
  gap:40px;
}

.staff-card img{
  width:220px;
  height:220px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
}

.staff-card h3{
  margin-bottom:5px;
}

.staff-card p{
  color:#777;
}

/* 予約ボタン */
.reserve{
  padding:120px 20px;
  background:#bfa37a;
  color:black;
  text-align:center;
}

.reserve-inner{
  max-width:800px;
  margin:0 auto;
}

.reserve h2{
  font-size:28px;
  margin-bottom:20px;
  letter-spacing:2px;
}

.reserve p{
  margin-bottom:30px;
  line-height:1.8;
}

.reserve-btn{
  display:inline-block;
  padding:15px 40px;
  background:white;
  color:black;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}

/* フッター */
.footer{
  padding:40px 20px;
  background:#111;
  color:white;
  text-align:center;
}

.footer-inner{
  max-width:900px;
  margin:0 auto;
}

.footer h3{
  margin-bottom:15px;
  letter-spacing:2px;
}

.footer p{
  color:#ccc;
  margin:5px 0;
  font-size:14px;
}
.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* ハンバーガー */
.menu-btn{
  width:30px;
  height:25px;
  background:none;
  border:none;
  cursor:pointer;
  z-index:3;
}

.menu-btn span{
  display:block;
  width:100%;
  height:2px;
  background:#333;
  margin:6px 0;
  transition:.3s;
}

.menu-btn.open span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.open span:nth-child(2){
  opacity:0;
}

.menu-btn.open span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* メニュー */
.nav{
  position:static;
  width:auto;
  height:auto;
  background:none;
  padding:0;
}

.nav ul{
  display:flex;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav li{
  margin-bottom:20px;
  font-size:18px;
}

.menu-info{
  text-align:left;
}

.menu-description{
  margin:5px 0 0;
  color:#777;
  font-size:14px;
  line-height:1.6;
}

/* 開いた時 */
.nav.open{
  right:0;
}

/* overlay */
.overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.4);
  opacity:0;
  visibility:hidden;
  transition:.3s;
}

.overlay.open{
  opacity:1;
  visibility:visible;
}

html, body{
  overflow-x:hidden;
}

/* 投稿詳細ページ */

.single{
  padding:100px 20px;
  background:#fff;
}

.single-inner{
  max-width:800px;
  margin:0 auto;
}

.single-post{
  text-align:left;
}

.single-date{
  color:#888;
  font-size:14px;
  margin-bottom:15px;
}

.single-title{
  font-size:32px;
  margin-bottom:50px;
  letter-spacing:1px;
  line-height:1.5;
  text-align:center;
}

.single-content{
  line-height:2;
  color:#555;
  font-size:16px;
}

.single-content p{
  margin-bottom:25px;
}

.back-home{
  display:inline-block;
  margin-top:50px;
  color:#bfa37a;
  text-decoration:none;
  font-weight:bold;
}

.news{
  text-align: center;
  margin-bottom: 50px;
}

.news-item h3{
  margin:0;
  font-size:18px;
}

.news-item h3 a{
  color:#333;
  text-decoration:none;
}

.news-item h3 a:hover{
  color:#bfa37a;
}

/* レスポンシブ対応 */
@media (max-width: 768px){

  /* ヘッダー */
header{
  padding: 0 15px !important;
}

.logo{
  line-height: 1;
}

.menu-btn{
  padding: 0;
  display:block;
  transform: scale(0.7);
}
	
  .nav{
display:block;
}

/* ヒーロー */
  .hero{
  height:auto;
  padding:120px 20px 80px;
}

.hero-inner{
  padding:20px;
}

.hero-inner h2{
  font-size:24px;
  line-height: 1.4;
}

.hero-inner p{
  font-size:14px;
}
  .concept-inner{
  flex-direction:column;
}

.concept-image,
.concept-text{
  width:100%;
}

/* 料金表 */
.menu-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding:25px 0;
  border-bottom:1px solid #ddd;
}

.menu-info{
  text-align:left;
}

.menu-info h3{
  margin:0 0 8px;
  font-size:18px;
}

.menu-description{
  margin:0;
  color:#777;
  font-size:14px;
  line-height:1.6;
}

.menu-price{
  margin:0;
  font-size:18px;
  white-space:nowrap;
}
.menu-item{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  padding:20px 10px;
}

.menu-info{
  width:100%;
}

.menu-info h3{
  font-size:16px;
  margin:0 0 5px;
}

.menu-description{
  font-size:12px;
  line-height:1.6;
  margin:0;
}

.menu-price{
  font-size:16px;
  margin:0;
  align-self:flex-end;
}
/* スタッフ紹介 */
.staff-list{
  flex-direction:column;
  align-items:center;
}

/* フッター */
.footer{
  padding:40px 20px;
}

/* ハンバーガーメニュー */
.nav{
  position:fixed;
  top:0;
  right:-100%;
  width:200px;
  height:100vh;
  background:white;
  padding:80px 20px;
  transition:.3s;
  z-index:2;
}

.nav ul{
  display:block;
  padding:0;
}

.menu-btn{
    display:block;
  }

  .nav.open{
    right:0;
  }
}