@font-face {
    font-family: 'Times';
    src: url('assets/times.ttf') format('truetype');
}

@font-face {
    font-family: 'EdwardianScript';
    src: url('assets/edwardianscriptitc.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 3rem;
    background: white;
    min-height: 100vh;
    font-family: "Playfair Display", serif;
    color: #111;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.logo {
    display: block;
    max-width: 500px;
    height: auto;
    margin: 0 auto 1rem auto;
}

.title {
    text-align: center;
    font-size: 72px;
    margin-bottom: 2rem;
    font-family: 'EdwardianScript', cursive;
}

.menu {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Times', serif;
    font-size: 63px;
    color: #000;
    margin: 0;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-family: 'Times', serif;
    font-size: 36px;
    color: #666;
    margin: 0;
    font-style: italic;
}

.section-items {
    margin-top: 2rem;
}

.item {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
}

.item-name {
    font-size: 30px;
    font-weight: bold;
    color: #000;
    font-family: 'Times', serif;
}

.item-description {
    font-size: 20px;
    color: #666;
    margin-top: 0.5rem;
    font-family: 'Times', serif;
}

.item-price {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    color: #666;
    font-family: 'Times', serif;
}