* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: #fefefe;
  color: #222;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
/*-Brana's code starts here */
.bar-img{
  border-radius: 0px !important;
  box-shadow: none !important;
}
/*Brana's code end here */

.hero {
  position: relative;
  background: url('/image/home_image.jpg') center/cover no-repeat;
  height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #e63946;
  color: white;
  border-radius: 25px;
  transition: background 0.3s;
  font-weight: bold;
}

.btn:hover {
  background: #d62828;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.cocktail-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.card p {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
}

.card:hover {
  transform: translateY(-5px);
}

.cta {
  background: #1d3557;
  color: white;
  padding: 4rem 2rem;
}

.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 2rem 1rem;
}

.footer .socials a {
  margin: 0 1rem;
  color: #e63946;
  font-weight: bold;
}

.menu-image {
img {
  height:100%;
  width: 100%;
}

}
