/*! Modern Chic Theme - Minimal & Sophisticated */

:root {
    /* Monochrome with accent */
    --primary: 0 0% 8%;            /* Almost black */
    --primary-hover: 0 0% 15%;
    --secondary: 0 0% 25%;
    --accent: 280 100% 65%;        /* Electric purple accent */
    --accent-hover: 280 100% 55%;
    --background: 0 0% 100%;       /* Pure white */
    --surface: 0 0% 100%;
    --surface-alt: 0 0% 97%;
    --text: 0 0% 10%;
    --text-light: 0 0% 40%;
    --border: 0 0% 92%;
    --border-light: 0 0% 95%;
    --success: 150 60% 95%;
    --radius: 0px;                 /* Sharp corners */
    --shadow: none;
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.08);
}

/* Alias the shared --airbnb-* tokens to modern palette so shared markup renders correctly */
:root {
    --airbnb-primary: var(--primary);
    --airbnb-primary-dark: var(--primary-hover);
    --airbnb-background: var(--background);
    --airbnb-background-secondary: var(--surface-alt);
    --airbnb-text: var(--text);
    --airbnb-text-light: var(--text-light);
    --airbnb-border: var(--border);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.5;
    color: hsl(var(--text));
    background-color: hsl(var(--background));
    letter-spacing: -0.2px;
}

/* Buttons */
.themed_button {
    background-color: hsl(var(--airbnb-primary));
    color: hsl(var(--airbnb-background));
    border: 1px solid hsl(var(--airbnb-primary));
    transition: all 0.2s;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 400;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
}

.themed_button:hover {
    background-color: hsl(var(--airbnb-primary-dark));
    border-color: hsl(var(--airbnb-primary-dark));
}

.themed_button:disabled {
    background-color: hsl(var(--airbnb-background-secondary));
    border-color: hsl(var(--airbnb-border));
    color: hsl(var(--airbnb-text-light));
    cursor: not-allowed;
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid hsl(var(--airbnb-border));
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: hsl(var(--airbnb-primary));
    box-shadow: 0 0 0 3px hsla(var(--airbnb-primary) / 0.08);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: hsl(var(--airbnb-text));
    font-size: 14px;
}

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

/* Summary Box */
.summary-box {
    background: hsl(var(--airbnb-background));
    border: 1px solid hsl(var(--airbnb-border));
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: hsl(var(--airbnb-text));
}

.summary-row { display:flex; justify-content:space-between; margin-bottom:.5rem; font-size:.95rem; }
.summary-label { color: hsl(var(--airbnb-text-light)); }
.summary-value { color: hsl(var(--airbnb-text)); font-weight:500; }

/* Warning Box */
.warning-box {
    background: hsl(var(--airbnb-background-secondary));
    border-left: 3px solid hsl(var(--airbnb-primary));
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: hsl(var(--airbnb-text));
}

/* Time Slots */
.time-slot {
    border: 1px solid hsl(var(--airbnb-border));
    border-radius: var(--radius);
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: hsl(var(--airbnb-background));
    text-align: center;
}

.time-slot:hover:not(.booked):not(.pending) {
    border-color: hsl(var(--airbnb-primary));
}

.time-slot.booked { opacity: 0.5; cursor: not-allowed; }
.time-slot.pending { border-style: dashed; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 200;
    letter-spacing: -0.5px;
}

/* Header */
.header {
    background: hsl(var(--background));
    border-bottom: 1px solid hsl(var(--primary));
    height: 60px;
}

.logo {
    color: hsl(var(--primary));
    font-weight: 200;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-icon {
    background: hsl(var(--primary));
    color: hsl(var(--background));
    border-radius: 0;
    width: 35px;
    height: 35px;
    font-weight: 100;
}

/* Cards & Containers */
.shoot-card {
    background: hsl(var(--surface));
    border: 1px solid hsl(var(--primary));
    border-radius: var(--radius);
    position: relative;
    overflow: visible;
}

.shoot-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: hsl(var(--accent));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.shoot-card:hover {
    border-color: hsl(var(--accent));
    box-shadow: var(--shadow-hover);
}

.shoot-card:hover::before {
    opacity: 0.1;
}

.shoot-image {
    background: hsl(var(--primary));
    position: relative;
    overflow: hidden;
}

.shoot-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, hsl(var(--accent)), transparent);
    opacity: 0.3;
}

.shoot-name {
    color: hsl(var(--primary));
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.shoot-description {
    color: hsl(var(--text-light));
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.6;
}

.shoot-availability {
    background: hsl(var(--surface-alt));
    color: hsl(var(--text-light));
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.detail-item {
    color: hsl(var(--text-light));
    font-weight: 400;
}

/* Buttons */
.book-button {
    background: hsl(var(--primary));
    color: hsl(var(--background));
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.book-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: hsl(var(--accent));
    transition: left 0.3s ease;
}

.book-button:hover::before {
    left: 0;
}

.book-button span {
    position: relative;
    z-index: 1;
}

/* Badges */
.badge {
    background: transparent;
    color: hsl(var(--accent));
    border: 1px solid hsl(var(--accent));
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.375rem 1rem;
}

.instant-badge {
    background: hsl(var(--accent));
    color: hsl(var(--background));
    font-weight: 500;
}

/* Page Headers */
.page-title {
    color: hsl(var(--primary));
    font-weight: 100;
    font-size: 3rem;
    letter-spacing: -1px;
}

.page-subtitle {
    color: hsl(var(--text-light));
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
}

/* Section Headers */
.section-title {
    color: hsl(var(--primary));
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header {
    border-bottom: 1px solid hsl(var(--primary));
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: hsl(var(--accent));
}

/* Gallery */
.gallery-grid {
    border-radius: var(--radius);
    gap: 2px;
}

.gallery-placeholder {
    background: hsl(var(--surface-alt));
    color: hsl(var(--text-light));
    border: 1px solid hsl(var(--border));
}

/* Shoot Details */
.shoot-header {
    border-bottom: 1px solid hsl(var(--primary));
}

.shoot-title {
    color: hsl(var(--primary));
    font-weight: 100;
    font-size: 3rem;
}

.shoot-meta {
    color: hsl(var(--text-light));
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.meta-item {
    color: hsl(var(--text-light));
}

/* Booking Card */
.airbnb-card {
    background: hsl(var(--surface));
    border: 1px solid hsl(var(--primary));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    border: none;
    border-bottom: 1px solid hsl(var(--primary));
    border-radius: 0;
    padding: 0.75rem 0;
    background: transparent;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: hsl(var(--accent));
}

/* Modal */
.modal-content {
    border-radius: var(--radius);
    border: 1px solid hsl(var(--primary));
}

.modal-header {
    border-bottom: 1px solid hsl(var(--primary));
    background: hsl(var(--surface-alt));
}

.modal-title {
    color: hsl(var(--primary));
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--primary));
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 100;
}

.modal-close:hover {
    color: hsl(var(--accent));
}

/* Empty State */
.empty-state {
    color: hsl(var(--text-light));
    font-weight: 300;
}

.empty-icon {
    font-weight: 100;
    opacity: 0.3;
}

/* Reserve Button */
.reserve-button {
    background: hsl(var(--primary));
    color: hsl(var(--background));
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.reserve-button:hover {
    background: hsl(var(--accent));
}

/* Time Slots */
.time-slot {
    border: 1px solid hsl(var(--primary));
    border-radius: var(--radius);
}

.time-slot:hover {
    border-color: hsl(var(--accent));
    background: hsla(var(--accent), 0.05);
}

.time-slot.selected {
    background: hsl(var(--accent));
    border-color: hsl(var(--accent));
    color: hsl(var(--background));
}
