/* Mahalo Travels - Clean Minimal Styles */

:root {
    --primary-color: #FF385C;
    --primary-hover: #E31C5F;
    --text-primary: #222;
    --text-secondary: #717171;
    --border-color: #e9ecef;
    --background: #f7f7f7;
}

/* General */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    min-height: 100vh;
    color: var(--text-primary);
}

main {
    flex: 1;
}

/* Remove default Bootstrap overrides that conflict */
.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 56, 92, 0.1);
}

/* Print Styles */
@media print {
    .navbar, footer, .btn, .modal {
        display: none !important;
    }

    body {
        background: white;
    }

    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e9ecef;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

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