/* Mother's Hut Technologies - Global Stylesheet
    Theme: Modern Hospitality Tech (Gen Z / Premium App Look)
*/

:root {
    --mh-orange: #ff6b35;
    --mh-orange-grad: linear-gradient(135deg, #ff6b35 0%, #ff9f1c 100%);
    --mh-dark: #1a1a1a;
    --mh-light: #f8f9fa;
    --mh-success: #28a745;
    --mh-gray: #6c757d;
    --radius-lg: 30px;
    --radius-md: 20px;
    --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #ffffff;
    color: var(--mh-dark);
    overflow-x: hidden;
}

/* Typography Enhancements */
.fw-800 { font-weight: 800; }
.text-gradient {
    background: var(--mh-orange-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Styling */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    color: var(--mh-dark) !important;
    padding: 0.5rem 1.2rem !important;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--mh-orange) !important;
}

/* Buttons */
.btn-mh {
    background: var(--mh-orange-grad);
    color: white;
    border: none;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-mh:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
    color: white;
}

.btn-outline-dark {
    border-width: 2px;
    font-weight: 700;
}

/* App-Style Cards */
.card-app {
    border: none;
    border-radius: var(--radius-lg);
    background: var(--mh-light);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.card-app:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: #ffffff;
}

/* Form Styling */
.form-control-lg {
    padding: 15px 25px;
    font-size: 1rem;
    border: 2px solid transparent !important;
    transition: 0.3s;
}

.form-control-lg:focus {
    background: #fff;
    border-color: var(--mh-orange) !important;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.1);
}

/* Success & Error Alerts */
.alert-error {
    background: #fff5f5;
    color: #e53e3e;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-weight: 600;
    border-left: 5px solid #e53e3e;
    display: flex;
    align-items: center;
}

/* Mobile FAB Styling */
.fab-mobile {
    z-index: 1050;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px !important;
    right: 30px !important;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeInUp 0.8s ease-out;
}

/* Custom Icons Boxes */
.iconbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}