* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

body { 
  font-family: 'Roboto', sans-serif; 
  font-weight: 300; 
  background: #000; 
  color: #eee; 
}

header { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 20px; 
  background: #000; 
  border-bottom: 1px solid #444; 
}

header img { 
  height: 75px; 
}

.container { 
  display: flex; 
  flex-wrap: wrap; 
  max-width: 1200px; 
  margin: 40px auto; 
  gap: 20px; 
  margin: 15px auto;
}

.section { 
  flex: 1 1 45%; 
  background: rgba(255,255,255,0.05); 
  padding: 40px; 
  border-radius: 20px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
  text-align: center; 
  backdrop-filter: blur(5px); 
  transition: transform .3s;
}

.section img { 
  width: 300px; 
  height: 300px; 
  object-fit: cover; 
  border-radius: 10px; 
  margin-bottom: 20px; 
}

.opening-header { 
  text-align: center; 
  padding: 30px 20px; 
  background: rgba(255,255,255,0.05); 
  margin: 20px auto; 
  max-width: 1200px; 
  border-radius: 20px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.5); 
  backdrop-filter: blur(5px); 
  text-decoration: none;
}

.opening-header h1 { 
  font-size: 60px; 
  font-family: 'Roboto Condensed', sans-serif; 
  color: #eee; 
  margin: 0 0 20px 0; 
}

.menu-button { 
  background: rgba(255,255,255,0.1); 
  border: 2px solid #eee; 
  color: #eee; 
  padding: 15px 30px; 
  font-size: 18px; 
  font-family: 'Roboto', sans-serif; 
  border-radius: 10px; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(5px); 
}

.menu-button:hover { 
  background: rgba(255,255,255,0.2); 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(0,0,0,0.3); 
}

h2 { 
  margin-bottom: 15px; 
  font-size: 50px; 
  font-family: 'Roboto Condensed', sans-serif; 
}

p { 
  font-size: 18px; 
  margin: 18px auto;
}

b { 
  font-weight: 600; 
}

a {
  text-decoration: none;
}

@media(max-width:768px) { 
  .section { 
    flex: 1 1 100%; 
  } 
}
