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

/* PAGE BASE */
body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: #f6d6dc;
    /* soft rose pink */
    color: #4a2c2a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* HEADER / LOGO IMAGE */
header {
    width: 100%;
}

header img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

/* HOURS SECTION */
.hours {
    padding-top: 20px;
    padding-left: 20px;
}

/* LINKS SECTION */
.links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 20px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

.note {
    display: flex;
    flex-direction: column;
    max-width: 420px;
    margin: 0 auto;
    padding-top: 20px;
    text-align: center;
}

/* VIP PAGE */
#subheader {
    max-width: 980px;
    margin: 0 auto;
    padding: 18px 20px 0;
    text-align: left;
}

.back-link {
    display: inline-block;
    margin: 10px 0 14px;
    color: #a14b5a;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 28px;
    letter-spacing: 0.3px;
}

.page-subtitle {
    margin-top: 8px;
    color: #7b4a4a;
}

.vip-wrap {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 20px 30px;
}

.layout {
    margin-top: 10px;
    text-align: left;
}

.layout h2 {
    margin: 18px 0 12px;
}

.layout-img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(161, 75, 90, 0.18);
}

.small-note {
    margin-top: 10px;
    color: #7b4a4a;
    text-align: center;
}

.date-picker {
    margin-top: 22px;
    text-align: left;
}

.date-buttons {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.date-btn {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(161, 75, 90, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: #a14b5a;
    font-weight: 700;
}

.date-btn:disabled {
    opacity: 0.6;
}

.packages {
    margin-top: 26px;
    text-align: left;
}

.packages-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 740px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

.package-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(161, 75, 90, 0.20);
    border-radius: 16px;
    padding: 16px 16px 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.package-card h3 {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 16px;
    color: #6f2f3a;
}

.package-card .price {
    font-size: 18px;
    color: #a14b5a;
    font-weight: 800;
}

.package-card ul {
    margin-top: 10px;
    padding-left: 18px;
    color: #4a2c2a;
}

.package-card li {
    margin: 6px 0;
}

.package-card .tagline {
    margin-top: 12px;
    color: #7b4a4a;
    font-weight: 600;
}

.fineprint-note {
    margin-top: 14px;
    color: #7b4a4a;
    padding-top: 20px;
}

/* BUTTON STYLE — matches soft luxury vibe */
.link-button {
    background: rgba(255, 255, 255, 0.9);
    color: #a14b5a;
    text-decoration: none;
    padding: 16px 22px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(161, 75, 90, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.2s ease;
    width: 100%;
}

.link-button:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* FOOTER */
footer {
    margin-top: auto;
    padding: 20px 16px;
    font-size: 12px;
    color: #7b4a4a;
}

footer a {
    color: #a14b5a;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

address {
    padding: 10px 0px;
}