/* ========== Brand Palette Variables ========== */
:root {
  --tangerine: #F26522;
  --hot-pink: #EC008C;
  --hot-pink-dark: #C7007B;
  --light-peach: #FFEDDC;
  --medium-charcoal: #808285;
  --light-charcoal: #F1F2F2;
  --black: #000000;
  --white: #FFFFFF;
}

/* ========== Reset & Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--medium-charcoal);
  background-color: var(--white);
  line-height: 1.6;
}

/* ========== Global Header Styles ========== */
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tangerine);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--tangerine);
  margin-bottom: 1rem;
  line-height: 1.4;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hot-pink);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* ========== Navbar ========== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent white */
  backdrop-filter: blur(10px); /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--medium-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--tangerine);
}

/* ========== Hero Section ========== */
.hero {
  padding: 5rem 2rem;
  background:
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('../img/hero-bg.jpg') center / cover no-repeat;
  text-align: center;
  position: relative;
  color: #000;/* or a dark charcoal — adjust for readability */
}

.hero h1,
.hero .tagline,
.hero .support-text,
.hero .subheadline {
  position: relative;
  z-index: 1;
}

.hero .tagline {
  font-size: 1rem;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--tangerine);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero .support-text {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.2rem auto;
  color: var(--medium-charcoal);
}

.hero .subheadline {
  font-size: 1rem;
  color: var(--medium-charcoal);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-style: italic;
}

.cta-button {
  display: inline-block;
  background: var(--hot-pink);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: var(--hot-pink-dark);
}

/* ========== Modal Styles ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: var(--light-charcoal);
  margin: 5% auto;
  padding: 1rem;
  border-radius: 8px;
  max-width: 800px;
  width: 90%;
  position: relative;
  overflow: hidden;
}

.close {
  color: var(--medium-charcoal);
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--black);
  text-decoration: none;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .support-text,
  .hero .subheadline {
    font-size: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .modal-content {
    width: 95%;
    height: 90vh;
    padding: 0.75rem;
  }

  #msgsndr-calendar {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.7rem 1.4rem;
  }

  nav ul {
    gap: 0.75rem;
  }

  .modal-content {
    padding: 0.5rem;
  }

  #msgsndr-calendar {
    height: 100%;
  }
}
.contact-section {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

.contact-section h1 {
  font-size: 2.4rem;
  color: #F26522;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1.1rem;
  color: #808285;
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.8rem;
}

.contact-info a {
  color: #EC008C;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.contact {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #F26522;
  margin-bottom: 1rem;
}

.contact .subheadline {
  text-align: center;
  font-style: italic;
  color: #808285;
  margin-bottom: 3rem;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.contact-details {
  flex: 1 1 40%;
  font-size: 1rem;
  color: #444;
}

.contact-details h2 {
  font-family: 'Montserrat', sans-serif;
  color: #EC008C;
  margin-bottom: 1rem;
}

.contact-details a {
  color: #F26522;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1 1 55%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #F26522;
  box-shadow: 0 0 0 2px rgba(242, 101, 34, 0.2);
}

.contact-form button {
  margin-top: 2rem;
  align-self: flex-start;
}
/* Services Page Styling */

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.services-hero {
  padding: 4rem 1rem;
  background: var(--light-peach);
  text-align: center;
}

.services-hero h1 {
  font-size: 2.4rem;
  color: var(--tangerine);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.services-hero .tagline {
  font-size: 1rem;
  color: var(--hot-pink);
  margin-bottom: 1.5rem;
}

.services-hero .intro {
  font-family: 'Lato', sans-serif;
  color: var(--medium-charcoal);
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.services-differentiator h2,
.services-pillars h2 {
  font-family: 'Montserrat', sans-serif;
  color: var(--tangerine);
  margin-bottom: 1rem;
  text-align: center;
}

.diff-list {
  list-style: none;
  margin: 1.5rem 0 3rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff-list li {
  background: var(--white);
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--hot-pink);
  font-family: 'Lato', sans-serif;
  color: var(--medium-charcoal);
}

.services-pillars .pillar {
  margin-bottom: 3rem;
}

.services-pillars .pillar h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--hot-pink);
  margin-bottom: 0.5rem;
}

.services-pillars .pillar ul {
  list-style: disc;
  padding-left: 1.2rem;
  color: var(--medium-charcoal);
  font-family: 'Lato', sans-serif;
}

.services-pillars .pillar ul li {
  margin-bottom: 0.5rem;
}

.services-cta {
  text-align: center;
  padding: 3rem 1rem 5rem 1rem;
}

.services-cta .support-text {
  font-size: 1.2rem;
  color: var(--medium-charcoal);
  margin-bottom: 1.5rem;
}


