/* ===========================
File: css/cafe.css
Cafe page-specific styling.
Keeps your main theme and adds modern, premium cafe layout.
=========================== */

/* Hero */
.cafe-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url("../img/cafe1.jpg") center/cover no-repeat;
}

.cafe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 53, 56, 0.88) 0%, rgba(24, 29, 56, 0.55) 55%, rgba(24, 29, 56, 0.25) 100%);
}

.cafe-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* Feature cards */
.cafe-feature-card {
  background: #fff;
  border: 1px solid rgba(24, 29, 56, 0.08);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  transition: .35s;
}

.cafe-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(24, 29, 56, 0.12);
}

.cafe-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 187, 204, 0.12);
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

/* Menu section background */
.cafe-menu {
  background: linear-gradient(180deg, rgba(240, 251, 252, 0.9) 0%, rgba(240, 251, 252, 0.6) 100%);
}

/* Menu cards */
.cafe-menu-card {
  background: #fff;
  border: 1px solid rgba(24, 29, 56, 0.08);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: .35s;
}

.cafe-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(24, 29, 56, 0.12);
}

.cafe-menu-card-head {
  padding: 18px 18px 14px 18px;
  border-bottom: 1px solid rgba(24, 29, 56, 0.06);
  background: rgba(6, 187, 204, 0.06);
}

.cafe-menu-list {
  list-style: none;
  padding: 16px 18px;
  margin: 0;
}

.cafe-menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(24, 29, 56, 0.12);
  color: #2b2f3a;
  font-weight: 600;
}

.cafe-menu-list li:last-child {
  border-bottom: none;
}

.cafe-menu-note {
  font-weight: 500;
  color: rgba(24, 29, 56, 0.65);
  font-size: 13px;
}

.cafe-menu-note {
  font-weight: 800;
  color: var(--dark);
}

/* CTA bar */
.cafe-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(24, 29, 56, 0.08);
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 768px) {
  .cafe-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Location info list */
.cafe-info-list {
  display: grid;
  gap: 10px;
}

.cafe-info-list a {
  color: inherit;
  text-decoration: none;
}

.cafe-info-list a:hover {
  color: var(--primary);
}

/* Photo card */
.cafe-photo {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(24, 29, 56, 0.08);
  box-shadow: 0 18px 40px rgba(24, 29, 56, 0.10);
  min-height: 420px;
}

.cafe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .cafe-hero {
    min-height: 460px;
  }
}
