/* --- ALAPOK --- */
body,html{
  margin:0;
  padding:0;
  height:100%;
  overflow-x:hidden;
}

/* Háttér */
.bg-image{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:url('../images/hatterkep.jpg') no-repeat center 75%;
  background-size:cover;
  z-index:-1;
}

/* Wrapper és container */
.wrapper{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.container{
  display:flex;
  gap:30px;
  width:95%;
  max-width:850px;
}

/* Üveglap kártyák */
.glass-card{
  flex:1;
  background:rgba(255,255,255,0.3);
  backdrop-filter:blur(2px);
  border-radius:25px;
  padding:0;
  box-shadow:0 10px 40px rgba(0,0,0,0.25);
  border:1px solid rgba(255,255,255,0.4);
  text-align:center;
  box-sizing:border-box;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* Fejléc szövegek */
h2{
  font-family:'Cormorant Garamond',serif;
  font-size:1.8rem;
  margin:0 0 25px;
  color:#000;
  text-shadow:0 0 10px rgba(255,255,255,0.8);
}

/* Program / menetrend */
.program-item{
  display:flex;
  align-items:center;
  margin-bottom:18px;
  text-align:left;
}

.program-icon{
  font-size:24px;
  margin-right:15px;
}

.time{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  color:#70584c;
  font-size:.8rem;
  display:block;
  letter-spacing:1px;
}

.description{
  font-family:'Cormorant Garamond',serif;
  font-size:1.2rem;
  margin:0;
  line-height:1.2;
  color:#000;
}

/* Visszaszámláló */
.countdown-container{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:10px;
}

.count-box{
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  color:#70584c;
  font-size:1.8rem;
}

.count-box small{
  display:block;
  font-size:.65rem;
  color:#000;
  letter-spacing:1px;
}

/* Itallap */
.drink-menu{
  margin:20px 0;
}

.drink-category{
  margin-bottom:15px;
}

.drink-category h3{
  font-family:'Montserrat',sans-serif;
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#70584c;
  margin-bottom:3px;
}

.drink-category p{
  font-family:'Cormorant Garamond',serif;
  font-size:1.1rem;
  margin:0;
}

/* Divider */
.divider{
  border:0;
  height:1px;
  background-image:linear-gradient(to right,transparent,rgba(112,88,76,0.4),transparent);
  margin:20px auto;
  width:80%;
}

/* Felső kép (bal kártya) */
.card-image-header{
  width:calc(100% + 40px);
  height:300px;
  margin:-20px -20px 20px -20px;
  background:url('../images/img8.JPG') center/cover no-repeat;
  border-radius:25px 25px 0 0;
}

.card-image-bottom{
  width:calc(100% + 45px);
  height:300px;
  margin:20px -25px 0 -25px; /* nincs -20px bottom */
  background:url('../images/img5.JPG') center/cover no-repeat;
  border-radius:0 0 25px 25px;
}





/* Mobil nézet */
@media (max-width:850px){
  .container{
    flex-direction:column;
    align-items:center;
  }
  .glass-card{
    width:100%;
    max-width:400px;
  }
}
