* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

body {
  font-family: 'Montserrat', sans-serif;
}

#HomeTitle {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  color: #000000;
  letter-spacing: 1px;
  line-height: 0.8;
  margin-top: 15px;
  padding: 15px;
  text-align: center;
  width: 100%;
}

#square-dot {
  font-size: 0.3em;
  margin-left: 0.2em;
  color: #c8362b;
}

.custom-navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-link {
  color: #59A89B;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: color 0.3s ease;
  padding-left: 5px;
}

.nav-link-con {
  width: 100%;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}

.nav-link-con a {
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  padding: 0 10px;
}

.nav-link:hover {
  color: #eab115;
}

@media (max-width: 767.98px) {
 #HomeTitle {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 0px;
}
}

.hero-banner {
  height: 45vh;
  width: 100%;
  background-image: url('Images/CafeImageTeam.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: white;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.about-section {
  background-color: #fdfdfd;
}

.about-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-card .card-title {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.about-card .card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}



.menu-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.menu-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
}

.menu-card .card-title {
  font-weight: 600;
  font-size: 1.1rem;
}

.menu-card .card-text {
  font-size: 0.95rem;
  color: #444;
}

.short-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.short-page main {
  flex: 1;
}

.outdoor-img {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

.red-dash {
  color: #c8362b;
}

#dog-img-1,
#dog-img-2,
#dog-img-3,
#dog-img-4,
#dog-img-5 {
  height: 250px;
  object-fit: cover;
  width: 100%;
}