:root {
    --primary-orange: #ff6b00;
    --secondary-orange: #ff8c42;
    --light-orange: #fff5ee;

    --white: #ffffff;
    --dark-text: #222222;
    --gray-text: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--light-orange);
    color: var(--dark-text);
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background: var(--primary-orange) !important;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .12);
}

.navbar-brand {
    color: white !important;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-link {
    color: white !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffe2cf !important;
}

.dropdown-menu {
    border: none;
    border-radius: 14px;
}

.dropdown-item:hover {
    background: #fff0e6;
}

.logo-img {
    height: 55px;
}

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 107, 0, .18);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card-title {
    font-weight: 700;
}

.food-card,
.restaurant-card,
.dashboard-card {
    height: 100%;
}

.btn-primary,
.btn-success {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-primary:hover,
.btn-success:hover {
    background: #e55f00;
}

.btn-warning {
    background: #ffbc42;
    border: none;
}

.btn-danger {
    border: none;
}

.btn-outline-primary {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

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

.form-control {
    border-radius: 12px;
    border: 2px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 .2rem rgba(255, 107, 0, .2);
}

.analytics-card {
    background:
        linear-gradient(135deg,
            #ff6b00,
            #ff9d4d);

    color: white;
}

.table {
    background: white;
    border-radius: 15px;
}

.table thead {
    background: var(--primary-orange);
    color: white;
}

.badge-status {
    background: var(--primary-orange);
    color: white;

    padding: 8px 14px;

    border-radius: 30px;
}

.checkout-box {
    background: white;

    border-radius: 18px;

    padding: 25px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .08);
}

.order-card {
    border-left: 6px solid var(--primary-orange);
}

.hero-section {
    background:
        linear-gradient(135deg,
            #ff6b00,
            #ff944d);

    color: white;

    border-radius: 24px;

    padding: 60px;
}

.search-box {
    border-radius: 50px;
}

.search-item {
    transition: .35s;
}

.hide-card {
    opacity: 0;

    transform:
        scale(.9);

    display: none;
}

.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background: var(--primary-orange);
}

.border-orange {
    border-color: var(--primary-orange) !important;
}

footer {
    background: white;

    margin-top: 60px;

    padding: 30px;

    text-align: center;

    border-top:
        3px solid var(--primary-orange);
}

/* PROFILE PAGE ONLY */

.profile-container {

    min-height: 85vh;

    display: flex;

    align-items: center;

    justify-content: center;

}

.profile-card {

    width: 100%;

    max-width: 700px;

    padding: 40px;

    background: white;

    border-radius: 25px;

    box-shadow:
        0 12px 35px rgba(255, 107, 0, .15);

}

.profile-card h1 {

    text-align: center;

    margin-bottom: 35px;

    color: var(--primary-orange);

    font-weight: 700;

}

.profile-card p {

    margin-bottom: 18px;

}

.profile-card label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

}

.profile-card input,

.profile-card textarea,

.profile-card select {

    width: 100%;

    padding: 14px;

    border-radius: 12px;

    border: 2px solid #ececec;

}

.profile-card textarea {

    resize: none;

}

.profile-card input:focus,

.profile-card textarea:focus,

.profile-card select:focus {

    border-color: var(--primary-orange);

    box-shadow:
        0 0 0 .2rem rgba(255, 107, 0, .15);

    outline: none;

}

.profile-card .helptext,
.profile-card ul {

    display: none;

}

.profile-card .btn {

    width: 100%;

    height: 54px;

    border-radius: 14px;

    margin-top: 15px;

}