/* CSS Custom Properties */
:root {
  --header-height: 40vh;
}

body, html {
  background: #292929;
  color: #333;
  font: 1em/1.5em "Lato", Helvetica, Arial, sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

::selection {
  background: #a4a4a4;
}

h1 {
  font: 2em/1.3em "Dosis";
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font: 400 2.2em/1.2em "Dosis";
  text-shadow: 0 1px 0 #333;
  text-transform: uppercase;
}

h3 {
  font: 1.5em/1.3em "Dosis";
  letter-spacing: 0.1em;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-out;
  z-index: 100;
  transform: translateY(0);
}

.contentpush {
  padding-top: 5em !important;
}

.maxcontainer {
  margin: 0 auto;
  max-width: 2000px;
}

header {
  background: #2e2e2e;
  height: 40%;
  z-index: -1;
}

#container {
  position: fixed;
  height: 100%;
  width: 100%;
}

#cover {
  background: url(../img/adam_cover.jpg) center center/cover;
  height: 50%;
  width: 100%;
}

#cover::before, #cover::after {
  background-color: rgba(115, 167, 121, 0.7);
  box-sizing: border-box;
  content: " ";
  height: 50%;
  left: -25%;
  position: absolute;
  width: 150%;
}

#cover::before {
  bottom: 20%;
  transform: rotate(5deg);
}

#cover::after {
  bottom: 15%;
  transform: rotate(-2deg);
}

.name {
  color: #fff;
  font: 3em/2em "Dosis", "Impact", sans-serif;
  margin-top: -1em;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  bottom: 60%;
  width: 100%;
  z-index: 1000;
}

#content {
  background: #fff;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 100;
}

#more {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 5px 5px 0 0;
  color: #fff;
  font-size: 1em;
  left: 50%;
  margin-left: -1.25em;
  padding: 0.5em 1em;
  position: absolute;
  top: -2.5em;
  transition: all 0.3s;
  z-index: 1;
}

#more:hover {
  background: #275c23;
  cursor: pointer;
  padding-bottom: 1em;
  top: -3em;
}

nav {
  background: #73a779;
  color: #fff;
  font-size: 0.75em;
  text-transform: uppercase;
  width: 100%;
  transition: all 0.3s ease-out;
}

#navleft {
  display: inline-block;
  margin: 0 1em;
  padding: 0.625em 1em;
}

#navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}

#navigation li {
  border-radius: 5px;
  display: inline-block;
  font-weight: 300;
  padding: 0.5em 1em;
  transition: all 0.15s;
}

#navigation li:hover {
  background: #8cbc8b;
  cursor: pointer;
}

#navigation li a {
  color: #fff;
  text-decoration: none;
}

#title {
  font-weight: 400 !important;
}

#navright {
  background: #8cbc8b;
  border-radius: 5px;
  display: inline-block;
  float: right;
  margin: 0.5em 2em;
  padding: 0.625em 1em;
}

#navright:hover {
  cursor: pointer;
}

#about {
  background: #464646 url(../img/ics.png) fixed center center;
  color: #fff;
  margin: 0;
  padding: 2em 0;
  text-align: center;
  width: 100%;
}

.person {
  display: inline-block;
  margin: 1em 2em;
  width: 50%;
}

.about-me {
  font-weight: 300;
  text-align: justify;
}

.photo {
  border-radius: 100%;
  border: 0.4rem solid #73a779;
  height: auto;
  max-height: 250px;
  max-width: 250px;
  transition: all 0.2s;
  width: 50%;
}

#goals {
  padding: 2em;
  text-align: center;
}

#grid {
  display: flex;
  align-items: stretch;
}

.goal {
  background: #8cbc8b;
  box-sizing: border-box;
  display: inline-block;
  margin: 1.5%;
  vertical-align: top;
  width: 20%;
}

.goal img {
  margin-right: auto;
  margin-left: auto;
  padding: 1em;
  display: block;
}

.goal p {
  padding: 1em;
}

.goal a {
  text-decoration: none;
  color: inherit;
}

#vote {
  background: #afcb9e;
  padding-bottom: 2em;
  text-align: center;
}

#vote h1, #vote p {
  color: #444;
  margin: 0;
  padding: 1em 0 0 !important;
  width: 100%;
}

#contact {
  background: #568f52 url(../img/ics.png) fixed center center;
  color: #d6d9dc;
  padding: 2em;
  text-align: center;
}

#contact h1 {
  margin-bottom: 0.5em;
}

.button {
  background: #d6d9dc;
  border-radius: 5px;
  border: 2px solid #d6d9dc;
  color: #444;
  display: inline-block;
  margin: 1em;
  max-width: 180px;
  padding: 0.75em 4em;
  text-decoration: none;
  transition: all 0.3s;
}

.button:hover {
  box-shadow: 0 0 0 5px #73a779;
  color: #568f52;
}

footer {
  background: #344a33 url(../img/cssu.png) no-repeat center right 2em;
  background-size: 230px 230px;
  color: #aaa;
  font-size: 0.9em;
  padding: 1em 2em;
  position: relative;
}

footer a {
  border-bottom: 1px dotted #777;
  color: #aaa;
  text-decoration: none;
}

#ccimg {
  border-bottom: 0;
}

#cc {
  font-size: 0.75em;
  margin-top: 0;
}

@media only screen and (max-width: 500px) {
  footer {
    background-position: center center;
  }
}
@media only screen and (max-width: 775px) {
  #grid {
    flex-flow: column nowrap;
  }
  .goal {
    margin: 1em 0 !important;
    width: 100%;
  }
  .person {
    width: auto;
  }
}
@media only screen and (max-width: 850px) {
  nav {
    text-align: center;
  }
  #navright {
    display: none !important;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer {
    background-image: url(../img/cssu@2x.png);
  }
}
/* Blog Styles */
.blog-page {
  background: #f8f8f8;
  min-height: 100vh;
  padding: 2em 0;
}

/* Fixed navigation for blog page */
.blog-page #nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Enhanced blog navigation with scroll effects */
.blog-nav-scrolled {
  backdrop-filter: blur(10px) !important;
  background: rgba(115, 167, 121, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.blog-page #nav #navigation li {
  transition: all 0.2s ease;
}

.blog-page #nav #navigation li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.blog-page {
  padding-top: 6em;
}

.blog-page h1 {
  color: #2e2e2e;
  margin: 2em 0 1em;
  font-size: 2.5em;
}

.blog-posts {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2em;
}

.blog-post {
  background: #fff;
  border-left: 4px solid #73a779;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 3em;
  padding: 2.5em;
  transition: all 0.3s ease;
}

.blog-post:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.blog-post .post-header {
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.blog-post .post-header h2 {
  color: #2e2e2e;
  font: 400 1.8em/1.2em "Dosis";
  margin: 0;
  text-shadow: none;
  text-transform: none;
  align-self: flex-start;
  width: 100%;
}

.blog-post .post-header h2 a {
  color: #2e2e2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post .post-header h2 a:hover {
  color: #73a779;
}

.blog-post .post-meta {
  color: #999;
  font-size: 0.7em;
  font-weight: 300;
  margin: 0 0 0.5em 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  order: -1;
}

.blog-post .post-excerpt {
  color: #555;
  line-height: 1.7;
  font-size: 1.1em;
}

.blog-post .post-excerpt p {
  margin: 1em 0;
}

.blog-post .read-more {
  color: #73a779;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.blog-post .read-more:hover {
  color: #8cbc8b;
  text-decoration: underline;
}

/* Blog navigation current state */
nav #current {
  background: #8cbc8b;
  color: #fff;
}

/* Empty state styling */
.blog-posts > p {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #666;
  font-size: 1.1em;
  padding: 3em;
  text-align: center;
}

/* Responsive blog styles */
@media only screen and (max-width: 768px) {
  .blog-page {
    padding: 1em 0;
  }
  .blog-page h1 {
    font-size: 2em;
    margin: 1em 0;
  }
  .blog-posts {
    padding: 0 1em;
  }
  .blog-post {
    padding: 2em 1.5em;
    margin-bottom: 2em;
  }
  .blog-post .post-header h2 {
    font-size: 1.5em;
  }
  .blog-post .post-excerpt {
    font-size: 1em;
  }
}
/* Individual blog post styles */
.post {
  background: #fff;
  border-left: 4px solid #73a779;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  padding: 3em;
}

.post-header {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 2px solid #f0f0f0;
  background: transparent;
}

.post-title {
  color: #2e2e2e !important;
  font: 400 2.5em/1.2em "Dosis";
  margin: 0 0 0.5em 0;
  text-shadow: none !important;
  text-transform: none;
  background: transparent;
}

.post-meta {
  color: #888 !important;
  font-size: 1em;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
}

.post-content {
  color: #555;
  line-height: 1.7;
  font-size: 1.1em;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
  color: #2e2e2e;
  font-family: "Dosis";
  margin: 2em 0 1em 0;
}

.post-content h1 {
  font-size: 2em;
  border-bottom: 3px solid #73a779;
  padding-bottom: 0.3em;
}

.post-content h2 {
  font-size: 1.8em;
  color: #73a779;
}

.post-content h3 {
  font-size: 1.5em;
}

.post-content p {
  margin: 1.5em 0;
}

.post-content code {
  background: #f5f5f5;
  border-radius: 3px;
  padding: 0.2em 0.4em;
  font-size: 0.9em;
}

.post-content pre {
  background: #f8f8f8;
  border-left: 4px solid #73a779;
  border-radius: 4px;
  overflow-x: auto;
  padding: 1em;
  margin: 2em 0;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-content blockquote {
  border-left: 4px solid #73a779;
  color: #666;
  font-style: italic;
  margin: 2em 0;
  padding: 0 0 0 2em;
}

.post-content ul, .post-content ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.post-content li {
  margin: 0.5em 0;
}

.post-content a {
  color: #73a779;
  text-decoration: none;
  border-bottom: 1px solid #73a779;
  transition: all 0.3s ease;
}

.post-content a:hover {
  color: #8cbc8b;
  border-bottom-color: #8cbc8b;
}

@media only screen and (max-width: 768px) {
  .post {
    padding: 2em 1.5em;
    margin: 0 1em;
  }
  .post-title {
    font-size: 2em;
  }
  .post-content {
    font-size: 1em;
  }
  .post-content h1 {
    font-size: 1.8em;
  }
  .post-content h2 {
    font-size: 1.5em;
  }
}
.icon-wrapper {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-wrapper .crop-img {
  transform: scale(0.5);
}

.crop-img {
  width: 309px;
  height: 263px;
  object-fit: none;
}

.crop-systems {
  object-position: -757px -392px;
}

.crop-video {
  object-position: -425px -82px;
}

.crop-leadership {
  object-position: -72px -87px;
}

.crop-ecommerce {
  object-position: -69px -391px;
}

.crop-trading {
  object-position: -418px -391px;
}

.crop-calendar {
  object-position: -757px -392px;
}

/* Carousel Container */
.carousel-container {
  width: 100%;
  overflow: hidden;
  padding: 30px 0 40px 0; /* Extra padding for shadows */
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  touch-action: pan-x; /* Lock to horizontal scrolling only */
  overflow-y: hidden;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Carousel Cards */
.carousel-card {
  flex: 0 0 256px;
  width: 256px;
  min-height: 300px;
  background: #8cbc8b; /* Original goal class green */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.carousel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.12);
  background: #afcb9e; /* Original goal hover color */
}

.card-link,
.card-content {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card-inner {
  padding: 24px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card-inner p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 240px;
    width: 240px;
  }
  .carousel-track {
    padding: 0 16px;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .carousel-card {
    flex: 0 0 220px;
    width: 220px;
  }
  .carousel-track {
    padding: 0 12px;
    gap: 12px;
  }
}

/*# sourceMappingURL=main.css.map */