/* Heather Rose Makeup Artistry Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=Inter:wght@400;600&display=swap');


:root {
  --hmk-primary: #e6d4cd; /* Soft blush pink */
  --hmk-dark: #4c4140;    /* Deep charcoal brown */
  --hmk-accent: #ba7e6d;  /* Rose bronze (used in buttons/links) */
  --hmk-light: #fff7f3;   /* Very light blush/off-white */
  --hmk-gold: #e0b97a;    /* Warm gold accent */
  --hmk-background: #c5bcb5;
  --color-dark-text: #40211a;
  --color-dark-text-alt: #333333;
  --color-soft-pink: #f3c6d3;
  --color-white: #ffffff;
  --color-gray: #eeeeee;
  --transition-speed: 0.3s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--hmk-background);
  color: var(--color-dark-text-alt);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-dark-text);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}
a:hover,
a:focus {
  color: var(--color-soft-pink);
  outline: none;
}

/* Container max width and centering */
.container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.primary-nav {
  background: var(--color-white);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--color-gray);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 1rem;
}

.primary-nav .brand img {
  max-height: 56px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.25rem 0;
  border-radius: 4px;
  transition: color var(--transition-speed) ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-soft-pink);
  outline: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--color-dark-text);
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-of-type(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* HEADINGS */
h1, h2, h3 {
  font-family: 'Dancing Script', cursive;
  color: var(--color-dark-text);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

/* HERO SECTION */
.hero {
  background: radial-gradient(circle at top right, rgba(243, 198, 211, 0.4), transparent 55%), var(--hmk-background);
  padding: 5rem 0 4rem;
  margin-bottom: 3rem;
  border-radius: 0 0 40px 40px;
  box-shadow: inset 0 -12px 25px rgba(0, 0, 0, 0.05);
  color: var(--color-dark-text);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  flex: 1 1 50%;
}

.hero-media {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--hmk-accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 3.6vw, 3.6rem);
  margin-bottom: 0.75rem;
}

.hero h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-dark-text-alt);
  margin-bottom: 1.5rem;
}

.hero-summary {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--color-dark-text-alt);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(186, 126, 109, 0.35);
}

.cta-button {
  background-color: var(--color-soft-pink);
  color: var(--color-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  box-shadow: 0 4px 10px rgba(243, 198, 211, 0.35);
}

.cta-button:hover,
.cta-button:focus {
  background-color: #e3a8b7;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(243, 198, 211, 0.4);
  outline: none;
}

section {
  padding: 4rem 1.5rem;
}

section:not(.hero) {
  margin-bottom: 3rem;
}

.section-card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  padding: 3rem 2rem;
}

section > .section-card > h2,
section > h2 {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--color-dark-text);
}

/* ABOUT SECTION */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-photo {
  width: 45%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(186, 126, 109, 0.25);
  object-fit: cover;
  max-height: 360px;
}

.about-text {
  width: 55%;
  font-family: 'Inter', sans-serif;
  color: var(--color-dark-text-alt);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* SERVICE LIST */
.services-list {
  list-style: none;
  padding-left: 0;
  max-width: 480px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--color-dark-text-alt);
  font-size: 1.15rem;
}

.services-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.services-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-soft-pink);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

/* TESTIMONIALS AND PRICING CARDS */
.card {
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(243, 198, 211, 0.25);
  padding: 2rem;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  color: var(--color-dark-text-alt);
}

.testimonials {
  display: grid;
  gap: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  position: relative;
  padding-left: 1rem;
  border-left: 5px solid var(--color-soft-pink);
  font-size: 1.1rem;
  color: var(--color-dark-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--hmk-accent);
  margin: 0;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-dark-text-alt);
  box-shadow: 0 4px 14px rgba(243, 198, 211, 0.25);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table thead {
  background-color: var(--color-soft-pink);
  color: var(--color-white);
}

.pricing-table thead th {
  padding: 1rem 1.25rem;
  font-weight: 600;
  text-align: left;
  border-bottom: none;
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: var(--hmk-background);
}

.pricing-table tbody tr:nth-child(even) {
  background-color: var(--color-white);
}

.pricing-table tbody td {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--color-gray);
}

.note {
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--color-dark-text-alt);
  text-align: center;
}

/* BLOCKQUOTES */
blockquote {
  position: relative;
  font-style: italic;
  color: var(--color-dark-text);
  border-left: 6px solid var(--color-soft-pink);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  max-width: 720px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.5;
}

/* PORTFOLIO SECTION */
.portfolio-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--color-dark-text-alt);
  text-align: center;
  margin-bottom: 2rem;
}

.portfolio-section iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  height: clamp(360px, calc(100vw * 0.85), 833px);
  border-radius: 12px;
  border: none;
}

/* CONTACT SECTION */
.contact {
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--color-dark-text);
  max-width: 600px;
  margin: 0 auto;
}

.contact p {
  font-size: 1.125rem;
  margin-bottom: 1.2rem;
}

.contact .highlight {
  font-weight: 600;
  color: var(--color-soft-pink);
  font-size: 1.2rem;
  user-select: text;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
  }

  .nav-links[data-open="true"] {
    max-height: 400px;
    padding-top: 0.5rem;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .hero {
    padding: 4rem 0 3rem;
    border-radius: 0 0 32px 32px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-copy,
  .hero-media {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero-summary {
    font-size: 1rem;
  }

  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-photo,
  .about-text {
    width: 100%;
  }
  .pricing-table tbody td,
  .pricing-table thead th {
    padding: 0.75rem 1rem;
  }
  blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 0.7rem 1.8rem;
  }

  .services-list {
    font-size: 1rem;
  }
  section {
    padding: 3rem 1rem;
  }

  .section-card {
    padding: 2.5rem 1.5rem;
  }

  .portfolio-section iframe {
    height: clamp(320px, 90vw, 640px);
  }
}
