/*
====================================
   HAVANA CLUB - STYLE.CSS
   Stil identic cu Business Solutions
====================================
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
}

/* ==================== HEADER ==================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: #0b0b0b;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==================== MENIU ==================== */
.menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.menu a {
    color: #ddd;
    text-decoration: none;
    font-size: 15.5px;
    transition: all 0.3s;
}

.menu a:hover {
    color: #d4af37;
}

/* Buton MSL Global Business - chenar auriu */
.menu-btn-main {
    background: transparent !important;
    color: #d4af37 !important;
    border: 2px solid #d4af37 !important;
    padding: 10px 26px !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    transition: all 0.3s;
}

.menu-btn-main:hover {
    background: #d4af37 !important;
    color: #000 !important;
}

/* Butoane normale (aurii) */
.menu-btn {
    background: #d4af37 !important;
    color: #000 !important;
    padding: 10px 28px !important;
    border-radius: 6px !important;
    font-weight: bold !important;
    transition: all 0.3s;
}

.menu-btn:hover {
    background: #fff !important;
    transform: translateY(-2px);
}

/* ==================== HERO ==================== */
.hero {
    text-align: center;
    padding: 180px 20px 130px;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 58px;
    color: #d4af37;
    margin-bottom: 15px;
}

.hero p {
    font-size: 24px;
    color: #ddd;
    max-width: 850px;
    margin: 0 auto 35px;
}

/* ==================== BUTON ==================== */
.btn {
    display: inline-block;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 16px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 17px;
    transition: all 0.4s;
}

.btn:hover {
    background: #d4af37;
    color: #000;
    transform: scale(1.05);
}

/* ==================== CARDURI ==================== */
.card {
    background: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* ==================== FOOTER ==================== */
.footer {
    background: #0b0b0b;
    padding: 70px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer p {
    color: #aaa;
    margin-bottom: 8px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .header {
        padding: 18px 30px;
        flex-direction: column;
        gap: 18px;
    }
    
    .menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
body{
  background:#000;
  font-family:Arial, sans-serif;
  color:#fff;
}

.menu-section{
  padding:60px 20px;
}

.container{
  max-width:1200px;
  margin:auto;
}

.menu-title{
  text-align:center;
  margin-bottom:60px;
}

.menu-title h1{
  font-size:48px;
  color:#d4af37;
  margin-bottom:15px;
}

.menu-title p{
  color:#ccc;
  font-size:18px;
}

.menu-category{
  margin-bottom:70px;
}

.menu-category h2{
  color:#d4af37;
  font-size:32px;
  margin-bottom:30px;
  border-bottom:1px solid #d4af37;
  padding-bottom:10px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.menu-card{
  background:#111;
  border:1px solid rgba(212,175,55,0.3);
  border-radius:15px;
  overflow:hidden;
  transition:0.3s;
}

.menu-card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 20px rgba(212,175,55,0.3);
}

.menu-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.menu-card h3{
  color:#d4af37;
  padding:20px 20px 10px;
}

.menu-card p{
  padding:0 20px 20px;
  color:#ccc;
  line-height:1.6;
}
.drink-card {
    background: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    color: #ddd;
    font-size: 17.5px;
    transition: all 0.4s;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drink-card:hover {
    background: #222;
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(212,175,55,0.2);
}
.menu-card {
    background: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: #ddd;
    font-size: 17.5px;
    transition: all 0.4s ease;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card:hover {
    background: #222;
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}