/ * Base */
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  color: #6B6967;
}

/* MINIMAL HEADER */
.minimal-header {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background: #ffffff;
  border-bottom: solid 1px #efefef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: padding 0.3s ease;
}

/* Sticky only on desktop */
@media (min-width: 769px) {
  .minimal-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  /* Shrink padding when scrolled */
  .minimal-header.scrolled {
    padding: 0.5rem 0;
  }
}

.minimal-header p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999999;
}

.hero {
    text-align: center;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  color: #6B6967; 
  margin-bottom: 0px !important;
}

@media (min-width: 768px) {
  .hero {
    min-height: 89vh;          /* 80% of the screen height */
    display: flex;
    align-items: center;       /* vertically center content */
    justify-content: center;
    padding: 0rem 0rem 4rem 0rem;
  }
}

.hero h1,
.hero h2 {
  font-family: "Fraunces", serif;
  font-size: 3.6rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.25;
  color: #6B6967;
  margin-top: 4rem;

}

.hero h2 {
  color: #F26698;
  font-style: italic;
  margin-top: 0rem;

}

.pink {
  color: #F26698;
}

.hero h3 {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  color: #6B6967;
  font-weight: 300;
  margin: 4rem 0;
  line-height: 1.25;
  text-transform: capitalize;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;

  padding: 1rem 2rem;
  background: #5969a6;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;

  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.85rem;

  box-shadow: 0 8px 20px rgba(89, 105, 166, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;

  margin-top: 2.75rem;

  /* universal centering */
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(89, 105, 166, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(89, 105, 166, 0.2);
}

/* Reset button defaults to match link buttons */
button.btn {
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ABOUT SECTION LAYOUT */
.about-section {
  padding: 0; /* No top/bottom padding so the background aligns perfectly */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;      /* adjust as needed */
}

/* LEFT COLUMN — IMAGE */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* ensures full-bleed photo */
  display: block;
}

/* RIGHT COLUMN — CONTENT */
.about-content {
  background: #f5f5f5;    /* light grey background */
  padding: 4rem 6.5rem 5rem 6.5rem;
  max-width: 600px;
  margin: 0 auto;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* GLOBAL H2 STYLE (NOT HERO) */
h2 {
  font-family: "Fraunces", serif;
  font-size: 2.25rem;
  font-weight: 200;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #6B6967;
}

/* ACCENT WORD (PINK) */
.about-content h2 .accent {
  color: #f26698;
  font-style: italic;
}

/* RESPONSIVE (MOBILE STACK) */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 3rem 1.5rem;
  }

  .about-image img {
    height: 300px; /* nice constrained height on mobile */
  }
}

/* Centered narrow column */
.section .container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;

  display: flex;
  flex-direction: column;
  align-items: center; /* center buttons, videos, paragraphs */
}

/* Space between About and Services */
#services {
  padding-top: 0;
  margin-top: 9.75rem;
}

.section {
  padding: 100px 0px;
}

/* Service H2 headings */
.section h2 {
  margin-top: 0.5rem;     /* minimal space at the top */
  margin-bottom: 2.5rem;
  text-align: left;
  align-self: flex-start; /* keep headings left-aligned */
}

#services {
  scroll-margin-top: 0px;
}

/* Full-width video wrapper */
.video-wrapper {
  width: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
  margin-bottom: 1.5rem;
}

/* CONTACT FORM */
.contact-section {
  background: #f5f5f5;
  padding: 6rem 2rem;
}

.contact-section h2 {
  text-align: center;
  align-self: center;
  margin-bottom: 3rem;
}

.contact-form {
  width: 100%;
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #6B6967;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #6B6967;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5969a6;
  box-shadow: 0 0 0 3px rgba(89, 105, 166, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 1rem;
}

/* FOOTER */
.footer {
  background: #6B6967;
  color: #ffffff;
  text-align: center;
  padding: 1rem 2rem;
}

.footer p {
  color: #ffffff;
  margin: 0;
}

.footer .socials {
  margin-bottom: 2rem;
}

.footer .socials a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer .socials a:hover {
  color: #F26698;
}