/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffaf6;
  color: #222;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.hero {
  padding-top: 20px;
}
/* Hero Section */
.hero {
  background: url('images/header-bg.jpg') center center/cover no-repeat;
  height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0 , 0.4); /* White overlay */
  z-index: 1;
}

.hero .overlay {
  position: relative;
  z-index: 2;
  padding: 40px;
  text-align: center;
  border-radius: 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
}

.highlight {
  color: #dbb288;
}

.hero .subtitle {
  font-size: 1.8rem;
  font-weight: bold;
}

.hero .desc {
  font-size: 1rem;
  margin-top: 10px;
  color: #eee;
}

/* Cafeteria Section Layout */
.cafes {
  text-align: center;
  padding: 40px 20px;
}

.cafes h2 {
  font-size: 2.2em;
  color: #271d18;
  margin-bottom: 10px;
}

.cafes p {
  font-size: 1em;
  color: #555;
  margin-bottom: 30px;
}

/* Flex container for buttons (cards) */
.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Individual clickable cafe card */
.cafe-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: #ffffff;
  border: 3px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 320px;
  transition: transform 0.3s, border-color 0.3s;
  padding-bottom: 15px;
  color: inherit;
}

.cafe-card:hover {
  transform: translateY(-10px);
}

/* Cafe image */
.cafe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Cafe name */
.cafe-card h2 {
  margin: 15px 0 5px;
  font-size: 1.6em;
  color: #222;
}

/* "View Full Menu" styled as a button */
.cafe-card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e63946;
  color: white;
  text-decoration: none;
  font-size: 1em;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.cafe-card .btn:hover {
  background-color: #c91827;
}

/* Blue and Green borders */
.border-blue {
  border-color: #0077b6;
}

.border-green {
  border-color: #2a9d8f;
}

/* Optional styling for the note below the cards */
.note {
  margin-top: 25px;
  font-size: 0.95em;
  color: #666;
}
/* Animations */
.fade-in {
  animation: fadeIn 1.2s ease-in forwards;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out 0.8s forwards;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .buttons {
    flex-direction: column;
    align-items: center; /* <-- Add this */
    padding: 0 10px;      /* <-- Add padding to prevent edge clipping */
  }

  .cafe-card {
    width: 90%; /* or 100% with some padding */
    max-width: 320px;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  height: 50px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 90px;   /* Increased size */
  height: 90px;
  object-fit: contain;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #30e3ca;
}
/* Info Section (About + Contact) */
.info-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.info-section h2 {
  font-size: 2rem;
  color: #30e3ca;
  margin-bottom: 15px;
}

.info-section p {
  font-size: 1.05rem;
  color: #444;
}

/* Floating Feedback Button */
.feedback-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 15px 25px;
  font-size: 16px;
  background-color:#271d18;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Popup Overlay */
.feedback-popup {
  display: none; /* initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4); /* or rgba(0,0,0,0.5) in second declaration */
  z-index: 999; /* or 1000 */
  justify-content: center;
  align-items: center;
}
/* Popup Box */
.feedback-box {
  background-color: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: relative;
}

.feedback-box h2 {
  margin-top: 0;
  text-align: center;
}

.feedback-box input,
.feedback-box textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
}

.submit-btn {
  background-color: #1e90ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.cancel-btn {
  background-color: #aaa;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #0c75d8;
}

.cancel-btn:hover {
  background-color: #888;
}
 .contact-section {
  background-color: #271d18;
  color: white;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;

}

.contact-section h2 {
  font-size: 2em;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1.1em;
  margin: 6px 0;
  color: #f1f1f1;
}


.ad-billboard {
  max-width: 960px;
  margin: 60px auto 40px;
  padding: 30px 20px;
  background-color: #fff8e1;
  border: 2px dashed #ffb300;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.ad-billboard h2 {
  font-size: 1.6rem;
  color: #ff6f00;
  margin-bottom: 15px;
}

.ad-message {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.ad-message a {
  color: #e65100;
  text-decoration: underline;
}
