
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
header {
    background: #4CAF50;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 60px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin-left: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    background: url('../images/hero.jpg') center/cover no-repeat;
    text-align: center;
    color: white;
    padding: 8rem 2rem;
}
.hero h1 {
    font-size: 2.75rem;
}
.hero p {
    font-size: 1.25rem;
}
.cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: #4CAF50;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
}
.service-section {
    background: #fff8e1;
    padding: 4rem 2rem;
    text-align: center;
}
.service-columns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}
.service-column {
    max-width: 300px;
}
.service-column ul {
    list-style: none;
    padding: 0;
}
.service-column ul li {
    font-weight: bold;
    padding: 0.35rem 0;
    font-size: 1.15rem;
}
#quote {
    background: #e8f5e9;
    padding: 4rem 1rem;
    text-align: center;
}
form input, form textarea {
    width: 100%;
    max-width: 700px;
    padding: 0.75rem;
    font-size: 1rem;
    box-sizing: border-box;
}
h1, h2 {
    font-size: 2.25rem;
}
#about p {
    margin-left: 2in;
    margin-right: 2in;
    text-align: center;
}

.service-card {
    width: 300px;
    height: 300px;
    border-radius: 30px;
    padding: 1rem;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 0 12px rgba(0,0,0,0.3);
    color: white;
    text-align: center;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: 30px;
    background: rgba(0,0,0,0.4);
    z-index: 0;
}
.service-card h2,
.service-card ul {
    position: relative;
    z-index: 1;
}
.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-card ul li {
    font-weight: bold;
    font-size: 0.85rem;
    padding: 0.25rem 0;
}

.service-card {
    width: 350px;
    height: 350px;
    font-size: 1.1rem;
}
.service-card ul li {
    font-weight: bold;
    font-size: 1.15rem;
}
footer {
    text-align: center;
    background-color: #4CAF50;
    color: white;
    padding: 1rem 0;
    font-size: 1rem;
}

.logo img {
    height: 200px;
    width: 200px;
    max-height: none !important;
    max-width: none !important;
    display: block;
}
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    background-color: #4CAF50;
    height: 80px;
    overflow: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
body {
    scroll-padding-top: 80px;
}

nav ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
nav ul li {
    list-style: none;
    white-space: nowrap;
}

header {
    padding: 0;
}

nav ul {
    gap: 0.75rem;
}
nav ul li:last-child {
    margin-right: 0.5rem;
}

#quote {
    background-image: url('../images/quote-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}





#quote .quote-container {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.quote-container {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
#quote input,
#quote textarea {
  margin: 10px 0;
  padding: 10px;
  font-size: 1rem;
  width: 100%;
}
#quote button {
  margin-top: 10px;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.gallery-bubble {
  background-color: white;
  border-radius: 25px;
  padding: 10px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.gallery-bubble img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.label {
  font-weight: bold;
  margin-bottom: 8px;
}

#gallery h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}
.gallery-label {
  width: 300px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #444;
}


nav a {
  color: white;
  text-decoration: none;
  padding: 0 15px;
  font-weight: 500;
}
nav a:hover {
  text-decoration: underline;
}


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

  /* Sticky header on mobile */
  header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    background: #4CAF50; /* ensure header background covers underlying content */
  }

  /* Ensure About Us paragraphs occupy full width and wrap normally */
  #about p {
    display: block;
    width: 100%;
    margin: 0 auto 0.5em;
    text-align: left;
    line-height: 1.5;
  }

  /* Dropdown nav z-index above other content */
  header nav {
    z-index: 1001;
  }
}



/* MOBILE HAMBURGER MENU STYLES */
@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: 2px solid white;
    color: white;
    font-size: 1.5rem;
    padding: 5px 10px;
    z-index: 1002;
  }
  /* Hide nav links when not active */
  header nav {
    display: none;
    flex-direction: column;
    background-color: #4CAF50;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 1001;
  }
  /* Show nav when active */
  header nav.active {
    display: flex;
    align-items: center;
  }
  header nav a {
    display: block;
    padding: 10px 20px;
    text-align: center;
    width: 100%;
    color: white;
  }
}


/* Ensure hamburger hidden on desktop */
.hamburger {
  display: none !important;
}

/* MOBILE HAMBURGER MENU STYLES */
@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger {
    display: block !important;
  }

  /* Hide nav links when not active */
  header nav {
    display: none !important;
  }
  /* Show nav when active */
  header nav.active {
    display: flex !important;
  }
}


/* Fix for mobile dropdown nav */
@media (max-width: 768px) {
  header nav {
    display: none !important;
    flex-direction: column !important;
    background-color: #4CAF50 !important;
    position: absolute !important;
    top: 60px !important;
    right: 0 !important;
    width: 100% !important;
    padding: 10px 0 !important;
    z-index: 1001 !important;
  }

  header nav.active {
    display: flex !important;
  }

  header nav a {
    display: block !important;
    color: white !important;
    padding: 10px 20px !important;
    text-align: center !important;
  }
}


/* Ensure mobile dropdown has top priority */
@media (max-width: 768px) {
  header nav {
    position: fixed !important;
    top: 60px !important;
    right: 0 !important;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
    background-color: #4CAF50 !important;
    z-index: 2000 !important;
    padding: 10px 0 !important;
  }
  header nav.active {
    display: flex !important;
  }
}


/* NAVIGATION OFFSET FIX FOR MOBILE */
@media (max-width: 768px) {
  #about {
    scroll-margin-top: 80px;
  }
}


/* Gallery Labels on Mobile - only styling gallery section */
@media (max-width: 768px) {
  #gallery .gallery-bubble {
    position: relative;
  }
  #gallery .gallery-bubble .gallery-label {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.8);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: #444;
  }
}


/* Remove initial Before/After row on mobile */
@media (max-width: 768px) {
  #gallery .gallery-row:first-of-type {
    display: none !important;
  }
}


/* Hide gallery labels on desktop */
#gallery .gallery-bubble .gallery-label {
  display: none !important;
}

/* Show gallery labels only on mobile */
@media (max-width: 768px) {
  #gallery .gallery-bubble .gallery-label {
    display: block !important;
  }
}
