/* Section Variables
================================================== */
/* Common Section Styles
================================================== */
.section-content {
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .section-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 990px) {
  .section-content {
    padding-left: 4.5em;
    padding-right: 4.5em;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3em;
}
.section-header h2 {
  color: #BC9467;
  margin-bottom: 0.5em;
}
.section-header p {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

/* Card Grid
================================================== */
.card-grid .columns {
  margin-bottom: 2em;
}

/* About Section
================================================== */
.section-about {
  background-color: #fff;
  padding-top: 5em;
  padding-bottom: 5em;
}
@media (min-width: 990px) {
  .section-about {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
.section-about .row {
  align-items: center;
}
.section-about h2 {
  color: #BC9467;
  margin-bottom: 1em;
}
.section-about p {
  margin-bottom: 1.5em;
}
.section-about .feature-list {
  list-style: none;
  padding: 0;
  margin: 2em 0 0 0;
}
.section-about .feature-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
  color: #6E6C71;
}
.section-about .feature-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.5em;
  height: 0.5em;
  background-color: #BC9467;
}
.section-about .about-visual {
  margin-top: 2em;
}
@media (min-width: 990px) {
  .section-about .about-visual {
    margin-top: 0;
    padding-left: 2em;
  }
}
.section-about .visual-placeholder {
  background: linear-gradient(135deg, #162E29 0%, #0e1f1b 100%);
  padding-bottom: 75%;
  position: relative;
}
.section-about .visual-placeholder:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4em;
  height: 4em;
  border: 2px solid #BC9467;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

/* About Text Animation Delay
---------------------------------------------------- */
.about-text > *:nth-child(2) {
  transition-delay: 0.1s;
}
.about-text > *:nth-child(3) {
  transition-delay: 0.2s;
}
.about-text > *:nth-child(4) {
  transition-delay: 0.3s;
}
.about-text > *:nth-child(5) {
  transition-delay: 0.4s;
}

/* Technology Section
================================================== */
.section-technology {
  background-color: #162E29;
  color: #fff;
  padding-top: 5em;
  padding-bottom: 5em;
}
@media (min-width: 990px) {
  .section-technology {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
.section-technology .section-header h2 {
  color: #BC9467;
}
.section-technology .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* Technology Cards
---------------------------------------------------- */
.card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2em;
  height: 100%;
  -webkit-transition: transform 0.3s, background-color 0.3s;
  -moz-transition: transform 0.3s, background-color 0.3s;
  -ms-transition: transform 0.3s, background-color 0.3s;
  -o-transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s;
}
@media (hover: hover) {
  .card:hover {
    -webkit-transform: translateY(-0.5em);
    -moz-transform: translateY(-0.5em);
    -ms-transform: translateY(-0.5em);
    -o-transform: translateY(-0.5em);
    transform: translateY(-0.5em);
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.card .card-icon {
  width: 3em;
  height: 3em;
  margin-bottom: 1.5em;
}
.card .card-icon svg {
  width: 100%;
  height: 100%;
  stroke: #BC9467;
}
.card h3 {
  color: #fff;
  margin-bottom: 0.75em;
  font-size: 1.1em;
}
.card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0;
}

/* Card Animation Delays
---------------------------------------------------- */
.card-grid .columns:nth-child(1) .addclass-on-intersect {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.card-grid .columns:nth-child(2) .addclass-on-intersect {
  -webkit-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.card-grid .columns:nth-child(3) .addclass-on-intersect {
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.card-grid .columns:nth-child(4) .addclass-on-intersect {
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  -ms-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

/* Projects Section
================================================== */
.section-projects {
  background-color: #f5f5f5;
  padding-top: 5em;
  padding-bottom: 5em;
}
@media (min-width: 990px) {
  .section-projects {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}
.section-projects .section-header h2 {
  color: #BC9467;
}
.section-projects .section-header p {
  color: #6E6C71;
}

/* Project Cards
---------------------------------------------------- */
.project-card {
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: transform 0.3s, box-shadow 0.3s;
  -moz-transition: transform 0.3s, box-shadow 0.3s;
  -ms-transition: transform 0.3s, box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
}
@media (hover: hover) {
  .project-card:hover {
    -webkit-transform: translateY(-0.5em);
    -moz-transform: translateY(-0.5em);
    -ms-transform: translateY(-0.5em);
    -o-transform: translateY(-0.5em);
    transform: translateY(-0.5em);
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .project-card:hover .project-image {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.project-card .project-image {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
}
.project-card .project-content {
  padding: 1.5em;
}
.project-card .project-tag {
  display: inline-block;
  background-color: #BC9467;
  color: #fff;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4em 0.8em;
  margin-bottom: 1em;
}
.project-card h3 {
  color: #162E29;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.project-card p {
  color: #6E6C71;
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0;
}

/* Contact Section
================================================== */
.section-contact {
  background-color: #fff;
}
.section-contact .section-header {
  text-align: left;
  margin-bottom: 2em;
}
.section-contact .section-header h2 {
  color: #BC9467;
}
.section-contact .section-header p {
  color: #6E6C71;
  max-width: 30em;
  margin-left: 0;
}
