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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Arial Narrow', Arial, sans-serif;
    background: #0d0605;
    color: #fff;
}

.wrapper {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
}

header.top-banner {
    background: #7a1f2b;
    padding: 32px 24px;
}

header.top-banner h1 {
    color: #d4b25f;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

header.top-banner h2 {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.bg-photo {
    background-size: cover;
    background-position: center;
    padding: 32px 20px 100px;
    min-height: 100vh;
}

.bg-photo::before {
    content: '';
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 20px;
}

.title-icon {
    height: 32px;
    width: auto;
}

.title-icon-lg {
    max-width: 85%;
    width: auto;
    height: auto;
    max-height: 90px;
}

.card {
    background: rgba(122, 31, 43, 0.92);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.card label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin: 14px 0 8px;
}

.card label:first-child { margin-top: 0; }

.card input[type=text],
.card input[type=tel] {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    background: #d9d9d9;
    font-size: 16px;
    touch-action: manipulation;
}

.guests-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.guests-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0,0,0,0.25);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.guests-count-box {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 12px 32px;
    text-align: center;
}

.guests-count-box .number {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 4px;
}

.guests-count-box .label {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 4px;
}

.date-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-row .status-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.status-icon.available { background: #3ba55c; }
.status-icon.unavailable { background: #c0392b; }

.date-row input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    background: #d9d9d9;
    font-size: 15px;
}

.availability-msg {
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 10px;
    text-transform: uppercase;
}

.availability-msg.available { color: #3ba55c; }
.availability-msg.unavailable { color: #e74c3c; }

button.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(180deg, #7a1f2b, #5c161f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

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

.confirm-title {
    color: #3ba55c;
    font-size: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.4;
}

.confirm-box {
    background: rgba(122, 31, 43, 0.92);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    letter-spacing: 1px;
}

.confirm-box p { margin: 12px 0; text-transform: uppercase; font-size: 14px; }
.confirm-box .whatsapp { color: #3ba55c; font-weight: bold; }

a.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #7a1f2b;
    color: #fff;
    text-decoration: none;
    padding: 16px;
    border-radius: 10px;
    margin-top: 24px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 44px;
    cursor: pointer;
}

.stars span {
    color: rgba(255,255,255,0.3);
    transition: color 0.15s;
}

.stars span.filled {
    color: #f5c518;
}

.card textarea {
    width: 100%;
    padding: 12px 14px;
    border: none;
    border-radius: 6px;
    background: #d9d9d9;
    font-size: 15px;
    font-family: inherit;
    min-height: 90px;
    resize: vertical;
    margin-top: 8px;
}

.skip-btn {
    margin-top: 16px;
    font-size: 16px;
    padding: 14px;
}

.form-error {
    background: #ffe4e4;
    color: #8a1a1a;
    border: 1px solid #ff9d9d;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

.yesno-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.yesno-btn {
    flex: 1;
    padding: 14px;
    font-size: 16px;
}

.yesno-btn.secondary {
    background: rgba(0,0,0,0.25);
}
