/* ==========================================================================
   Mindset Marketing — brand styles
   ========================================================================== */

:root {
  --cream:        #FBF3E4;
  --coral:        #F0876B;
  --coral-dark:   #E3714F;
  --purple:       #7A4B9B;
  --purple-dark:  #5F3A80;
  --magenta:      #B0459B;
  --magenta-dark: #953D84;
  --ink:          #2B2033;
  --white:        #FFFFFF;

  --font-display: 'Anton','Baloo 2', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--ink);
}

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
}

a { text-decoration: none; }

/* ---------------------------------- Header / Nav ---------------------------------- */
.site-header {
  background-color: var(--cream);
  padding: 1.1rem 0;
}

.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  line-height: 1.1;
  font-size: 1.15rem;
  width: 150px;
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-left: 1.5rem;
  padding: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--purple);
}

/* ---------------------------------- Hero ---------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  padding: 20rem 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,15,25,0.72) 0%, rgba(20,15,25,0.45) 100%);
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero-title {
  font-size: clamp(2.1rem, 4.2vw, 5.1rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.hero-copy {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.4;
}

.btn-pill {
  border-radius: 50px;
  padding: 0.7rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform .15s ease, opacity .15s ease;
}
.btn-pill:hover { transform: translateY(-2px); }

.btn-magenta {
  background-color: var(--magenta);
  color: var(--white);
}
.btn-magenta:hover { background-color: var(--magenta-dark); color: var(--white); }

.btn-coral {
  background-color: var(--coral);
  color: var(--white);
}
.btn-coral:hover { background-color: var(--coral-dark); color: var(--white); }

.btn-outline-cream {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-cream:hover { background: var(--white); color: var(--ink); }

/* ---------------------------------- Sections ---------------------------------- */
section { padding: 4.5rem 0; }

.bg-cream   { background-color: var(--cream); }
.bg-coral   { background-color: var(--coral); color: var(--white); }
.bg-purple  { background-color: var(--purple); color: var(--white); }
.bg-magenta { background-color: var(--magenta); color: var(--white); }

.bg-coral h1, .bg-coral h2, .bg-coral h3,
.bg-purple h1, .bg-purple h2, .bg-purple h3,
.bg-magenta h1, .bg-magenta h2, .bg-magenta h3 {
  color: var(--coral);
}

.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--coral);
  margin-bottom: 2rem;
}
.bg-purple .section-title,
.bg-magenta .section-title { color: var(--white); }
.section-title.purple-text { color: var(--purple); }

.text-purple { color: var(--purple); }
.text-coral  { color: var(--coral); }
.text-magenta{ color: var(--magenta); }

h3 .text-coral { color: var(--coral); }

/* Rounded photo frame */
.photo-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #333;
  /*aspect-ratio: 4/3;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.photo-frame.no-grayscale img { filter: none; }

/* Info card used in "Our goal", "Why we're different", "Why use?", etc. */
.info-card {
  background-color: var(--cream);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
}
.bg-purple .info-card,
.bg-coral .info-card {
  color: var(--ink);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  margin-bottom: 1rem;
}

/* Feature panel (Make a difference / Build relationships / Shape your career) */
.feature-panel {
  border: 2px solid var(--coral);
  border-radius: 18px;
  padding: 2.5rem;
  margin-bottom: 1.75rem;
}
.feature-scribble {
  width: 100%;
  max-width: 180px;
  height: auto;
}

/* Careers cards */
.career-card {
  background-color: var(--cream);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
  color: var(--ink);
}
.career-card h3 { color: var(--magenta); }

/* Team member */
.team-photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.team-name {
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0.75rem;
  color: var(--purple);
}
.team-role {
  font-size: 0.9rem;
  color: var(--ink);
  opacity: 0.75;
}

/* Testimonial mini cards (hiring page) */
.testimonial-card {
  background-color: var(--white);
  border-radius: 14px;
  padding: 1.25rem;
  height: 100%;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--purple);
  flex: none;
}
.testimonial-name { font-weight: 700; color: var(--magenta); }
.testimonial-text { font-size: 0.85rem; }

/* Venue location chips */
.venue-chip {
  border: 2px solid var(--purple);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--purple);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery */
.gallery-photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------- CTA / Contact form ---------------------------------- */
.cta-section { padding: 4.5rem 0; color: var(--white); }
.cta-magenta { background-color: var(--magenta); }
.cta-purple  { background-color: var(--purple); }

.cta-heading {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--white);
}
.cta-text { opacity: 0.9; }

.contact-form .form-control,
.contact-form .form-select {
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  border-radius: 8px;
  padding: 0.7rem 1rem;
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.75); }
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--white);
  color: var(--white);
  box-shadow: none;
}
.contact-form .form-select option { color: var(--ink); }

.form-heading {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.btn-submit {
  background-color: var(--cream);
  color: var(--ink);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: none;
}
.btn-submit:hover { background-color: var(--white); }
.btn-submit:disabled { opacity: 0.6; }

.form-feedback { font-size: 0.95rem; min-height: 1.4em; }
.form-feedback.success { color: #d7ffd9; }
.form-feedback.error { color: #ffd7d7; }

/* ---------------------------------- Footer ---------------------------------- */
.site-footer {
  background-color: var(--coral);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.05;
  color: var(--white);
  width:250px;
}
.footer-address, .site-footer p { color: var(--white); opacity: 0.95; }
.site-footer a { color: var(--white); }
.site-footer a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 2rem;
  padding-top: 1.25rem;
  opacity: 0.85;
}

/* ---------------------------------- Utilities ---------------------------------- */
.rounded-xl { border-radius: 18px; }
.min-vh-40 { min-height: 40vh; }

@media (max-width: 767.98px) {
  section { padding: 3rem 0; }
  .navbar-nav .nav-link { margin-left: 1rem; }
}
