/*
Theme Name: Restaurant Theme
Author: Your Name
Version: 1.0
Description: 高級レストラン向けWordPressテーマ
*/

body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: #fff;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.nav {
    display: flex;
    gap: 20px;
}

.reservation-button {
    background-color: #b00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

main {
    padding-top: 100px;
}