/**
 * Voelklip Villa - Custom Overrides
 * Additional styles and component tweaks
 */

/* Smooth page transitions */
.site-header {
    will-change: background-color, padding;
}

/* NightsBridge compact mode */
.nightsbridge-wrapper--compact iframe {
    min-height: 400px;
}

/* Pagination styling */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 0.25rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}

.page-numbers:hover,
.page-numbers.current {
    color: var(--bg);
    background-color: var(--champagne);
    border-color: var(--champagne);
}

/* Contact form focus states */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    box-shadow: 0 0 0 2px rgba(203, 187, 160, 0.2);
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-book-bar,
    .menu-toggle {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
