:root {
  /* Colors */
  --cream: #ded6d4;
  --red: #e35c49;
  --green: #6fb965;
  --tan: #f4d18a;
  --brown: #7a551e;
  --purple: #f12382;
  --blue: #52aad2;
  --dark: #2b251d;

  /* Font sizes */
  --paragraph-fs: 20pt;
  --heading-1-fs: 44pt;
  --heading-small-fs: 32pt;
  --button-fs: 20px;
}

body.easter-2024 {
  background-image: url(../images/global-texture.jpg);
  background-repeat: repeat;
  mix-blend-mode: screen;
  text-transform: uppercase;
}

p {
  line-height: 1.25;
  margin-bottom: 2rem;
  font-size: inherit;
}

strong {
  font-weight: bold;
  color: #635c5c;
}

p:last-child {
  margin-bottom: 0;
}

h3.heading-2 {
  font-size: 1.75rem;
}

em {
  font-style: normal;
  text-wrap: nowrap;
  font-weight:700
}

.wrap {
  padding-top: 80px;
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--paragraph-fs);
  color: var(--green);
}

@font-face {
  font-family: "Mefin";
  src: url("MEFINREGULAR.OTF");
}

.section {
  text-align: center;
  padding: 50px 0;
  color: #5c5f5c;
}

.section p, h3 {
  color:#191011;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Font Families */
/* P22 Mackinac Pro Bold Italic */
.bold.italic {
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-weight: 700;
  font-style: italic;
}

/* P22 Mackinac Pro Book */
.book {
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* P22 Mackinac Pro Book Italic */
.book.italic {
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-weight: 400;
  font-style: italic;
}

/* P22 Mackinac Pro Bold */
.bold {
  font-family: "alternate-gothic-condensed-a", serif;
  font-weight: 700;
  font-style: normal;
}

.nobold {
  font-weight: 300;
}

/** Utility */
.uppercase {
  text-transform: uppercase;
}

.left {
  text-align: left;
}
 
.nomargin {
  margin: 0;
  padding: 0;
}

.smallmargin {
  margin-bottom: 10px !important;
  padding-bottom: 0;
}

.section-1 {
  background: url(../images/sagebrush-easter-2024-top-right.png) top right no-repeat, url(../images/sagebrush-easter-2024-bottom-left.png) bottom left no-repeat, url(../images/sagebrush-easter-2024-top-bg.jpg) repeat;
  max-width: 100%;
  padding-bottom: 3rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-1 .section-inner {
  display: flex;
  flex-direction: column;
  align-self: center;
  align-items: center;
}

.section-1 .title-box {
  border: 5px solid var(--purple);
  padding: 15px 10px;
  color: var(--purple);
  font-size: 1.5rem;
  margin-top:2rem;
}

.section-2 {
  background: url(../images/sagebrush-easter-2024-intro-right.png) top right no-repeat, url(../images/sagebrush-easter-2024-white-bg.jpg) repeat;
  background-size: contain, auto;
  text-align: center; 
  display:flex;
  justify-content: center;
}

.section-3 {
  background: url(../images/sagebrush-easter-2024-invite-topleft.png) top left no-repeat, url(../images/sagebrush-easter-2024-invite-botright.png) right bottom no-repeat, url(../images/sagebrush-easter-2024-blue-bg.jpg) repeat;
  max-width: 100%;
  text-align: center;
}

.section-3 .column-content p {
  color: #2b251d;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0.03rem;
}

.section-4 {
  background: url(../images/sagebrush-easter-2024-white-bg.jpg) repeat;
}

.section-4 .section-inner {
  display:flex;
  flex-direction: column;
}

.section-4 h2 {
  width: fit-content;
  align-self: center;
  padding:1rem 2rem;
  line-height: 3rem;
  height: 5.5rem;
  margin-bottom:1rem;
}

.section-5 {
  background:url(../images/sagebrush-easter-2024-botsec-topleft.png) top left no-repeat, url(../images/sagebrush-easter-2024-botsec-botright.png) bottom right no-repeat,url(../images/sagebrush-easter-2024-orange-bg.jpg) repeat;
  max-width: 100%;
  text-align: center;
}

.setion-5 {
  color: var(--dark);
}

.section-6 {
}

.heading-1 {
  font-size: var(--heading-1-fs);
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: var(--blue);
  letter-spacing: 0.2rem;
}

.heading-small {
  font-size: var(--heading-small-fs);
}

.main-header {
  /* margin-top: calc(20vh - 80px); */
  position: relative;
}

.main-header img {
  max-width: 100%;
}

.header-button {
  /* position: absolute; */
  /* bottom: calc(32vh - 80px); */
  /* left: calc(100vw / 2 - 100px); */
  margin-top: 25px;
}

.easter-button {
  border: 1px solid #7c551c;
  display: inline-block;
  padding: 1rem;
  font-size: var(--button-fs);
  border-radius: 30px;
  width: 200px;
  /* height: 60px; */
  line-height: 1.5;
  background: #7c551c;
  color: #FFF;
}

.easter-button:hover {
  background: none;
  transition: background-image 300ms ease-in-out;
  color: #635c5c;
}

.easter-button.tan {
  border-color: var(--tan);
  color: var(--tan);

  background: url(/_img/easter/Button_Layer-6-min.png) 0px -250px no-repeat,
    /* fill */ url(/_img/easter/Button_Layer-5-min.png) 0px -250px no-repeat,
    /* fill */ url(/_img/easter/Button_Layer-4-min.png) 0px -250px no-repeat,
    /* top left */ url(/_img/easter/Button_Layer-3-min.png) 0px -250px no-repeat,
    /* left -100px */ url(/_img/easter/Button_Layer-2-min.png) 0px -250px no-repeat,
    /* top right */ url(/_img/easter/Button_Layer-1-min.png) 0px -250px no-repeat; /* bottom right */

  transition: background-position 300ms ease-out, box-shadow 300ms ease-out,
    transform 300ms ease-out;

  mix-blend-mode: difference;
}

.easter-button.green {
  border-color: var(--green);
  color: var(--green);
  transition: all 500ms;
}

/* .easter-button.green:hover {
  background: var(--green);
  color: var(--cream);
  transition: all 500ms;
} */

/* .easter-button.fancy {
  color: var(--cream);
  background: var(--green);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.125);

  background: url(/_img/easter/Button_Layer-6-min.png) -100px -100px,
    url(/_img/easter/Button_Layer-5-min.png) -100px -100px,
    url(/_img/easter/Button_Layer-4-min.png) -100px -100px,
     url(/_img/easter/Button_Layer-3-min.png) -100px -100px,
     url(/_img/easter/Button_Layer-2-min.png) -100px -100px,
     url(/_img/easter/Button_Layer-1-min.png) -100px -100px; 

  transition: background-position 300ms ease-out, box-shadow 300ms ease-out,
    transform 300ms ease-out;
} */

/* .easter-button.tan:hover,
.easter-button.fancy:hover {
  background-position: center center, center center, center center,
    center center, center center, center center;

  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.25);
  transition: all 300ms ease-out;
  transform: scale(1.1);
} */

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding-bottom: 0;
  max-width: 1000px;
  margin:auto;
}

.column-image {
  margin-bottom: 1rem;
  border:20px solid #fdc162;
  padding: 2rem 0;
}

.column-content-wrap {
  flex: 1 1 33%;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  z-index: 9;
}

.column-content-wrap div.column-content {
  flex-grow: 1;
  margin-bottom: 1rem;
}

.column-subtitle {
  color: #FFF;
  font-size: 3.5rem;
  margin: 2rem auto;
  font-family: Mefin;
  text-transform: lowercase;
  line-height: 3.5rem;
}

.section-time {
  margin-bottom: 60px;
  /* min-height: 510px; */
}

.section-time-1,
.section-time-2,
.section-time-3 {
  /* background: url(/_img/easter/Gradient-Square-1-min.png) top left no-repeat; */
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}

.section-time-1 .image-block,
.section-time-2 .image-block,
.section-time-3 .image-block {
  flex: 0 0 30%;
}

.section-time-1 .section-time-content {
  margin-left: 2rem;
}

.section-time-3 .section-time-content {
  margin-right: 2rem;
}


.section-time-2 > div:last-child {
  flex: 0 0 80%;
  flex: 0 0 50%;
}

.section-time-2 {
  /* background: url(/_img/easter/Gradient-Square-2-min.png) top left no-repeat; */
  flex-direction: row-reverse;
  text-align: center;
}

.section-time-1 .image-block {
  background: url(../images/sagebrush-easter-2024-times-deco.png) 100% 0% no-repeat;
  background-size: contain;
}

.section-time-3 .image-block {
  background: url(../images/sagebrush-easter-2024-times-deco-flip.png) 0% 0% no-repeat;
  background-size: contain;
}

.boxed {
  border: 10px solid #fdbf60;
}

.section-time-2 .image-block {
  background-position: 30% 80%;
}

/* .section-time-2 .image-block {
  flex: 1 1 70%;
} */

.section-time-3 .tv-time-heading {
  font-size: smaller;
}

.section-invite {
  padding: 30px 150px;
}

.section-time-content {
  /* margin-left: 193px; */
  /* padding-top: 40px; */
}

.easter-social-icon {
  display: inline-block;
  margin: 0 1rem;
}

.easter-social-icon .feather {
  fill: var(--purple);
  width: 50px;
  height: 50px;
  stroke: none;
}

.divider {
  height: 20px;
  background: url(/_img/easter/Gradient-Divider-min.png) left center no-repeat;
  background-size: 100% 20px;
}

.easter-social-icon {
  transition: all ease-in-out 300ms;
}

.easter-social-icon:hover {
  transform: scale(1.15);
  transition: transform ease-in-out 300ms;
}

.section-time-content p {
  line-height: 1.1;
}

.tv-time-heading {
  font-weight: 550;
  display: block;
  font-size: larger;
  margin-top: 20px;
  color:var(--green);
}

.tv-time-detail {
  color:var(--purple);
  font-weight: bold;
}

.orange {
  color: #e26642;
}

.brown {
  color:var(--brown);
}

.white {
  color:#FFF;
}

@media screen and (max-width: 1000px) {
  :root {
    --paragraph-fs: 20pt;
    --heading-1-fs: 34pt;
    --heading-small-fs: 24pt;
    --button-fs: 16px;
  }

  .section-inner {
    max-width: 90%;
  }

  .section-1 .section-inner img {
    max-width: 95%;
  }

  .columns {
    display: block;
    padding: 0 20px;
  }

  .column-content-wrap {
    padding: 2rem;
  }

  .column-image {
      width: 280px;
      align-self: center;
  }

  .section-invite {
    padding: 5%;
  }

  .section-5 {
    background-size: 30%, 30%, auto;
  }
}

@media screen and (max-width:375px) {
  .section-1 .section-inner img {
    max-width: 60%;
  }
}

@media screen and (max-width: 775px) {
  .section-time-content {
    margin-left: 50px;
  }

  .section-time .image-block {
    display:none;
  }

  .section-time-1 .image-block,
  .section-time-2 .image-block,
  .section-time-3 .image-block {
    flex: 0 0 15%;
  }

  .section-2 {
    background-size: 30%,auto;
}
}

@media screen and (max-width: 1280px) {
  .section-1 {
    background-size: 30%, 30%, auto;
  }
  .section-time-1,
  .section-time-2,
  .section-time-3 {
    background-size: 100%;
  }

  .section-time {
    margin-bottom: 50px;
    /* min-height: 310px; */
  }

  /* .section-time-content {
    margin-left: 100px;
  } */
  .section-time-2 .section-time-content {
    margin-right: 50px;
  }

  .wrap {
    padding-top: 60px;
  }
}

@media screen and (max-width: 400px) {
  .section-time-1,
  .section-time-2,
  .section-time-3 {
    justify-content: space-between;
  }
}

@media screen and (max-width: 300px) {
  .section-inner {
    max-width: 100%;
    padding: 0 1rem;
  }

  .section-time-content {
    margin-left: 10px;
  }
}

.wrapper {
  background:none !important;
}

.section-1.video-section {
  height:auto;
}

.section-1.video-section .line {
    margin-bottom:1rem;
    line-height: 1.5rem;
}


.video-wrapper {
  border: 5px solid var(--purple);
  padding-bottom: 0 !important;
  height: 543px;
  width: 310px;
  overflow: hidden;
}

.video-wrapper img {
  width: 100% !important;
  max-width: 100% !important;
}

.video-section .title-box {
  margin:0 0 2rem 0!important;
}

.video-section .header img {
  max-width:300px;
}

#footer {
  background:#221010 !important;
}

.section-2 .section-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.section-2 .section-inner p {
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.section-1 .title-box {
    padding-bottom: 8px;
    font-weight: 600;
}

.section-4 h2 {
    margin-bottom: 3rem;
}

#footer {
    background: #000 !important;
}

strong {
    color: #191011;
}

.section-3 .column-content p {
    color: #191011;
    line-height: 1.75rem;
}

#lang-es-entry a {
  text-transform: none !important;
}