* {
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Limelight", sans-serif;
    color: #2d502d;
    background: #fdfdfc;
    line-height: 1.6;
}

h1 {  
        font-family: "Italianno", cursive;
        font-weight: 1000;
        font-style: normal;
        line-height: 1.6;
        font-size: 1500;
        color: #926d43fb;
}

.topbar {
        position: sticky;
        top:0;
        z-index: 10;
        background-color: rgb(250, 243, 224);
        border-bottom: 8px solid #d34d4dfb;
        /* p.ridge {border-style: ridge;} */
}

.container {
        width: min(1100px, 92%);
        margin: 0 auto;
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 800;
    text-decoration: none;
}

nav a {
    text-decoration: none;
    color:rgb(126, 35, 28);
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
}

nav a:hover {
    background-color: #fffcf7;
}

section {
    padding: 3rem 0;
    scroll-margin-top: 4rem;
}

section h2 {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
}

.section-subtitle,
.hero p {
    color:rgb(28, 110, 35);
    margin-bottom: 1rem;
}
.hero h1 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.hero-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.hero-text {
   max-width: 45%;
}

.hero-img {
    /* background: #eb209d; */
    max-width: 45%;
    border: 1px solid #7e1212;
    border-radius: 0.8rem;
    padding: 0.6rem;
}

.hero-img img {
    width: 100%;
    display: block;
    border-radius: 0.5rem;
}

.alt {
    background-color: antiquewhite;
}

.menu-grid {
 display: flex;
 flex-wrap: wrap;
 gap: 1rem;
 align-items: stretch;
 justify-content: center;
}
 .item {
    flex-basis: 360px;
    flex-grow: 1;
    flex-shrink: 1;
    background-color: #fff;
    border:1px solid #e9e9e9 ;
    border-radius:12px ;
    padding: 13px;
 }

 .thumb {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
 }

 .thumb img {
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
 }

 .thumb img:hover {
    transform: scale(1.08) rotate(-1deg);
 }

 .price {
    display:inline-block ;
    background: #1f522e;
    color: #7ac574;
    font-weight: 700;
    padding: 4px 8px 4px 8px;
    border-radius: 8px;
 }

 label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight:500;
 }

 input, textarea {
    font: inherit;
    padding: 13px 14px 13px 14px;
    border: 1.5px solid #14612d;
    border-radius: 10px;
    background-color: #fff;
    outline: none;
 }

 input:focus, textarea:focus {
    border: 2px dotted #000;
    box-shadow: 0px 0px 0px 3px rgba(46, 125, 50, 0.12S);
 }

 .contact-grid > div {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 320px;
    min-width: 520px;
 }

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
   max-width: 520px;
}