/* === Global Reset & Base === */
* {
  box-sizing: border-box;
  color: #3a3546;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

/* === Accessibility: Skip Link === */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s ease;
  font-size: 14px;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
}

/* === Layout === */
.container {
  max-width: 940px;
  width: 100%;
  margin: 40px auto 0;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.column {
  flex: 1;
}

.section {
  clear: both;
  width: 100%;
}

.section.no-spacing-change {
  padding: 0;
}

.section.alt-bg {
  background-color: #FFD8D9;
}

/* === Typography === */
h1 {
  margin: 0.25em 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 56px;
}

h2 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

h3 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
}

p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
}

.copy-text {
  font-size: 12px;
  line-height: 1.4;
}

/* === Lists === */
.bullet-points {
  list-style: disc;
  padding-left: 20px;
  margin-top: -10px;
}

.bullet-points li {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* === Buttons === */
.buttons {
  display: flex;
  gap: 16px;
  margin: 10px 0;
}

.btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid;
  border-radius: 8px;
  cursor: pointer;
}

.contact-btn {
  background-color: #424B48;
  color: #fff;
  border-color: #424B48;
}

.secondary-btn {
  background-color: #ea4c89;
  color: #fff;
  border-color: #ea4c89;
}

.secondary-btn:hover {
  background-color: #3a3546;
  border-color: #3a3546;
  color: #fff;
}

.center-align {
  display: flex;
  justify-content: center;
}

/* === Images === */
/* Hero Images */
.hero-image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
}

.hero-image img {
  width: 100%;
  height: auto; /* preserve aspect ratio */
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

/* Mockup Rows (side-by-side images) */
.mockup-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  width: 100%;
}

.mockup-column {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.mockup-column img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.mockup-caption {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

/* Inline Images / Image Columns */
.image-column {
  display: flex;
  justify-content: center;
  flex: 1 1 auto;
  max-width: 600px;
}

.image-column img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999;
  padding: 16px 0;
}

.nav-container {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.main-nav a {
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.main-nav a:hover {
  color: #000;
}

/* My Role Section */
.my-role-section {
  background-color: #f5f3f0;
  border-radius: 16px;
  padding: 32px;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* Footer */
footer {
  padding: 40px 24px;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

footer p {
  margin: 0;
  font-size: 12px;
}

footer img {
  width: 38px;
  height: auto;
}

/* === Back Button === */
.back-button {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  border-radius: 999px;
  color: #6E6D7A;
  gap: 4px;
}

.back-button img {
  height: 1em;
  width: auto;
}

/* === Section Header with Tags === */
.section-header-with-tags {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header-with-tags h1 {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
  flex: 1 1 auto;
  text-align: left;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.case-tag {
  background-color: #F5F3F0;
  font-size: 14px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.mobile-only {
  display: none;
}

/* === Responsive === */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    margin: 32px auto 0;
  }

  .mobile-only {
    display: block;
  }
	
	.contact-btn:hover{
		background-color: #ea4c89;
		border-color: #ea4c89;
		color: #fff;
	}
	
	.secondary-btn:hover {
		background-color: #ea4c89;
		color: #fff;
		border-color: #ea4c89;
	}
	
  .text-column,
  .image-column {
    max-width: 100%;
    padding-right: 0;
  }

  h1 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
  }

  .mockup-row {
    flex-direction: column;
    gap: 16px;
  }

  .mockup-column {
    flex: 1 1 100%;
  }

  .hero-image {
    height: auto;
    margin-top: 24px;
  }

  .hero-image img {
    max-height: none;
  }

  .main-nav ul {
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
  }

  .main-nav li a {
    padding: 12px 4px;
    font-size: 16px;
    line-height: 1.5;
    display: inline-block;
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    margin-right: auto;
  }

  .my-role-section {
    padding: 24px;
  }

  footer {
    gap: 8px;
    text-align: left;
    padding: 50px 24px 56px 24px;
  }

  .section-header-with-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }

  .case-tags {
    justify-content: flex-start;
  }

  .section-header-with-tags h1 {
    margin: 8px 0;
    font-size: 28px;
  }

  .section.no-spacing-change .hero-image {
    margin-top: 20px;
  }
}

/* Optional: Wider screens max width scaling */
@media (min-width: 1200px) {
  .container,
  .nav-container,
  footer {
    max-width: 940px;
  }
}
