/*
Theme Name: Taurus Web
Author: TaurusWeb.ca
Version: 1.0
*/

.test {
  border: 1px solid red;
}

p, li, label {
	font-size: 1.1em;
	font-family: 'Roboto', sans-serif;
}

.padra-pencil-crayons {
	background: 
	linear-gradient(
		rgba(255, 255, 255, 0.5),
		rgba(255, 255, 255, 0.5)
		),
	url(../media/pencil-crayons.jpg);
	background-size: cover;
	height: 50vw;
	background-attachment: fixed;
	background-position: left;
	background-repeat: no-repeat;
}


.font-5vw {
	font-size: 6vw; 
}
.font-19vw {
	font-size: 23vw; 
}


.opacity-6 {
	opacity: 0.6;
}

.indent {
	text-indent: 3vw;
}

.sm-left-blue {
	border-left: 1px solid #00A5BB;
}
.lg-left-blue {
	border-left: 5px solid #00A5BB;
}

.mx-width-800 {
	max-width: 800px;
}

.hover-scale-02 {
	transition: 1s;
}
.hover-scale-02:hover {
	transform: scale(1.02);
}

.bg-opacity {
	opacity: 0.9;
}

.anchor {
    display: block;
    height: 50px;
    margin-top: -50px;
    visibility: hidden;
}

.white-shadow {
	text-shadow: 3px 3px 3px white;
}

.taurus-page {
  background: #f7f4ef;
  color: #111827;
}

.taurus-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.taurus-hero-content {
  max-width: 780px;
  color: #fff;
  padding: 6rem 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  color: #c9a86a;
  margin-bottom: 1rem;
}

.taurus-hero h1 {
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: .85;
  letter-spacing: -.08em;
  font-weight: 800;
  margin: 0 0 1.5rem;
}

.hero-copy {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  max-width: 620px;
  color: rgba(255,255,255,.86);
  margin-bottom: 2rem;
}

.taurus-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  background: #c9a86a;
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.taurus-btn:hover {
  transform: translateY(-3px);
  color: #111827;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}

.intro-section,
.services-section,
.contact-section {
  padding: 5rem 0;
}

.intro-card,
.contact-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: 0 24px 70px rgba(17,24,39,.08);
}

.intro-card h2,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 1.25rem;
}

.intro-card p,
.premium-card p {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.premium-card {
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(17,24,39,.08);
  box-shadow: 0 20px 55px rgba(17,24,39,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(17,24,39,.14);
}

.premium-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.premium-card-body {
  padding: 1.75rem;
}

.premium-card h3 {
  font-size: 1.35rem;
  letter-spacing: -.03em;
  margin-bottom: .75rem;
  color: #111827;
}

.contact-section {
  background: #111827;
}

.contact-panel {
  background: #fff;
}

@media (max-width: 768px) {
  .taurus-hero {
    min-height: 78vh;
    background-attachment: scroll;
  }

  .intro-section,
  .services-section,
  .contact-section {
    padding: 3.5rem 0;
  }
}