/*======================================================
   Bearse-HTML — site styles
   -----------------------------------------------------
   Coding by Mitchell Bearse (c) 2026Bearse-HTML
   All rights reserved. Built for mitchell-bearse.com.
   -----------------------------------------------------

  Color palette:
    purple:      #141424   (background, header text, services headings)
    pink:        #ff6bcb   (header color, bold text, services outlines and icons)
    light pink:  #f7ebf5   (services icon background color)
    white:       #ffffff   (text, services card background color)
    
  Fonts:
    Papyrus, fantasy              (header text).
    Arial, Helvetica, sans-serif  (most text)
  ====================================================== */


/* =====================================================
   BASE
   ===================================================== */

@import url('https://fonts.googleapis.com/css?family=Bitcount Prop Single');

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:#141424;
  color: #1f2937;
  line-height: 1.6;
}

/* 
   The container now scales by percent.
   It takes up 90% of the screen, but never gets too wide.
*/
.container {
  width: 50%;
  max-width: 1100px;
  margin: 0 auto;
}

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  line-height: 1;
  opacity: 0.95;
  background: linear-gradient(180deg, #ff6bcb 65%, #141424 100%);
  color: #ffffff;
}

.site-header .container {
  width: 100%;
  max-width: none;
  padding-top: 2%;
  padding-left: 2%;
  padding-bottom: 4.3%;
}

.header-content {
  padding: 0 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-name {
  color: #141424;
  text-decoration: none;
  font-family: "Bitcount Prop Single";
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1;
}

.header-button {
  display: inline-block;
  background: #141424;
  color: #ff6bcb;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-family: "Bitcount Prop Single";
  font-weight: bold;
  font-size: clamp(1rem, 3vw, 2.25rem);
  line-height: 1;
}

.header-button:hover {
  background: #ffa1de;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.24);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  width: 100%;
  padding: 8% 5% 4%;
  text-align: center;
}

.hero-content {
  width: 65%;
  max-width: 950px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 2%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  color: #ffffff;
}

.hero h1 span {
  color: #ff6bcb;
}

.hero p {
  width: 85%;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.hero-button {
  display: inline-block;
  background: #ff6bcb;
  color: #141424;
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 2.5rem);
  line-height: 1;
  box-shadow: 0 0.75rem 1.5rem rgba(255, 107, 203, 0.35);
}

.hero-button:hover {
  background: #ffa1de;
  color: #ffffff;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */

.services-section {
  width: 100%;
  background: #141424;
  color: #102018;
  padding: 6% 5%;
}

.services-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4%;
}

.services-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 900;
  color: #ff6bcb;
}

.services-heading p {
  width: 80%;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  color: #ffffff;
}

.services-grid {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  position: relative;
  background: #ffffff;
  border-color: #ff6bcb;
  border: 2px solid #ff6bcb;
  border-radius: 1rem;
  padding: 2rem;
  min-height: 330px;
  box-shadow: 0 0.75rem 2rem rgba(20, 60, 20, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1rem 2.5rem rgba(20, 60, 20, 0.12);
}

.service-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1.25rem;
  border-radius: 0.75rem;
  background: #f7ebf5;
  color: #ff6bcb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.2;
  color: #141424;
}

.service-card p {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  color: #40534d;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.service-tags span {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border: 1px solid #ff6bcb;
  border-radius: 999px;
  background: #f7ebf5;
  color: #141424;
  font-size: 0.8rem;
  font-weight: 700;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: #141424;
  color: #ffffff;
  text-align: center;
  padding: 2.5% 0;
}

.site-footer p {
  margin: 0;
  opacity: 0.85;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

@media (max-width: 700px) {
  .services-section {
    padding: 12% 5%;
  }

  .service-card {
    min-height: auto;
    padding: 1.5rem;
  }
}

@media {
  .container {
    width: 100%;
  }

  .site-header {
    padding: .1%;
  }
