* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Boldonse", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --darkRed: #ff0000;
    --orangeDark: #ff7400;
    --midOrange: #ffc100;
    --lightOrange: #FFDBBB;
    --greenPastel: #80EF80;
    --bluePastel: #B3EBF2;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--darkRed);
    color: var(--lightOrange);
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #80EF80;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20 px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.headBox {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2 rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orangeDark);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--orangeDark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--darkRed);
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

nav a:hover {
    color: var(--darkRed);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../bucket/closeHamnChee.jpg);
    background-size: cover;
    opacity: 0.6;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--lightOrange);
    line-height: 1.5;
}

.hero p {
    font-size: 1.5rem;
    color: var(--lightOrange);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
}

.scroll-down i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Sections */

section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--darkRed);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--lightOrange);
    max-width: 600px;
    margin: 0 auto;
}

/* Food Section */

.food {
    background-color: #ff7400;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.food-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bluePastel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.food-item:hover .food-overlay {
    opacity: 1;
}

.food-item:hover img {
    transform: scale(1.1);
}

.food-overlay h3 {
    color: var(--orangeDark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.food-overlay p {
    color: var(--darkRed);
    text-align: center;
    line-height: 1.6;
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-20px);}
    60% {-webkit-transform: translateY(-10px);}
}

/* Vibe Section */

.vibe {
    background-color: var(--bluePastel);
}

.vibe p {
    color: #ff7400;
}

.vibe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vibe-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--darkRed);
}

.vibe-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--orangeDark);
    margin-bottom: 1.5rem;
}

.vibe-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 400px;
    background: linear-gradient(45deg, var(--midOrange), var(--darkRed));
    /* background: url(../bucket/); */
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vibe-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: url(../bucket/butterCrumb.jpg);
    border-radius: 10px;
}

/* Tribe Section */

.tribe {
    background-color: var(--darkRed);
}

.tribe h2 {
    color: var(--midOrange);
}

.tribe p {
    color: var(--bluePastel);
}

.tribe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tribe-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--lightOrange);
}

.tribe-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--greenPastel);
    margin-bottom: 1.5rem;
}

.tribe-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 550px;
    width: 500px;
    background: linear-gradient(45deg, var(--midOrange), var(--darkRed));
    /* background: url(../bucket/chefWill.png); */
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tribe-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: url(../bucket/chefWill.png);
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .vibe-content,
    .tribe-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .vibe-image,
    .tribe-image {
        order: -1;
        height: 450px;
        width: 350px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding: 6rem 1.5rem;
    }
}

@media (max-width: 576px) {

    .headBox {
        max-height: 100px;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 0.7rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        margin-top: 50px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    p,
    h2,
    h3 {
        margin: 10px;
    }
}