@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* {
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

img {
    width: 100%;
    display: flex;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #18181B;
}

nav {
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    max-width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.link a {
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
    text-decoration: none;
}

.link a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #16a79b;
    transition: all 0.3s ease;
}

.link a:hover::after {
    width: 70%;
}

nav a .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #fff;
    background-color: #18181B;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #16a79b;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 5rem 2rem;
}

.blur {
    position: absolute;
    box-shadow: 0 0 1000px 50px #16a79b;
    z-index: -100;
}

header {
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
}

header .content h4 {
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
}

header .content h1 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 4rem;
}

header .content h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

header .content p {
    margin-bottom: 2rem;
    color: #ccc;
}

header .image {
    position: relative;
}

header .image img {
    max-width: 600px;
    margin: auto;
}

section .header {
    margin-bottom: 1rem;
    color: #fff;
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
}

.features {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.features .card {
    background-color: #27272a;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.features .card:hover {
    background-color: #323232;
    border-color: #fff;
}

.features .card span {
    display: inline-block;
    background-color: #16a79b;
    padding: 2px 9px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    border-radius: 5px;
}

.features .card h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.features .card p {
    color: #ccc;
    margin-bottom: 1rem;
}

.features .card a {
    color: #fff;
    transition: all 0.3s ease;
}

.features .card a:hover {
    color: #16a79b;
}

.sub-header {
    max-width: 600px;
    margin: auto;
    text-align: center;
    color: #ccc;
}

.pricing {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing .card {
    padding: 3rem 2rem;
    background-color: #27272a;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pricing .card:hover {
    background-color: #323232;
    border-color: #fff;
}

.pricing .card .content {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing .card h4 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.pricing .card h3 {
    color: #fff;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: 2px dashed #fff;
}

.pricing .card p {
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing .card p i {
    color: #ccc;
    font-size: 1.2rem;
    margin-right: 0.3rem;
}

.pricing .card button {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.pricing .card button:hover {
    background-color: #16a79b;
    border-color: #16a79b;
}

footer {
    position: relative;
    display: grid;
    grid-template-columns: 400px repeat(3, 1fr);
    gap: 2rem;
}

footer .column .logo {
    max-width: 100px;
    margin-bottom: 2rem;
}

footer .column p {
    color: #ccc;
    margin-bottom: 2rem;
}

footer .column .socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

footer .column .socials a {
    color: #ccc;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 1.25rem;
    border-radius: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

footer .column .socials a:hover {
    color: #fff;
    background-color: #16a79b;
    border-color: #16a79b;
}

footer .column h4 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
}

footer .column>a {
    display: block;
    color: #ccc;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

footer .column>a:hover {
    color: #16a79b;
}

.copyright {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
}

@media (width < 900px) {
    .nav-links {
        display: none;
    }
    header {
        grid-template-columns: repeat(1, 1fr);
    }
    header .image {
        grid-area: 1/1/2/2;
    }
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
    footer {
        grid-template-columns: 1fr 200px;
    }
}

@media (width < 600px) {
    header .image::before {
        display: none;
    }
    .features {
        grid-template-columns: repeat(1, 1fr);
    }
    .pricing {
        grid-template-columns: repeat(1, 1fr);
    }
    footer {
        grid-template-columns: 1fr 150px;
    }
}


/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/

.chefs {
    /* Custom properties */
    --card-radius: 14px;
    --photo-radius: 18px;
    --shadow-color: color-mix(in srgb, var(--default-color), transparent 92%);
    --soft-border: color-mix(in srgb, var(--default-color), transparent 85%);
    --muted-text: color-mix(in srgb, var(--default-color), transparent 40%);
    --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
    --accent-tint: color-mix(in srgb, var(--accent-color), white 85%);
}

.chefs .featured-chef .chef-photo {
    position: relative;
    border-radius: var(--photo-radius);
    overflow: hidden;
    box-shadow: 0 16px 40px var(--shadow-color);
}

.chefs .featured-chef .chef-photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.chefs .featured-chef .chef-photo:hover img {
    transform: scale(1.05);
}

.chefs .featured-chef .chef-photo .badge-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
}

.chefs .featured-chef .chef-photo .badge-overlay .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    color: var(--default-color);
    background: var(--accent-tint);
    border: 1px solid var(--accent-soft);
}

.chefs .featured-chef .chef-photo .badge-overlay .pill i {
    color: var(--accent-color);
}

.chefs .featured-chef .chef-content .topline {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.chefs .featured-chef .chef-content .name {
    margin: 0 0 6px 0;
}

.chefs .featured-chef .chef-content .role {
    margin: 0;
    color: var(--muted-text);
    font-weight: 500;
}

.chefs .featured-chef .chef-content .bio {
    max-width: 56ch;
}

.chefs .featured-chef .chef-content .awards .award-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    color: var(--default-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border: 1px solid var(--accent-soft);
}

.chefs .featured-chef .chef-content .awards .award-badge i {
    color: var(--accent-color);
}

.chefs .featured-chef .chef-content .signature img {
    max-width: 150px;
    opacity: 0.85;
    filter: drop-shadow(0 2px 6px var(--shadow-color));
}

.chefs .team-grid .chef-card {
    background: var(--surface-color);
    border: 1px solid var(--soft-border);
    border-radius: var(--card-radius);
    box-shadow: 0 12px 32px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chefs .team-grid .chef-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px color-mix(in srgb, var(--default-color), transparent 88%);
}

.chefs .team-grid .chef-card .image-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: var(--card-radius);
    border-top-right-radius: var(--card-radius);
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.chefs .team-grid .chef-card .image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

.chefs .team-grid .chef-card .image-wrapper .social {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.chefs .team-grid .chef-card .image-wrapper .social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--background-color);
    color: var(--default-color);
    border: 1px solid var(--soft-border);
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.chefs .team-grid .chef-card .image-wrapper .social a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.chefs .team-grid .chef-card:hover .image-wrapper img {
    transform: scale(1.06);
}

.chefs .team-grid .chef-card:hover .image-wrapper .social {
    opacity: 1;
    transform: translateY(0);
}

.chefs .team-grid .chef-card .content .name {
    margin: 0;
}

.chefs .team-grid .chef-card .content .role {
    color: var(--muted-text);
    font-size: 14px;
    margin-bottom: 8px;
}

.chefs .team-grid .chef-card .content .excerpt {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 12px;
}

.chefs .team-grid .chef-card .content .mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 999px;
    color: var(--default-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    border: 1px solid var(--accent-soft);
}

.chefs .team-grid .chef-card .content .mini-badge i {
    color: var(--accent-color);
}

.chefs .swiper-wrapper {
    height: auto !important;
}

@media (max-width: 768px) {
    .chefs .featured-chef .chef-content .bio {
        max-width: 100%;
    }
    .chefs .team-grid .chef-card .image-wrapper .social a {
        width: 34px;
        height: 34px;
    }
}