* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: cursive; */
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

header {
    display: grid;
    grid-template-columns: .5fr 1fr .5fr;
    /* background-color: rgb(227, 230, 233); */
    gap: 150px;
    font-size: 22px;
    position: sticky;
    box-shadow: 0px 0px 4px grey;
    border-bottom: 5px solid #ff4500;
}


.logo {
    padding-top: 12px;
}


.logo a{
    background-color: #2F4858;
    color: #fff;
    padding: 17px;
text-decoration: none;
font-size: 23px;
font-weight: bolder;
font-family: cursive;
    /* border-bottom: 2px solid #ff4500; */
  border-top-right-radius: 30px;
}


nav ul {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 0.5fr .5fr .5fr .5fr .5fr;
    gap: 40px;
}

nav ul li {
    list-style: none;
    font-size: 23px;
    padding: 10px;
    font-weight: 500;
}

nav ul li a {
    color: #ff4500;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #2F4858;
}

.account_links {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.account_links a {
    color: #2F4858;
    text-decoration: none;
}

.account_links a:hover {
    text-decoration: underline;
    color: #ff4500;
}


.hero {
    height: 85vh;
    background-image: url('../Pictures/heroImage-Home.webp');
    background-size: cover;
    background-position: center;
    margin-top: 5px;
}

.hero .hero_content {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px;
    padding-top: 110px;
    padding-right: 0;
    width: 55em;
}

.hero .hero_content .dataclass {
    text-align: center;
    font-size: 60px;
    color: #376079;
    /* text-shadow: 0 0 2px black; */
    text-shadow: 0 0 4px #fff;
}

.hero .hero_content .dataclass span {
    font-size: 85px;
    color: #ff4500;
    text-shadow: 0 0 8px #2f4858;
}


.hero .hero_content p {
    text-align: center;
    padding-inline: 55px;
    line-height: 1.4em;
    margin-top: 30px;
    font-size: 22px;
    color: #243b49;
}

.hero .hero_content .hero_text {
    margin-top: 0;
    padding-inline: 70px;
}

.hero .hero_content a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #ff4500;
    padding: 10px 40px;
    background-color: #243b49;
    border-radius: 8px;
    margin-top: 11px;
}

.hero .hero_content a:hover {
    border: 2px solid #243b49;
    background-color: #ff4500;
}

.special,
.chefs {
    margin-top: 50px;
}

.special .heading,
.chefs .heading,
.review .heading {
    text-align: center;
    font-family: cursive;
    font-weight: 600;
    font-size: 50px;
    color: #ff4500;
    margin-bottom: 50px;
}

.special_content,
.chef_content,
.testi_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.special_content article,
.chef_content article {
    width: 350px;
    height: 500px;
    border: 2px solid #243b49;
    border-radius: 20px;
    transition: transform 1s ease-in-out, box-shadow 0.5s ease;
}

.special_content article img,
.chef_content article img {
    width: 100%;
    /* border-radius: 20px; */
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    /* opacity: 1.4; */
    height: 300px;
    border-bottom: 2px solid #243b49;
}

.special_content article h2,
.chef_content article h2 {
    margin-top: 20px;
    padding-inline: 20px;
    margin-bottom: 20px;
}

.special_content article:hover,
.chef_content article:hover {
    transform: scale(1.04);
    border: 3px solid #ff4500;
    box-shadow: 0 0 12px grey;
}

.special_content article:hover img,
.chef_content article:hover img {
    border: 3px solid #ff4500;
}

.special_content article p,
.chef_content article p {
    font-size: 20px;
    text-align: justify;
    padding-inline: 20px;
}

.chef3,
.chef6 {
    margin-top: 100px;
}

.chef1,
.chef4 {
    margin-top: -100px;
}

.testi_content article {
    width: 300px;
    height: 380px;
    border: 2px solid #243b49;
    box-shadow: 0 0 6px #243b49;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}

.testi_content article div {
    width: 180px;
    height: 180px;
    margin-top: -100px;
    overflow: hidden;
    border: 3px solid orangered;
    box-shadow: 0 0 6px #ff4500;
    border-radius: 50%;
}


.testi_content article img {
    width: 100%;
    transition: transform 1s ease-in-out;
}

.testi_content article img:hover {
    transform: scale(1.2);
}

.testi_content article h2 {
    font-size: 25px;
    font-weight: 600;
    margin-top: 30px;
}

.testi_content article p {
    padding-inline: 30px;
    text-align: justify;
    line-height: 1.5em;
    margin-top: 20px;
    font-size: 18px;
}


.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
}

.footer-section {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-section h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #ff4500;
}

.footer-section p,
.footer-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ff6600;
}

.footer-bottom {
    padding: 10px;
    background-color: #222;
    margin-top: 20px;
}


.social ul li i {
    font-size: 25px;
    transition: color 0.3s;
}

.social ul li i:hover {
    color: #ff4500;
}


.chef_content article {
    position: relative;
}

.chef_content article .circle {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #222;
    border: 3px solid #ff4500;
    z-index: 1;
    left: 50%;
    top: -20%;
    transform: translateX(-50%);
}

.chef_content article .circle .line {
    height: 96px;
    width: 4px;
    background-color: #222;
    z-index: -1;
    position: absolute;
    left: 40%;
}