/* Brand colours and fluid sizing variables */
:root {
  --teal: #0d8f8f;
  --lime: #8fd400;
  --navy: #1a2b4a;
  --white: #ffffff;
  --off-white: #f4f7f6;
  --text: #1e2a3a;
  --text-muted: #5a6578;
  --whatsapp: #25d366;
  --facebook: #1877f2;
  --instagram: #e4405f;
  --shadow: 0 16px 48px rgba(26, 43, 74, 0.14);

  /* Fluid scale — grows on larger screens, stays comfortable on mobile */
  --card-width: clamp(20rem, 22vw + 10rem, 48rem);
  --radius: clamp(12px, 1vw, 20px);
  --space-sm: clamp(0.5rem, 1vw, 0.75rem);
  --space-md: clamp(1rem, 2vw, 1.75rem);
  --space-lg: clamp(1.25rem, 2.5vw, 2.5rem);
  --icon-size: clamp(2.5rem, 3vw + 1rem, 3.75rem);
  --icon-svg: clamp(1.25rem, 1.2vw + 0.75rem, 1.75rem);
}

/* Reset and base page styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  /* Bump base rem on big monitors so all spacing/text scales up */
  font-size: clamp(16px, 0.35vw + 14px, 22px);
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: linear-gradient(160deg, var(--off-white) 0%, rgba(13, 143, 143, 0.08) 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Centred page layout */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

/* Main white card container */
.card {
  width: var(--card-width);
  max-width: 92vw;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Banner image at top of card — links to Facebook */
.banner-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.banner-link:hover .banner {
  opacity: 0.92;
}

.banner {
  width: 100%;
  max-height: clamp(180px, 28vw, 420px);
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.2s;
}

/* Text area below the banner */
.content {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

/* "Page under construction" label */
.construction {
  margin: 0 0 var(--space-sm);
  font-size: clamp(0.75rem, 0.5vw + 0.65rem, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

/* Main call-to-action line */
.tagline {
  margin: 0 0 var(--space-lg);
  font-size: clamp(1.15rem, 1vw + 0.85rem, 1.75rem);
  font-weight: 600;
  color: var(--navy);
}

/* Contact link list */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.55rem, 1vw, 1rem);
}

/* Individual contact button (WhatsApp, email, socials) */
.contact-item {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(0.75rem, 1.2vw + 0.5rem, 1.25rem) clamp(0.85rem, 1.5vw, 1.5rem);
  background: var(--off-white);
  border-radius: clamp(10px, 0.8vw, 14px);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s, box-shadow 0.15s;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 43, 74, 0.1);
}

/* Circular icon on each contact button */
.icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  color: var(--white);
}

.icon svg {
  width: var(--icon-svg);
  height: var(--icon-svg);
}

/* Icon background colours per platform */
.icon-whatsapp {
  background: var(--whatsapp);
}

.icon-email {
  background: var(--teal);
}

.icon-facebook {
  background: var(--facebook);
}

.icon-instagram {
  background: var(--instagram);
}

/* Label + value text beside each icon */
.contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.contact-label {
  font-size: clamp(0.7rem, 0.4vw + 0.6rem, 0.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.contact-value {
  font-size: clamp(0.9rem, 0.6vw + 0.75rem, 1.2rem);
  font-weight: 600;
  color: var(--navy);
  word-break: break-word;
}

/* Footer below the card */
.footer {
  margin-top: var(--space-md);
  font-size: clamp(0.8rem, 0.4vw + 0.7rem, 1rem);
  color: var(--text-muted);
}

.footer p {
  margin: 0;
}
