#intro {
	text-align: center;
	font-size: 0.85rem;
}

#calendar {
    background-color: transparent;
    margin-top: 10px;
    margin-bottom: 0;
}

.form-container {
    background-color: transparent;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding-top: 80px;
    box-sizing: border-box;
    /* Masqué par défaut tant que les dates ne sont pas sélectionnées */
    display: none; 
}

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

.booking-detail {
	 background-color: #f3f4f6;
	 padding: 15px;
	 border-radius: 0.5rem;
	 border: 1px solid #d1d5db;	
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #374151;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226,108,90,0.3);
}

.radio-group {
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    box-sizing: border-box;
}

.radio-item.first {
	border-radius: 0.5rem 0.5rem 0 0;
}

.radio-item.last {
	border-radius: 0 0 0.5rem 0.5rem;
	border-top: none;
}

.radio-item input {
	display: inline-flex;
	align-items: center;
	width: 18px;
    height: 18px;
    accent-color: #e26c5a;
}

.radio-item label {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
}

span.required {
    display: inline-block;
    width: 1em;
    height: 1em;
    align-items: center;
    background-color: rgba(226,108,90, 1);
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='512' height='512'%3E%3Cpath fill='black' fill-rule='evenodd' d='m295.481 362.666l46.268-33.246l-54.303-60.676l81.178-15.792l-16.901-54.303l-77.021 34.078l9.42-83.394h-56.52l9.42 83.394L160 198.649l-16.623 54.303l80.9 15.792l-54.303 60.676l46.546 33.246l39.342-72.034z'/%3E%3C/svg%3E");
}

/* Tableau de détail de prix */
.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table td {
    padding: 2px 0;
    font-size: 0.95rem;
    color: #374151;
    text-align: left;
}

.price-table td.amount {
    text-align: right;
}

.price-table tr.total-row {
    border-top: 2px solid #9ca3af;
    font-weight: bold;
    font-size: 1.1rem;
    color: #1f2937;
}

.price-table tr.discount-row {
    color: #059669;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #4b5563;
    margin-top: 25px;
}

.checkbox-group input {
	width: 18px;
	height: 18px;
    margin-top: 2px;
    accent-color: #e26c5a;
}

.required-note {
    font-size: 0.8rem;
    color: rgb(226,108,90);
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    background-color: #e26c5a;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #cc3a24;
}

textarea {
    resize: vertical;
}

/* Message de confirmation d'envoi */
#confirmation-message {
    display: none;
    background-color: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 30px 0;
}

/* Message de confirmation d'envoi */
#error-message {
    display: none;
    background-color: rgba(255,0,0,0.1);
    border: 2px solid rgba(255,0,0,1);
    color: rgba(255,0,0,1);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 30px 0;
}
/* Calendrier FullCalendar */
:root {
	--fc-small-font-size: 0.85em;
    --fc-button-text-color: #9f2b19;
    --fc-highlight-color: rgba(226,108,90, 0.15);
    --fc-button-bg-color: transparent;
    --fc-button-border-color: transparent;
    --fc-button-hover-bg-color: transparent;
    --fc-button-hover-border-color: rgba(226,108,90, 0.3);
    --fc-button-active-bg-color: rgba(226,108,90, 0.3);
    --fc-button-active-border-color: transparent;
    --fc-bg-event-opacity: 0.5;
}
.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 0.5em;
}
.fc .fc-toolbar-title {
    font-size: 1em;
}
.fc .fc-button {
    background-color: transparent;
    border: none;
}
.fc .fc-button-primary:hover, .fc .fc-button-primary:focus {
    background-color: transparent;
    border: none;
    box-shadow: none !important;
}
.fc table {
    font-size: 0.85em;
}
.fc .fc-daygrid-day-number {
    font-size: 1.2em;
}
.fc .fc-day-past, fc-day fc-day-future fc-daygrid-day {
	background-color: var(--fc-neutral-bg-color);
	opacity: var(--fc-bg-event-opacity);	
}
.fc .fc-bg-event .fc-event-title {
    text-align: center;
    margin-top: 2.7em;
}
.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
    margin-bottom: 0;
}
.fc .fc-daygrid-day.fc-day-today {
	box-shadow: 0 0 0 1px inset;
}