/* === Elegant Gray-Based Palette with Dual Accents === */

:root {
  --ivory: #FDFDFD;
  --cloud-gray: #D6D6D6;
  --stone: #999999;
  --graphite: #2B2B2B;
  --accent-warm: #FFC107;
  --accent-cool: #00C2A8;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--graphite);
  background-color: var(--ivory);
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* .around-navbar{
  background-color: var(--graphite);
  padding-inline: 20vw;
  
} */

/* Sticky top nav */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--graphite);
  padding: 1.5rem 2rem;
  display:flex;
  justify-content:center;
  z-index: 1000;
}

/* Nav menu defaults */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 10vw;
  display:flex;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  background: none;
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  width: auto;
  height: auto;
  cursor: pointer;
  appearance: none;       /* <- removes browser default styles */
  -webkit-appearance: none;
}



/* MOBILE: hide nav menu initially */
@media (max-width: 1099px) {
  .nav-menu {
    display: none;
    justify-content:center;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--graphite);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
  }

  .navbar.active .nav-menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

header {
  color: var(--white);
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#home-h1 {@media(min-width: 1100px) {
  font-size: 5rem;
  margin-bottom: 1rem;
}
}



header p {
  font-size: 1.2rem;
  /* padding-block-end:10rem; */
}

.tinted-background {
  position: relative;
  background-image: url(images/DSC04047.grey.jpg);
  background-size: cover;
  background-position: center 40%;
  color: var(--white);
  padding: 5rem 2rem;
  z-index: 0;
  overflow: hidden;
}

.tinted-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 194, 168, 0.6); /* dark tint */
  z-index: 1;
}

.tinted-background > * {
  position: relative;
  z-index: 2;
}

section {
  padding: 4rem 2rem;
  background-color: var(--ivory);
}

section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--accent-cool);
  margin-bottom: 2rem;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--white);
  padding: 2rem;
  border: 1px solid var(--cloud-gray);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: var(--graphite);
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: var(--graphite);
}

.cta-button {
  background-color: var(--accent-warm);
  color: var(--graphite);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  align-self: start;
}

.cta-button:hover {
  background-color: var(--accent-cool);
  color: var(--white);
}

.resources {
  background-color: var(--graphite);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.resources h2 {
  color: var(--accent-warm);
  margin-bottom: 1.5rem;
}

.resources ul {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.resources li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.resources a {
  color: var(--accent-cool);
  text-decoration: underline;
}

.resources a:hover {
  color: var(--white);
}

#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: auto;
}



/* Additional spacing for form fields */
#contact form input,
#contact form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid var(--cloud-gray);
  border-radius: 6px;
  font-size: 1rem;
}

#contact p {
  text-align: center;
  margin-bottom: 2rem;
}

/* Footer styling */
footer {
  background-color: var(--graphite);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

/* Sticky nav shadow effect */
.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive typography for header */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }

  header p {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}

/* Wide Section for Resources */
.wide-section {
  padding: 4rem 2rem;
  background-color: var(--ivory);
}

.wide-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.wide-section h2 {
  font-size: 2rem;
  color: var(--accent-cool);
  margin-bottom: 1.2rem;
  text-align: center;
}

.wide-section p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--graphite);
}

/* Professional Resource List */
.resource-list {
  list-style-type: disc;
  padding-left: 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  list-style:none;
}

.resource-list li {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  position: relative;
}

.resource-list a {
  color: var(--accent-cool);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.resource-list a:hover {
  color: var(--accent-warm);
}

/* Optional: subtle divider between sections */
.wide-section + .wide-section {
  border-top: 1px solid var(--cloud-gray);
  margin-top: 2rem;
  padding-top: 3rem;
}

/* Contact Form */

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cloud-gray);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background-color: var(--white);
  color: var(--graphite);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .cta-button {
  background-color: var(--accent-warm);
  color: var(--graphite);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  align-self: center;
}

.contact-form .cta-button:hover {
  background-color: var(--accent-cool);
  color: var(--white);
}







/* :root {
  --blue-gray: #ffffff;
  --orange: #D97C0B;
  --brown: #A6845B;
  --beige: #F2D7B6;
  --brick: #A65F46;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--beige);
  color: var(--brick);
}

.background-shapes {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: var(--orange);
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 999;
}

.navbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: var(--blue-gray);
}

header,
.page-header {
  background-color: var(--brick);
  color: var(--white);
  text-align: center;
  padding: 4rem 1rem;
  background-size: cover;
  background-position: center;
}

header h1,
.page-header h1 {
  margin: 0;
  font-size: 3rem;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

h2 {
  color: var(--orange);
  margin-bottom: 1rem;
}

.text-image {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.text-image.reverse {
  flex-direction: row-reverse;
}

.text-image img {
  width: 300px;
  border-radius: 10px;
}

.highlight {
  color: var(--orange);
  font-weight: bold;
}

.testimonial blockquote {
  font-style: italic;
  background: var(--blue-gray);
  padding: 1rem 1.5rem;
  border-left: 5px solid var(--brick);
  margin: 1.5rem auto;
  max-width: 600px;
  color: var(--white);
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: var(--brown);
}

.gallery,
.images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.gallery img,
.images img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button {
  background-color: var(--orange);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--brown);
}

form input,
form textarea {
  padding: 0.7rem;
  width: 250px;
  margin: 0.5rem 0;
  border: 1px solid var(--blue-gray);
  border-radius: 8px;
}

form textarea {
  resize: vertical;
  min-height: 100px;
  width: 300px;
}

footer {
  background-color: var(--blue-gray);
  color: var(--brick);
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 4rem;
  font-size: 0.9rem;
} */