:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --gold: #c9a227;
    --gold-light: #d4b445;
    --gold-dark: #a68521;
    --white: #f5f5f5;
    --white-dim: #cccccc;
    --grey: #888888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    border-bottom: 1px solid var(--gold);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
}

.logo-v {
    color: var(--gold);
    font-size: 5rem;
}

.logo-rest, .logo-ka {
    color: var(--white);
}

.logo-dash {
    color: var(--gold);
    margin: 0 5px;
}

.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--grey);
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

/* Intro Section */
.intro {
    text-align: center;
    padding: 60px 20px;
}

.intro h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
}

.intro h1 .gold {
    color: var(--gold);
}

.intro p {
    color: var(--white-dim);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Menu Section */
.menu-section {
    padding: 40px 0;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-item {
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.menu-item.selected {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.2);
}

.menu-item.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.dish-image {
    height: 120px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dish-icon {
    font-size: 3rem;
    opacity: 0.7;
}

.dish-info {
    padding: 25px;
}

.dish-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

.description {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.price {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
}

.selection-info {
    text-align: center;
    padding: 30px;
    color: var(--grey);
}

.selection-info span {
    color: var(--gold);
    font-weight: 500;
}

/* Customer Section */
.customer-section {
    padding: 40px 0;
    border-top: 1px solid var(--black-lighter);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--white-dim);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

input[type="text"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 15px 20px;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--gold);
}

input::placeholder {
    color: var(--grey);
}

small {
    display: block;
    margin-top: 5px;
    color: var(--grey);
    font-size: 0.8rem;
}

/* Summary Section */
.summary-section {
    padding: 40px 0;
    border-top: 1px solid var(--black-lighter);
}

.order-summary {
    background: var(--black-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--grey);
    font-style: italic;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--black-lighter);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .name {
    color: var(--white);
}

.summary-item .qty {
    color: var(--grey);
}

.summary-item .price {
    color: var(--gold);
    margin: 0;
}

.total {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 8px;
    font-size: 1.2rem;
}

.total span:last-child {
    color: var(--gold);
    font-weight: 500;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 4px;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid var(--black-lighter);
    margin-top: 60px;
}

footer p {
    color: var(--grey);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.8rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--black-light);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--gold);
    max-width: 500px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--gold);
}

.modal-content h2 {
    margin-bottom: 20px;
}

.modal-content p {
    color: var(--white-dim);
    margin-bottom: 10px;
}

.order-number {
    color: var(--gold) !important;
    font-size: 1.1rem;
    margin: 20px 0 !important;
}

.modal-btn {
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--gold);
    border: none;
    border-radius: 4px;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.modal-btn:hover {
    background: var(--gold-light);
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }

    .logo-v {
        font-size: 3rem;
    }

    .intro h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 20px;
        padding: 40px 30px;
    }
}
