
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Segoe+UI&display=swap');

body {
  background-color: #fff9f3;
  font-family: 'Segoe UI', sans-serif;
  color: #4e342e;
}

h1, .about-title, .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #b23b3b;
}

.navbar {
  background-color: #b23b3b;
}

.navbar a {
  color: white !important;
}

.navbar a:hover {
  color: #ffd28f !important;
  text-decoration: underline;
}

.navbar-brand {
  font-size: 1.8rem;
}

.navbar-nav .nav-item {
  margin-left: 20px;
}

.header {
  background: url('cheesecake-banner.jpg') no-repeat center center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.about-section {
  background-color: #f9f3e5;
  padding: 30px;
  text-align: center;
  margin-top: 20px;
  border-radius: 8px;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  margin: 10px auto;
  background-color: #ffcf66;
}

.about-text {
  font-size: 1.1rem;
  color: #5c3d2e;
}

.flavour-card {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin: 15px;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.flavour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.flavour-image {
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.flavour-image:hover {
  transform: scale(13.05);
}

.flavour-price {
  font-size: 1.5rem;
  color: #b23b3b;
}

.flavour-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5c3d2e;
}

.btn-outline-warning {
  color: #b23b3b;
  border-color: #b23b3b;
}

.btn-outline-warning:hover {
  background-color: #b23b3b;
  color: white;
}
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* dark overlay for readability */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.25rem;
}