@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #FAF8F3;
    color: #2A1D11;
    -webkit-font-smoothing: antialiased;
}

/* Custom Utilities */
.writing-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.15em;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #FAF8F3;
}

::-webkit-scrollbar-thumb {
    background: #D4C299;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B5965A;
}

::selection {
    background: #B5965A;
    color: #fff;
}

/* === Components === */

/* Buttons */
.btn-primary {
    background-color: #B5965A;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: #9C7E45;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(181, 150, 90, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #B5965A;
    color: #B5965A;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background-color: #B5965A;
    color: #ffffff;
}

/* Cards & Layout */
.card-glass {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.08);
}

/* Remove boundaries and use soft shadows for the new UI */
.guest-room-card {
    background: transparent;
    border: none;
}

/* Inputs */
.input-field {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #E5E0D8;
    background-color: transparent;
    transition: all 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
    color: #2A1D11;
}

.input-field:focus {
    outline: none;
    border-bottom-color: #B5965A;
}

/* Utility to remove default styling from selects */
select.input-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B5965A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1em;
}

/* Image Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.8s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}
/* === FullCalendar Customization (Wamodan) === */
.fc-theme-standard .fc-scrollgrid {
    border: none !important;
}
.fc-theme-standard td, .fc-theme-standard th {
    border: none !important;
}
.fc .fc-col-header-cell-cushion {
    font-family: 'Shippori Mincho', serif;
    font-weight: bold;
    color: #2A1D11;
    padding: 8px 0;
}

/* Header Toolbar */
.fc-header-toolbar {
    margin-bottom: 20px !important;
}
.fc-toolbar-title {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    color: #2A1D11;
    font-size: 1.25rem !important;
}
.fc .fc-button-primary {
    background-color: #555 !important;
    border-color: #555 !important;
    border-radius: 4px;
    padding: 4px 8px;
    box-shadow: none !important;
}
.fc .fc-button-primary:hover {
    background-color: #333 !important;
}
.fc .fc-button-primary:focus {
    box-shadow: none !important;
}

/* Fix for arrow icons becoming "x" due to Material Icons conflict */
/* Reset font-family to FullCalendar's default icon font */
.fc .fc-icon {
    font-family: 'fcicons' !important;
    vertical-align: middle;
}
.fc .fc-icon-chevron-left::before {
    content: "‹" !important;
}
.fc .fc-icon-chevron-right::before {
    content: "›" !important;
}

/* Day Cells */
.fc-daygrid-day-number {
    font-family: 'Noto Sans JP', sans-serif;
    color: #555;
    padding: 4px;
    width: 100%;
    text-align: center;
}
.fc-daygrid-day-top {
    flex-direction: column;
    align-items: center;
}

/* Highlight today */
.fc .fc-day-today {
    background-color: transparent !important;
}
.fc .fc-day-today .fc-daygrid-day-number {
    background-color: #B5965A;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    line-height: 20px;
    margin: 4px auto;
    display: inline-block;
}

/* Custom Event Styling (Dots) */
.fc-event {
    background: transparent !important;
    border: none !important;
}
.status-available { background-color: #4CAF50 !important; }
.status-few { background-color: #FFC107 !important; }
.status-full { background-color: #F44336 !important; }
