@charset "utf-8";

html {
  overflow-x: clip; /* Prevents side scroll without breaking sticky */
  max-width: 100%;
}

body {
  overflow-x: visible;
}
/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: 2.5rem; /* or whatever your base size is */
  line-height: 1.2;
}
/* === GLOBAL BUTTON HIERARCHY === */

/* PRIMARY BUTTON — ORANGE CTA */
.btn-primary {
  background: #ff6b00;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 1rem 2.2rem;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #d65921;
}

/* SECONDARY BUTTON — BLACK INTERNAL NAV */
.btn-secondary {
  background: #111;
  color: white;
  font-weight: 600;
  border: none;
  padding: 1rem 1.8rem;
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: #2a2a2a;
}

/* TERTIARY BUTTON — GHOST/OUTLINE */
.btn-tertiary {
  background: transparent;
  color: #111;
  border: 2px solid #111;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  transition: background 0.2s ease;
}

.btn-tertiary:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
  .btn-primary {
    font-size: 0.8rem;
    padding: 0.7rem 1.2rem;
    width: 100%;
    text-align: center;
  }

  .btn-secondary {
    font-size: 0.8rem;
    padding: 0.65rem 1.1rem;
    width: 100%;
    text-align: center;
  }

  .btn-tertiary {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .btn-primary {
    font-size: 0.9rem;
    padding: 0.85rem 1.5rem;
  }

  .btn-secondary {
    font-size: 0.85rem;
    padding: 0.75rem 1.4rem;
  }

  .btn-tertiary {
    font-size: 0.85rem;
    padding: 0.65rem 1.2rem;
  }
}



/* === SKIP LINK === */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 1rem;
  background: #000;
  color: #fff;
  z-index: 9999;
}



/* === New Footer ===*/

.footer-horizontal {
  background-color: #111;
  color: #ccc;
  padding: 4rem 1rem 2rem;
  border-top: 6px solid #ff6b00;
  font-size: 1rem;
}

.footer-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* === COLUMN STYLING === */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.8rem; /* tighter spacing */
}

.footer-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.5rem;	
}
.footer-col h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b00;
  margin-bottom: 0.5rem;
}

/* === PARAGRAPH SPACING === */
.footer-col p {
  margin: 0 0 0.4rem 0;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* === QUICK LINKS === */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
   font-size: 1.1rem;
}

.footer-links a:hover {
  color: #ff6b00;
}

/* === CONTACT INFO === */
.footer-col a[href^="tel:"],
.footer-col a[href^="mailto:"] {
  color: #ff6b00;
  font-weight: bold;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

/* === GOOGLE MAPS LINK === */
.footer-col a[href*="maps"] {
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a[href*="maps"]:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-grid-3col .footer-col:nth-child(2) {
  align-items: center;
  text-align: center;
}
/* === COPYRIGHT BAR === */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 3rem;
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

@media (max-width: 768px) {
  .footer-grid-3col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    align-items: center;
  }

  .footer-title,
  .footer-col h4 {
    font-size: 1.5rem; /* ↑ from 1.05rem */
    line-height: 1.4;
  }

  .footer-col p,
  .footer-links a {
    font-size: 1.25rem; /* ↑ from 1.1rem base, boost a bit */
  }

  .footer-bottom {
    font-size: 0.95rem;
  }

  .map-container iframe {
    height: 200px; /* optional: more height for tapping map */
  }
}



/* === GLOBAL LIGHTBOX === */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
}

.gallery-card {
  cursor: zoom-in;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    animation: none !important;
    transition: none !important;
  }
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.2s ease;
}
.lightbox-arrow:hover {
  background: rgba(0, 0, 0, 0.6);
}
.lightbox-arrow.prev {
  left: 2rem;
}
.lightbox-arrow.next {
  right: 2rem;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-top: 0.5rem;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

