:root {
  --bg: #FAF8F5;
  --bg-alt: #F2EFEB;
  --primary: #2F2F2F;
  --primary-soft: #6A6A6A;
  --accent: #D8C7A1;
  --text: #2A2522;
  --muted: #7C736C;
  --card: #FFFFFF;
  --border: #E5DED7;
  --link: #3A3734;
}


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

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

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

a:hover {
  text-decoration: none;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo{
	width:200px;
	height:auto;
}
.spotlight{
	width:250px;
	height:auto;
	border-radius: 20px;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin-top:40px;
  margin-left:auto;
  margin-right:auto;
  overflow: hidden;
  border-radius: 30px 30px 30px 30px; /* top-left, top-right, bottom-right, bottom-left */
  border: 1px solid #ddd;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-note{
	text-align:justify;
	font-weight:575;
	font-size:1em;
	padding-top:10px;
	padding-bottom:20px;
	padding-left:30px;
	padding-right:30px;
}
.map-note-thmb{
	max-width:200px;
	float:left;
	padding:15px;
	border-radius:25px;
}

.map-note-thmb-item {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

.map-note-thmb-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.map-note-thmb-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}



.center{
	margin-left:auto;
	margin-right:auto;
	text-align:center;
}

/* Base nav layout */
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hide menu by default on mobile */
.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #E5E5E5;
  padding: 1rem 0;
}

.nav-links a {
  padding: 0.75rem 1rem;
  color: #1A1A1A;
  font-size: 1rem;
}

/* Hamburger button */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: 0.3s ease;
}

/* When menu is open */
.nav.open .nav-links {
  display: flex;
}

/* Desktop view */
@media (min-width: 800px) {
  .hamburger {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
  }
  .nav-links a {
    margin-left: 1rem;
    padding: 0;
  }
}



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

.nav-brand {
  font-weight: 600;
  font-size:.8em;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.nav-links a {
  margin-left: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--primary);
  text-decoration: none;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  min-height:600px;
}

section {
  margin-bottom: 2.5rem;
}

section h1,
section h2 {
  color: var(--primary);
}

section h1 {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

section h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

section p {
  margin-bottom: 0.75rem;
  font-size: 0.96rem;
}

/* Remove underline globally */
a:hover {
  text-decoration: none !important;
}

/* Primary Button – Clean, Rounded, Stable */
.btn-primary {
  display: inline-block;
  background: #1A1A1A;       /* Charcoal */
  color: #FFFFFF;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;        /* Rounded corners */
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #1A1A1A;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-primary:hover {
  background: #000000;       /* Slightly darker */
  color: #FFFFFF;
}

/* Outline Button – Clean, Rounded, Stable */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #1A1A1A;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;        /* Rounded corners */
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid #1A1A1A;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: #1A1A1A;
  color: #FFFFFF;
}



.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  background:#ffffff;
  padding:40px;
  border-radius:20px;
  border: 1px solid var(--border);
}

.hero-badge {
  align-items: center;
  color: var(--primary);
  padding: 0.50rem 0.75rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  border:1px solid var(--border);
  background:linear-gradient(90deg,rgba(238, 227, 182, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(238, 227, 182, 1) 100%);
}

.hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.hero-sub {
  font-size: 0.98rem;
  color:#222222;
  margin-bottom: 1rem;
}

.hero-list {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.hero-list li::before {
  content: "• ";
  color: var(--accent);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero-phone {
  font-size: 0.95rem;
  color: var(--muted);
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  padding-top:5px;
}

.hero-phone strong {
  color: var(--primary);
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.hero-image {
  background:linear-gradient(90deg,rgba(238, 227, 182, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(238, 227, 182, 1) 100%);
  border-radius: 18px;
  min-height: 260px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-card {
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 18px 40px rgba(80, 50, 30, 0.18);
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.hero-card p {
  font-size: 0.9rem;
  color:#000000;
  margin-bottom: 0.75rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.hero-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #eee3b6;
  color: #000000;
}

.hero-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-label strong {
  color: var(--primary);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.card p,
.card ul {
  font-size: 0.9rem;
  color: var(--muted);
}

.card ul {
  padding-left: 1.1rem;
}

.pill {
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background:linear-gradient(90deg,rgba(238, 227, 182, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(238, 227, 182, 1) 100%);
  color: var(--primary);
  margin-bottom: 0.4rem;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  text-transform:uppercase;
  font-weight:700;
}

.cta {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background:linear-gradient(90deg,rgba(238, 227, 182, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(238, 227, 182, 1) 100%);
  border-radius: 18px;
  border: 1px solid var(--border);
}

.cta h2 {
  margin-bottom: 0.5rem;
}

.cta p {
  margin-bottom: 1rem;
  color:#000000;
}

footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  background:linear-gradient(90deg,rgba(238, 227, 182, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(238, 227, 182, 1) 100%);
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  background:linear-gradient(90deg,rgba(238, 227, 182, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(238, 227, 182, 1) 100%);
  padding:20px;
  border-radius:20px;
}

.gallery-item {
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.caption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #000000 !important;
  background: #fff;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

/* Lightbox */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-height: 80vh; /* keeps image inside screen */
  width: auto;
  height: auto;
  display:block;
  border-radius:15px 15px 0 0;
}


.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  top: 10%;
  right: 0;
  transform: translateY(0);
}

.lightbox-prev {
  left: -46px;
}

.lightbox-next {
  right: -46px;
}

.lightbox-caption {
  color: #000000;
  background:#ffffff;
  font-size: 1rem;
  text-align: center;
  padding-top: 15px;
  padding-bottom:15px;
  margin-top:0;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  max-width: 100%;
  line-height: 1.4;
  opacity: 0.9;
}



/* Flyer */

.flyer {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 50px;
  border: 1px solid var(--border);
  padding: 1.5rem 1.75rem;
}

.flyer-header {
  text-align: center;
  margin-bottom: 1rem;
}

.flyer-header h1 {
  font-size: 1.8rem;
}

.flyer-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.flyer-photo {
  background: radial-gradient(circle at top left, #ffffff, #eee3b6);
  border-radius: 20px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.flyer-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.flyer-section ul {
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.flyer-contact {
  margin-top: 1rem;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
  font-size: 0.95rem;
  color: var(--primary);
}

@media print {
  header,
  footer {
    display: none;
  }
  body {
    background: #fff;
  }
  .flyer {
    border: none;
    box-shadow: none;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .flyer-grid {
    grid-template-columns: 1fr;
  }
 //* 
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .lightbox-prev {
    left: 4px;
  }
  .lightbox-next {
    right: 4px;
  }
}
*//


