:root {
  --primary: #2f8f4e;
  --primary-light: #e8f7ed;
  --accent: #1f4b2f;
  --text: #222222;
  --muted: #666666;
  --bg: #ffffff;
  --border-radius: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* NAVBAR */

header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 10;
}
/* Hide hamburger on desktop */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;              /* hidden by default */
    flex-direction: column;     /* stack links */
    background: white;          /* choose your colour */
    width: 100%;
    padding: 1rem 0;
    position: absolute;
    top: 70px;                  /* height of your navbar */
    left: 0;
    border-top: 1px solid #ddd;
    z-index: 999;
  }

  .nav-links a {
    padding: 1rem;
    text-align: center;
    width: 100%;
    display: block;
  }

  /* When active (JS adds .open) */
  .nav-links.open {
    display: flex;
  }
}

.navbar {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-left a {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps your existing colour */
  display: flex;           /* keeps logo + text aligned */
  align-items: center;
  gap: 0.5rem;             /* spacing between logo + text */
}


.nav-left img {
  height: 40px;
  width: auto;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
}

.nav-links a.nav-cta:hover {
  background: var(--accent);
}

/* HERO SECTION */

.hero {
  background: linear-gradient(135deg, var(--primary-light), #ffffff);
  border-bottom: 1px solid #e0e0e0;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 1.5rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.hero p.lede {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.hero p.subline {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d7e8dd;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image img {
  width: 100%;
  border-radius: 18px;
  border: 3px solid #d7e8dd;
}

/* SECTION BASE */

.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

/* AREA GRID (Areas We Cover section with Google Map) */
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.area-text ul {
  margin-left: 1.2rem;
  margin-top: 0.5rem;
}

.area-text ul li {
  margin-bottom: 4px;
}

.area-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  border: 2px solid #d7e8dd;
}

@media (max-width: 800px) {
  .area-grid {
    grid-template-columns: 1fr;
  }
}


/* CARD GRID */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.card {
  border-radius: var(--border-radius);
  border: 1px solid #e2e2e2;
  padding: 1.25rem;
  background: #ffffff;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

/* TABLES */

.table-wrapper {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}

th {
  background: var(--primary-light);
  color: var(--accent);
  font-weight: 600;
}

/* FORM STYLES */

.booking-warning {
  background: #fff6e5;
  border-left: 4px solid #f0b429;
  padding: 0.75rem 0.9rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin: 0.9rem 0 1rem;
}

form {
  margin-top: 1.25rem;
  max-width: 550px;
}

form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #d4d4d4;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-light);
}

/* NEW ANIMATED CJ'S BUTTON */

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #2f8f4e; /* CJ's green */
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Pop + glow on hover */
.btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 0 14px rgba(47, 143, 78, 0.7);
}

/* Animated outline */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(130deg, #2f8f4e, #49c46f, #2f8f4e);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: borderRotate 3s linear infinite;
}

/* Outline rotation effect */
@keyframes borderRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* FOOTER */

footer {
  border-top: 1px solid #e0e0e0;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.7;
}
/* Contact page layout */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-left,
.contact-right {
  flex: 1;
}

.map-container {
  width: 100%;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

/* Make map and layout sit side by side on larger screens */
@media (min-width: 768px) {
  .contact-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .map-container {
    min-height: 350px;
  }
}

/* Bigger social icons on contact page */
.contact-social {
  margin-top: 2rem;
}

.contact-social h3 {
  margin-bottom: 0.75rem;
}

.contact-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icon-large {
  width: 48px;
  height: 48px;
}

/* RESPONSIVE */

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 1.75rem 1.1rem 2.1rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .nav-links {
    display: none;
  }
}
