.logo a {
    display: inline-block;
    position: relative;
    color: var(--color-white);
    text-decoration: none;
    background: linear-gradient(to right, var(--color-white) 50%, var(--color-yellow) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background-position 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: 200% 100%;
    background-position: left;
}

.logo a:hover {
    background: linear-gradient(to right, var(--color-yellow) 50%, var(--color-white) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-position: right;
}


/* about section */
.about-us {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 13rem 2rem;
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: url('../images/about-background-burgers-with-beef-and-sauces.jpg') center/cover no-repeat;
}
.about-us::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: rgba(0,0,0,0.65);
    z-index: 0;
}
.about-image,
.about-content {
    position: relative;
    z-index: 1;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 320px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    object-fit: cover;
}

.about-content {
    max-width: 600px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.about-content hr {
    border: none;
    border-top: 3px solid var(--color-yellow);
    width: 60px;
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: center;
}



/* message from owner section */
.message-from-owner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.message-from-owner img:first-of-type {
    width: 520px;
    height: 520px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-bottom: 1.5rem;
}

.message-from-owner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.message-from-owner hr {
    border: none;
    border-top: 3px solid var(--color-yellow);
    width: 60px;
    margin: 0.5rem 0 1.5rem 0;
    border-radius: 2px;
}

.message-from-owner p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.message-from-owner img:last-of-type {
    width: 100px;
    height: auto;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.message-from-owner h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}


/* statistics section */
.statistics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem auto 0 auto;
    max-width: 900px;
}

.stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    padding: 2rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
}



.stats i {
    font-size: 2.2rem;
    color: var(--color-yellow);
    margin-bottom: 0.7rem;
}

.stat-number {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.stats p {
    font-size: 1rem;
    color: var(--color-gray);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.5px;
}



/* team section */
.team {
    max-width: 1000px;
    margin: 4rem auto 0 auto;
    padding: 3rem 2rem;
    background: var(--color-black);
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    text-align: center;
}

.team h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.team hr {
    border: none;
    border-top: 3px solid var(--color-yellow);
    width: 60px;
    margin: 1.5rem auto 1.5rem auto;
    border-radius: 2px;
    display: block;
}

.team p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.card-team {
    position: relative;
    width: 240px;
    height: 340px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.card-team::before {
    content: '';
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    z-index: 1;
    transition: filter 0.3s;
    filter: brightness(0.85);
}

.card-team:nth-child(1)::before {
    background-image: url('../images/chef-posing-3.jpg');
}
.card-team:nth-child(2)::before {
    background-image: url('../images/chef-posing-2.jpg');
}
.card-team:nth-child(3)::before {
    background-image: url('../images/chef-posing-1.jpg');
}

.card-team:hover::before {
    filter: brightness(0.45) blur(1px);
}

.card-team h3,
.card-team p,
.card-team .team-social {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s, transform 0.3s;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    pointer-events: none;
}

.card-team h3 {
    top: 40%;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(20px);
}

.card-team p {
    top: 52%;
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateY(20px);
}

.card-team .team-social {
    bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.3rem;
    transform: translateY(20px);
}

.card-team:hover h3,
.card-team:hover p,
.card-team:hover .team-social {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.card-team:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

.card-team .team-social a {
    color: var(--color-yellow);
    background: rgba(0,0,0,0.18);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.card-team .team-social a:hover {
    background: var(--color-yellow);
    color: var(--color-white);
}