/* ============================
   Vakantiewoning Perspektiv
   Design System: "The Curated Homestead"
   ============================ */

/* --- Base & Typography --- */
body {
    font-family: 'Inter', sans-serif;
    background-color: #fcf9f4;
    color: #1c1c19;
}

h1, h2, h3, h4, h5, h6, .font-headline {
    font-family: 'Noto Serif', serif;
}

/* --- Color Tokens as Utility Classes --- */
.bg-surface { background-color: #fcf9f4; }
.bg-surface-container-low { background-color: #f6f3ee; }
.bg-surface-container { background-color: #f0ede8; }
.bg-surface-container-high { background-color: #ebe8e3; }
.bg-surface-container-highest { background-color: #e5e2dd; }
.bg-primary { background-color: #765938; }
.bg-secondary-container { background-color: #d9e8c8; }
.bg-tertiary-fixed { background-color: #ffdbd0; }

.text-primary { color: #765938; }
.text-secondary { color: #55624a; }
.text-tertiary { color: #914b33; }
.text-on-primary { color: #ffffff; }
.text-on-surface { color: #1c1c19; }
.text-on-surface-variant { color: #4f453c; }
.text-outline { color: #81756b; }

/* --- Design System Effects --- */
.gradient-primary {
    background: linear-gradient(45deg, #765938, #c19d77);
}

.ambient-shadow {
    box-shadow: 0 4px 24px rgba(28, 28, 25, 0.06);
}

.ghost-border {
    border: 1px solid rgba(210, 196, 184, 0.15);
}

/* --- Font Utilities --- */
.font-headline { font-family: 'Noto Serif', serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* --- Input Styling --- */
.homestead-input {
    border: none;
    border-bottom: 2px solid rgba(210, 196, 184, 0.15);
    background: transparent;
    padding: 0.75rem 0;
    width: 100%;
    transition: border-color 0.3s ease;
}

.homestead-input:focus {
    outline: none;
    border-bottom-color: #765938;
    box-shadow: none;
}

/* --- Button Base --- */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #765938;
    color: #ffffff;
    border-radius: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #765938, #c19d77);
    opacity: 0.9;
}

/* --- Card Base --- */
.card {
    background-color: #e5e2dd;
    border-radius: 0.375rem;
    padding: 2rem;
}

/* --- Amenity Chip --- */
.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #d9e8c8;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: #55624a;
}

/* --- Table Styling --- */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table th {
    text-align: left;
    padding: 1rem;
    font-family: 'Noto Serif', serif;
    color: #765938;
    border-bottom: 2px solid rgba(210, 196, 184, 0.15);
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(210, 196, 184, 0.15);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}
