*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Yu Gothic","Hiragino Sans",sans-serif;
    color:#333;
    line-height:1.8;
    background:#faf8f5;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

.hero{
    position:relative;
}

.hero img{
    width:100%;
    height:80vh;
    object-fit:cover;
    display:block;
}

.hero-text{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    text-shadow:2px 2px 10px rgba(0,0,0,0.8);

    background:rgba(0,0,0,0.45);
    padding:30px;
    border-radius:15px;
}

.hero-text h1{
    font-size:3rem;
    color:white;
    margin-bottom:10px;
}

.hero-text h2{
    font-size:2rem;
    margin-bottom:20px;
    color:white;
}

.btn{
    display:inline-block;
    padding:15px 30px;
    background:#b22222;
    color:white;
    text-decoration:none;
    border-radius:5px;
    margin-top:20px;
    font-weight:bold;
}

.btn:hover{
    background:#8b0000;
}

section{
    padding:70px 0;
}

section h2{
    text-align:center;
    margin-bottom:30px;
    color:#7a5326;
    font-size:2rem;
}

.about img,
.menu img,
.takeout img,
.access img{
    width:100%;
    border-radius:10px;
    margin-bottom:20px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.grid div{
    background:white;
    padding:20px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.menu-card{
    background:white;
    padding:20px;
    margin-bottom:30px;
    border-radius:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
}

.access p,
.about p,
.takeout p{
    margin-bottom:15px;
}

footer{
    background:#333;
    color:white;
    text-align:center;
    padding:40px 20px;
}

footer a{
    color:#fff;
}

@media(max-width:768px){

.hero img{
    height:60vh;
}

.hero-text{
    width:90%;
    padding:20px;
}

.hero-text h1{
    font-size:2rem;
}

.hero-text h2{
    font-size:1.3rem;
}

section h2{
    font-size:1.5rem;
}

}
.insta-btn{
    display:inline-block;
    margin-top:15px;
    padding:15px 30px;
    background:#E1306C;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.insta-btn:hover{
    opacity:0.9;
}
