﻿/* Set padding to keep content from hitting the edges */
/*.body-content {
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}*/

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
/*.dl-horizontal dt {
    white-space: normal;
}*/

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/
/*    .navIcon {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        transition: 0.2s ease;
    }

    .navIcon img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }*/
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 16px;
}
    .navIcon {
        margin-left: auto;
    }

    .navIcon img {
        width: 26px;
        filter: brightness(0) invert(1);
    }

    .navIcon:hover {
        background: rgba(255,255,255,0.2);
        transform: scale(1.05);
    }

.heroBanner {
    position: relative;
    width: 100%;
    height: 420px;
    background: url('/images/chef.png') center center / cover no-repeat;
    border-radius: 18px;
    overflow: hidden;
}

.heroOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.70) 100%);
}

/* ✅ Instead of centered, pin it to bottom */
.heroContent {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px; /* move down */
    text-align: left; /* not centered */
    color: #fff;
    max-width: 720px;
}

    .heroContent h1 {
        font-size: 44px;
        margin: 0 0 10px 0;
        letter-spacing: -1px;
        line-height: 1.1;
    }

    .heroContent p {
        margin: 0 0 16px 0;
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255,255,255,0.9);
    }

.heroBtn {
    display: inline-block;
    padding: 12px 18px;
    background: #fff;
    color: #111;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

    .heroBtn:hover {
        background: #f2f2f2;
    }

@media (max-width:768px) {
    .heroBanner {
        height: 320px;
    }

    .heroContent {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

        .heroContent h1 {
            font-size: 28px;
        }
}
.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18,18,18,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.3px;
}

.navlinks {
    display: flex;
    gap: 14px;
    margin-left: 10px;
}

.navitem {
    color: rgba(255,255,255,0.80);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 10px;
}

    .navitem:hover {
        color: #fff;
        background: rgba(255,255,255,0.08);
    }

.navcta {
    margin-left: auto;
    text-decoration: none;
    font-weight: 800;
    color: #111;
    background: #fff;
    padding: 10px 14px;
    border-radius: 999px;
}

    .navcta:hover {
        background: #f2f2f2;
    }

@media (max-width:720px) {
    .navlinks {
        display: none;
    }
    /* later we can add a hamburger menu */
}