body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    font-family: 'Courier New', monospace;
    background-color: #8B5A2B;
}
.hero{
    margin-top: -20px;
}
.header{
    position: fixed;
    margin-top: 20px;
    left: 50%; 
    transform: translateX(-50%);
    height: 90px;
    width: 80%;
    background-color: white;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    margin-top: 40px;
}

.logoimage{
    width: 80px;
    height: 80px;
    margin-left: 30px;
    margin-bottom: 3px; 
}

.navlinks{
    list-style: none;
    display: flex;
    gap: 25px;
}

.navlinks li a {
    text-decoration: none;
    color: #8B5A2B;
    letter-spacing: 1px;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s;
    padding: 10px 15px;
    margin-right: 50px;
    border: 2px solid transparent;  
    transition: border-color 0.3s ease-in;
    border-radius: 200px;
}

.navlinks li a:hover{
    border: 2px solid #8B5A2B;
}


.hero{
    position: relative;
    background: url("image.png") no-repeat center center/cover;
    height: 105vh; 
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    text-align: center;
    
    
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: -1;
}

.title{
    font-size: 60px;
    margin-bottom: 20px;
}

.herodes{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: normal;
}

.read{
    margin-top: 40px;
    border-radius: 200px;
    background-color:#8B5A2B;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    border: 3px solid #8B5A2B;
    transition: all 0.3s ease-in;
    font-size: 15px; 
    font-weight:100;



}
.link-read{
    color: white;
    text-decoration: none;
}

.read:hover{
    background-color: white;
    .link-read{color:#8B5A2B;}
}

section{
    padding: 60px 60px 60px 60px;
}

.abouttitle,
.restitle{
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.des{
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    font-size:18px;
    line-height: 1.4;
    transition: all 0.3s ease-in-out;


}
.divider {
    position: absolute;
    
    width: 100%;
    border: none;
    height: 2px;
    background-color: white;
}


.foot{

    text-align: center;
}
.lists{
    display: grid;
    grid-template-columns: auto auto;

}
.list{
    size: fit-content;
    background-color: white;
    color: black;
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.6;
    margin-right: 10px;
    transition: all 0.3s ease-in-out;
}
.instructions{
    size: fit-content;
    background-color: white;
    color: black;
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1.6;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.des,
.instructions,
.list{
    font-family: 'Roboto', sans-serif;
}
.des:hover,
.instructions:hover,
.list:hover{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
}

.instructions p{
    text-indent: 20px;
    text-align: justify;
}

.cards{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;

}
.card{
    background-color: white;
    color: black;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding: 18px;
    box-sizing: border-box;
}
.card:hover{
    transform: translateY(-5px);
}
.cardimg {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 12px;
}

.card h2,
.card p{
    text-align: center;
}

.buttons{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}



