body {
    margin: 0px , 30px ;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    border-bottom: 1px solid #333;
    background: rgba(0, 0, 0, 0.9);
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: #facc15;
}

.navbar nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: #facc15;
}

.btn {
    background: #facc15;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #eab308;
}

.hero {
    background: url('./Image/clem-onojeghuo-zlABb6Gke24-unsplash.jpg') no-repeat center center/cover ; 
    text-align: center;
    padding: 120px 20px;
}

.hero h3 {
    color: #facc15;
    font-size: 20px;
}

.hero h1 {
    font-size: 48px;
    margin: 20px 0;
}

.hero h1 span {
    color: #facc15;
}

.hero p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ddd;
}

.specials,
.specialities,
.dining-events,
.story {
    text-align: center;
}

.specials h2,
.specialities h2,
.dining-events h2,
.story h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #facc15;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.card img {
    height: 360px;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
}

.events {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.event {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
  
}

.event img {
    width: 100%;
    height: 360px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.story-content p {
    margin-bottom: 20px;
    color: #ccc;
}

.footer {
    text-align: center;
    padding: 50px 20px;
    background: #111;
    border-top: 1px solid #333;
}

.footer p {
    margin: 8px 0;
    color: #aaa;
}