@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 9px;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 5px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    background: #121212;
    color: white;
}

/* Header navbar */
#nav {
    background-color: #000 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    color: #fff;
}

.navbar-brand {
    font-weight: 800;
    color: #fff !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Offcanvas for favourites */
.offcanvas-header {
    background-color: #000 !important;
    color: #fff;
}

#favourites-body {
    background-color: #1a1919;
    color: #fff;
}

/* Header section */
#heading {
    margin-top: 100px;
    text-align: center;
}

#heading h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

/* Search bar */
#search-bar {
    max-width: 600px;
    margin: 20px auto;
}

#search-bar input {
    height: 50px;
    color: #eee;
    background: #000;
    border: 1px solid #333;
    border-radius: 5px;
    padding-left: 15px;
    outline: none;
}

#search-bar input::placeholder {
    color: #888;
}

#search-bar input:focus {
    outline: none;
}

/* Search result text */
#heading-text {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
}

/* Meal Cards */
#card {
    background-color: #000;
    padding: 15px;
    color: white;
    border: 1px solid #090909;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

#card img {
    border-radius: 5px;
    width: 100%;
    height: auto;
}

/* Meal Details */
#meal-details {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    background-color: #2a2a2a;
}

#meal-header {
    width: 70%;
    margin: auto;
}

#meal-thumbail img {
    height: 250px;
    width: 250px;
    border-radius: 5px;
}

#details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

#meal-instruction {
    margin: auto;
    text-align: center;
}

/* Responsive grid spacing for meals */
#main {
    gap: 20px;
}

/* Button styles */
.btn-outline-light {
    border-color: #2d2c2c;
    color: #eee;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}
