/*
Theme Name: Dream Kebab
Theme URI: https://dreamkebab.tokyo
Description: Dream Kebabのカスタムワードプレステーマ。東京・染井銀座商店街のケバブテイクアウト専門店向け。多言語対応、レスポンシブデザイン、温かみのあるブランディング。
Version: 1.0.0
Author: Dream Kebab
Author URI: https://dreamkebab.tokyo
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dream-kebab
Tags: restaurant, food, japanese, bilingual, responsive, custom-menu, kebab
*/

/* ========================================
   リセットとベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFA500;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'メイリオ', Meiryo, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-branding h1 {
    color: var(--text-dark);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.site-branding h1 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.site-branding h1 a:hover {
    color: var(--dark-yellow);
}

.site-tagline {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========================================
   ナビゲーション
   ======================================== */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.main-navigation a:hover {
    color: var(--dark-yellow);
}

.main-navigation .current-menu-item a {
    color: var(--dark-yellow);
    border-bottom: 2px solid var(--dark-yellow);
}

/* 言語スイッチャー */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.language-switcher a {
    padding: 0.25rem 0.75rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 0.85rem;
}

.language-switcher a:hover,
.language-switcher a.current {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 2rem;
    color: var(--dark-yellow);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #1a1a1a;
    transform: scale(1.05);
}

/* ========================================
   コンテンツセクション
   ======================================== */
.content-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ========================================
   メニューセクション
   ======================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item h3 {
    font-size: 1.8rem;
    color: var(--dark-yellow);
    margin-bottom: 1rem;
}

.menu-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.menu-item .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* トッピング */
.toppings-section {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.toppings-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.topping-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.topping {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

/* ========================================
   アバウトセクション
   ======================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--dark-yellow);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
    margin-bottom: 2rem;
}

.commitment-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.commitment-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dark-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.owner-message {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-yellow);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ========================================
   ロケーションセクション
   ======================================== */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--dark-yellow);
    margin-bottom: 0.75rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-item a {
    color: var(--dark-yellow);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    text-decoration: underline;
}

.map-container {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow);
}

/* ========================================
   お問い合わせフォーム
   ======================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.submit-button {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background-color: var(--dark-yellow);
    transform: scale(1.05);
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #999;
}

/* ========================================
   ユーティリティクラス
   ======================================== */
.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }
}


