@charset "utf-8";

/* ---------------- Global Reset ---------------- */
/* ---------------- Top Menu ---------------- */
.top-menu {
  background: #fff;
  padding: 10px 20px;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px; /* adjust size as needed */
  display: block;
}

.top-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.top-menu li {
  display: inline;
}

.top-menu a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.top-menu a:hover {
  color: #3461ff;
}
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

/* ---------------- Hero Header ---------------- */
.hero-header {
  background: url("../images/header.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
}

.hero-overlay h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-overlay p {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.hero-overlay .cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: #3461ff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* ---------------- Secondary Banner ---------------- */
.banner {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.banner h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.banner p {
  margin: 6px 0;
}

.banner .cta {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background:#3461ff ;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
}

/* ---------------- Chat Banner ---------------- */
.chat-grid {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.chat-grid-item img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  display: block;
}

/* ---------------- Membership Pricing ---------------- */
.pricing {
  text-align: center;
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.pricing p {
  margin: 8px 0;
}

.pricing .cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 20px;
  background: #3461ff;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

/* ---------------- Lifestyle Showcase ---------------- */
.showcase {
  text-align: center;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.showcase h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.image-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.image-row figure {
  width: 300px;
  margin: 0;
  text-align: center;
}

.image-row img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}

.image-row img:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.image-row figcaption {
  margin-top: 12px;
  font-size: 1rem;
  font-style: italic;
  color: #555;
  line-height: 1.4;
}

/* ---------------- Footer ---------------- */
.landing-footer {
  text-align: center;
  padding: 30px 20px;
  background: #f5f5f5;
  color: #333;
  font-size: 0.9rem;
}

.landing-footer a {
  color: #3461ff;
  text-decoration: none;
}

.landing-footer a:hover {
  text-decoration: underline;
}

/* ---------------- Mobile-friendly tweaks ---------------- */
@media (max-width: 768px) {
  .hero-overlay { padding: 20px; }
  .hero-overlay h1 { font-size: 1.5rem; }

  .image-row { flex-direction: column; align-items: center; }
  .image-row figure { width: 90%; max-width: 400px; }
}.final-cta {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;  /* soft light gray */
  color: #333;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .cta {
  display: inline-block;
  padding: 12px 24px;
  background: #3461ff;   /* blue button for contrast */
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
}

.final-cta .cta:hover {
  background: #2548cc;
}/* ---------------- Footer ---------------- */
.site-footer {
  background: #333;          /* dark neutral background */
  color: #fff;               /* white text for contrast */
  padding: 30px 20px;
  text-align: center;
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
  font-weight: 400;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;           /* wraps nicely on mobile */
  gap: 20px;
}

.site-footer .footer-links li {
  display: inline;
}

.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer .footer-links a:hover {
  color: #3461ff;            /* subtle hover highlight */
}