* {
  margin: 0;
  padding: 0;
  font-family: "montserrat-bold";
  color: #f2f2f2;
  list-style: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #1A1A1A; 
  --secondary-color: #F4F3EF;
  --third-color: #C0FDAA;
  --alt-grey: #2e2e2e;
  --light-grey: #d6d6d6;
  --secondary-light-grey: #a1a1a1;
  --third-hover: #c0fdaa1e;
}


@font-face {
  font-family: 'montserrat-bold';
  src: url(Montserrat-Bold.ttf);
}

@font-face {
  font-family: 'montserrat-semibold';
  src: url(Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: 'montserrat-medium';
  src: url(Montserrat-Medium.ttf);
}

@font-face {
  font-family: 'montserrat-light';
  src: url(Montserrat-Light.ttf);
}

@font-face {
  font-family: 'montserrat-regular';
  src: url(Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'montserrat-italic';
  src: url(Montserrat-BoldItalic.ttf);
}

html {
  font-size: 16px;
}


h1 {
  font-size: 5rem;
  color: var(--third-color);
  padding: 20px 0 20px 0;
}

h2 {
  font-size: 2.6rem;
  color: var(--secondary-color);  
  padding: 20px 0 20px 0;
}

h3 {
  font-size: 1.5rem;
  color: var(--third-color);  
  padding: 20px 0 20px 0;
}

h4 {
  font-family: 'montserrat-regular';
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: var(--secondary-color);  
  text-transform: uppercase;
  text-align: center;
  line-height: 2rem;
}


p {
  font-size: 1rem;
  line-height: 2rem;
}

p, .p2 {
  font-family: 'montserrat-regular';
  color: var(--light-grey);
}

.p2 {
  font-size: 1rem;
  line-height: 1.6rem;
  color: var(--light-grey);  
  text-align: center;
}

button {
  font-size: 1rem;
  padding: 20px 30px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-radius: 50px;
  border: none;
  cursor: pointer;

}

/* Buttons */

.btn-1 {
  font-size: 1.2rem;
  transition: 400ms ease;
  font-family: 'montserrat-semibold';
}

.btn-1:hover {
  scale: 1.02;
  background-color: white;
}

.btn-2 {
  font-size: .8rem;
  background: none;
  border: 2px solid var(--third-color);
  color: var(--secondary-color);
  font-family: 'montserrat-medium';
  padding: 10px 20px;
  transition: 300ms ease;
}

.btn-2:hover {
  background: var(--third-hover);
}

.btn-3 {
  background: none;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-family: 'montserrat-medium';
  transition: 300ms ease;

}

.btn-3:hover {
  scale: 1.02;
  background: rgba(100, 100, 100, .2);


}

body {
  background-color: var(--primary-color);
}




/* Responsive Navigation */

nav, #navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
  position: fixed;
  background-color: var(--primary-color);
  width: 100%;
  z-index: 1000;
  transition: background-color .5s ease;
  box-shadow: 0 0px 50px  rgba(0, 0, 0, 0.5);
  top: 0;
}



.nav-logo img {
  height: 40px;
}

.nav-links ul {
  display: flex;
  gap: 20px;
}

.nav-links li {
  list-style: none;
  transition: 300ms ease;
}

.nav-links a, .mobile-nav-links a {
  text-decoration: none;
  color: var(--secondary-light-grey);
  letter-spacing: 2px;
  transition: 400ms ease;
  font-family: 'montserrat-medium';

}

.nav-socials img {
  height: 23px;
}


.nav-socials {
  display: flex;
  gap: 15px;
}


.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 24rem;
  position: fixed;
  right: -100%;
  top: 0;
  background-color: var(--primary-color);
  padding: 110px 0;
  z-index: 0;
  gap: 4rem;
  transition: right .3s ease;
  
}


.mobile-nav-links ul {
  margin: 0;
}

.mobile-nav-links {
  padding: 0;
}

.mobile-nav-links li {
  font-size: 1.5rem;
}

.mobile-social-icons img {
  height: 25px;
}

.mobile-social-icons {
  display: flex;
  gap: 15px;

}

.mobile-menu li {
  list-style: none;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  text-decoration: none;
}

.show {
  right: 0;
}

/* Hamburger Menu */

.menu {
  position: relative;
  width: 35px;
  height: 25px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

/* Style for the three hamburger bars */
.bar {
  width: 100%;
  height: 3px;
  border-radius: 20px;
  background-color: var(--secondary-color);
  transition: all 0.5s ease;
  position: absolute;
}

.bar1 {
  top: 0;
}

.bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.bar3 {
  bottom: 0;
}

/* When the menu is active, animate the bars */
.menu.active .bar1 {
  transform: rotate(45deg);
  top: 45%;
}

.menu.active .bar2 {
  opacity: 0;
}

.menu.active .bar3 {
  transform: rotate(-45deg);
  bottom: 45%;
}

.nav-links a:hover, .mobile-nav-links a:hover {
  color: var(--primary-light-grey);
}

.nav-links li:hover {
  scale: 1.02;

}

/* End of Nav */

header {
  position: absolute;
  overflow: hidden;
  width: 100%;
  z-index: 4;
}

/*Hero content*/


.hero {
  object-fit: cover;
  overflow: hidden;
  text-align: center;
  height: 100%;
  margin-top: 104px;
  width: 100%;
  overflow: hidden;
}

.blog-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 15%;
  position: absolute;
  overflow: hidden;
}

.hero-vid-1 {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 30%;
}


.hero-vid-2 {
  height: 100%;
  width: 100%;
  object-fit: cover;
}





.hero-3 {
  display: flex;
  margin-top: 104px;
  width: 100%;
  height: 90vh;
  padding: 0 2rem;
  align-items: center;
  gap: 60px;
  justify-content: center;
  position: relative;
  overflow: hidden;

}

.hero-3 p {
  max-width: 675px;
  font-size: 1.2rem;
  margin-bottom: 2.8rem;
  line-height: 2.4rem;
  text-align: left;
}

.hero-3-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-3-content {
  margin: 6rem 0;
  z-index: 2;
}


.hero-3 .hero-img-3 {
  position: absolute;
  width: 100%;          /* Keep the original width */
  height: 100%;         /* Keep the original height */
  max-width: none;      /* Prevent scaling */
  max-height: none;     /* Prevent scaling */
  opacity: 15%;
  overflow: hidden;
  object-fit: cover;
  border-radius: .5rem;

}

.profile-pic {
  height: 70px;
  width: 70px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  border: solid 2px var(--secondary-color);


}

.profile-pic img {
  width: 350%;
  height: 350%;
  transform: translate(-22%, -18%);
  position: absolute;
  object-fit: cover;

}

.hero, .hero-content, .hero-buttons {
  display: flex;  /* Use flexbox to center the text */
  flex-wrap: wrap;
  justify-content: center;  /* Horizontally center */
  align-items: center;  /* Vertically center */
}

.hero-img {
  position: absolute;
  width: 100%;          /* Keep the original width */
  height: 100%;         /* Keep the original height */
  opacity: 15%;
  object-fit: cover;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  margin: 6rem 0;
  text-align: center;
  z-index: 2;
  padding: 0rem 2rem;
  /* margin: 0 2rem; */
  flex-direction: column;

}

.hero p {
  max-width: 675px;
  font-size: 1.2rem;
  margin-bottom: 2.8rem;
  line-height: 2.4rem;
  text-align: left;
}


.hero-subheader {
  font-size:24px;
}

.hero-header {
  padding-bottom: 35px;
}

.hero-buttons {
  gap: 10px;
  flex-wrap: wrap;

}

.hero-4-img {
  overflow: hidden;
}

.hero-4-img img {
  position: relative;
  height: auto;
  width: 100%;
  max-width: 700px;
  z-index: 2;
  border-radius: .4rem;
    /* padding: 0 4rem; */
}


/*Mission Statement*/

.section-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  background: var(--primary-color);
  z-index: 2;

}

.section-1 p {
  max-width: 900px;
  padding: 0 3rem;
}

.section-1 h4 {
  color: var(--third-color);
}

.section-1 h2 {
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
}


/*Title Section*/

.title-section {
  text-align: center;
  padding: 0px 0 30px 0;
}


/*Card Section*/

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 5rem 0;
}

.card {
  width: 275px;
  height: 350px;
  overflow: hidden;
  position: relative;
  margin: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.5);
  transition: 500ms ease;
  position: relative;
  background: white;
}


.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top, 
    rgba(0, 0, 0, 1),  /* Dark at the top */
    rgba(0, 0, 0, 0)     /* Fully transparent at the bottom */
  );
  opacity: 1;
  transition: opacity 0.5s ease;
}

.card img {
  width: auto;
  height: 100%;
  transform: translate(-50%, -50%);  /* Adjust to center the image exactly */
  top: 50%;
  left: 25%;
  position: absolute;
  transition: 400ms ease;
  border-radius: 5px;
}

.card-content {
  width: 210px;
  position: absolute;
  left: 50%;
  margin-top: 255px;
  transform: translate(-50%, -50%);
}

.card-content h3 {
  text-align: center;
  padding-bottom: 5px;
}

#card-2 img {
  left: 50%;
}

#card-3 img {
  left: 48%;
}

#card-4 img {
  left: 65%;
}

#card-5 img {
  left: 39%;
}

.card:hover {
  scale: 1.04;
}

.card:hover img{
  opacity: 80%;
}


/*Tenats Section*/




.tenats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 100px;
  padding: 0 2rem;

}

.tenats h2 {
  margin-bottom: clamp(40px, 5vw, 80px);
  text-align: center;
}

.tenat-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.tenat-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 200px;
}

.tenat-circle {
  width: 100px;
  height: 100px;
  background-color: var(--alt-grey);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}

.tenat-card h4 {
  padding: 30px 0 10px 0;
}


/*Home Message*/

.home-message {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 5rem 2rem;
  text-align: center;


}

#home-img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 25%;
  object-fit: cover;
}

.message-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.message-content h2 {
  color: var(--third-color);
}

.message-icons img{
  width: 30px;
  margin: 5px 10px 0;

}


/*Tenats Section*/


/* Podcasts */

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3-column layout */
  gap: 20px; /* Space between cards */
  max-width: 1200px; /* Maximum width for the entire grid */
  padding: 0 28px; /* Padding around the grid */
  margin: 8rem auto;
}

/* Each card item */
.podcast-card {
  background: var(--alt-grey);
  /* background: linear-gradient(45deg, #042408, #62bd71); */
  border-radius: .4rem;
  aspect-ratio: 3 / 3; /* Maintaining a 4:3 aspect ratio */
  display: flex;
  text-align: left;
  font-size: 1.5rem;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.podcast-card h3 {
  padding: 0 0 1rem 0;
}


a {
text-decoration: none;
}

.podcast-buttons {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}


/*YouTube Page*/

  .hero-3 .hero-subheader {
    text-align: left;
  }



  .carousel {
    position: relative;
    height: 450px;
    width: 600px;
    margin: 0 80px 55px 80px;
    z-index: 2;

  }

  .carousel__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: .4rem;
    z-index: 0;
    overflow: hidden;
  }


  
  .carousel__track-container {
    /* background: lightgreen; */
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .carousel__track {

    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
    transition: transform 300ms ease-in;
    border-radius: .4rem;
  }

  .carousel__slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    border-radius: .4rem;
    transition: 300ms ease;
  }

  .carousel__slide::before {
    content:'';
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transition: 300ms ease;
  }

  .carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .carousel__button--left {
    left: -80px;
  }

  .carousel__button--right {
    right: -80px;
  }
  

  .carousel__button img {
    width: 15px;
  }

  .carousel__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 0 15px;
    gap: 12px;

  }

  .carousel__nav button {
    padding: 0;
  }

  .carousel__indicator {
    border: 0;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: rgba(100, 100, 100, .4);
    cursor: pointer;
  }

  .carousel__indicator.current-slide {
    background: rgb(196, 196, 196);
  }



  .carousel__copy {
    position: absolute;
    bottom: 0;
    padding: 50px; /* Optional: Add padding around text */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
  }


  .carousel__slide:hover::after {
    content:'';
    position: absolute;
    background: rgba(255, 255, 255, 0.068);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
  }

  .carousel__copy img {
    height: 30px;
    transition: 300ms ease;
  }

  .carousel__copy h3 {
    padding: 0px;
    color: var(--secondary-color);
  }





  /* .is-hidden {display: none;} */

/*YouTube Carousel End*/


/* Thoughts Page Styling*/

.blog-header {
  padding-bottom: 4rem;
}

.blog-container {
  margin-top: 0;
}

.blog-card {
  background-color: var(--alt-grey);
  border-radius: .4rem;
  aspect-ratio: 3 / 3; /* Maintaining a 4:3 aspect ratio */
  display: flex;
  text-align: left;
  font-size: 1.5rem;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 300ms ease;
}

.blog-card h3 {
  padding-top: 0px;
}

.blog-pic-date p {
  font-family: 'montserrat-semibold';
}

.blog-pic-date {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-headshot {
  height: 50px;
  width: 50px;
  overflow: hidden;
  border-radius: 500px;
  position: relative;
}

.blog-pic-date img {
  height: 200px;
  width: auto;
  position: absolute;
  right: -155px;
  top: -43px;
}

.blog-card:hover {
  scale: 1.02;
}


/* End of Blog Card */


/* Blog Post */

.blog-post {
  max-width: 1200px;
  padding: 0 2rem 6rem 2rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;

}

.blog-post p {
  font-size: 1.2rem;
  line-height: 2.4rem;
}

.blog-time {
  font-size: 1.5rem;
  font-family: 'montserrat-semibold';
}

.blog-ending {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.blog-ending p {
  font-family: 'montserrat-italic';
  font-size: 1.2rem;
}

.blog-ending a {
  font-family: 'montserrat-medium';
}

#sub-blog {
  margin-top: 100px;
}

/* End of Blog Post */

/* About Page */

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  padding: 40px;

}




.photo-gallery {
  display: flex;
  gap: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.photo img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}





/* .container {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  grid-auto-rows: 75px;
  }
  .horizontal {
  grid-column: span 2;
  }
  .vertical {
  grid-row: span 2;
  }
  .big {
  grid-column: span 2;
  grid-row: span 2;
  } */


  /* Contact Page Start */

  .contact-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    z-index: 2;
    padding: 4rem;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    overflow: hidden;
    border-radius: .4rem;
    margin-left: 4rem;
  }

  .contact-container h3 {
    padding: 0;
    font-size: 2rem;
  }

  .contact-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    
  }


  .contact-link-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    
  }

  .contact-link-row p {
    margin: 0;
    flex-wrap: wrap;
    word-break: break-word; /* Allows long words to break */
    line-height: 1.4rem;
  }
  

  .contact-link-row img {
    width: 30px;
    height: auto;
    padding: 0;
  }

  #contact-logo {
    position: absolute;
    opacity: 6%;
    width: 60%;
    height: auto;
    right: -30%;
  }
  


  /* contact page end */


footer {
  background: linear-gradient(45deg, #365B29, #97D980);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;

}

footer #logo-mark {
  position: absolute;
  margin: 0 100px;
  opacity: 10%;
  z-index: 2;
}

.footer-content {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  padding-right: 2rem;
  padding-left: 2rem;

}

.footer-nav-links {
  display: flex;
  gap: 15px;
  padding: 15px 0 23px 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav-links a {
  font-family: 'montserrat-medium';
}

.footer-content .footer-nav-links .footer-nav-pages a {
  font-size: 8pt;
  text-decoration: none;
  transition: color .5s ease;
  font-weight: 360;
}

.footer-content img {
  width: 100px;
}

.message-icons img {
  width: 20px;
  margin: 0 5px;
}




.footer-content .footer-nav-links .footer-nav-pages a:hover {
  color: var(--third-color);
}


 /* Section Animations */

 .hidden {
  opacity: 0;
  transform: translateY(20px); /* Start with a slight offset */
  transition: all 1.5s ease-out; /* Smooth transition */
}

/* Show sections when the class 'visible' is added */
.visible {
  opacity: 1;
  transform: translateY(0); /* Bring to normal position */
}



@media (max-width: 1200px) {

  .menu {
      display: block;
  }

  .nav-links, .nav-socials {
      display: none;
  }

  .hero-3 {
    flex-direction: column;
    height: 100%;
    gap: 10px;
  }

  .carousel {
    padding-bottom: 4rem;
  }

  .hero-3-content {
    margin-bottom: 2rem;
  }

  .contact-container {
    margin-bottom: 4rem;
    margin-left: 0;
  }
}

@media (max-width: 1000px) {

  html {
    font-size: 14px;
  }

  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 3-column layout */
    padding: 0 6rem;
  }
}

@media (max-width: 800px) {
  .carousel {
    width: 90%;
    height: 550px;
  }

  .grid-container {
    padding: 0 2rem;
    margin: 4rem 0;
  }

}


@media (max-width: 725px) {
  .carousel {
    width: 80%
  }

  .hero-3-content {
    padding: 4rem;
  }

  .photo-gallery {
    flex-direction: column;
  }
  }



 



@media (max-width: 500px) {

  h1 {
    font-size: 3rem;
  }

  h4, .hero-subheader {
    font-size: 1.2rem;
  }

  h4 {
    max-width: 300px;
  }

  h2 {
    font-size: 2rem;
  }

  .carousel h3 {
    font-size: 1.2rem;
  }

  .carousel__copy .play-icon {
    height: 15px;
  }

  .carousel__copy {
    padding: 25px;
  }

  .hero-3-content {
    padding: 2rem;
  }


  .blog-header {
    padding-top: 4rem;
  }

  .blog-container {
    margin-bottom: 2rem;
    margin-top: 0;
  }

  .blog-ending {
    justify-content: center;
    gap: 2rem;
  }

  /* .blog-container p {
    font-size: 1.2rem;
  } */

  .hero-header {
    padding: 1rem 0 1.2rem 0;
  }

 .hero-buttons {
  gap: 25px;
 }

  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }

  
  .carousel {
    height: 325px;
  }


  /* .podcast-card p {
    font-size: 1.2rem;
  } */

  .btn-2 {
    font-size: 1.2rem;
  }

  .section-1 {
    padding: 4rem 0;
  }

  .section-1 h2 {
    padding: 1rem;
  }
 
  p {
    font-size: 16px;
  }
}


 .hero-3-content {
  margin: 4rem 0;
  padding: 0;
 }


 .hero-4-img img {
  /* padding: 0 2rem; */
  margin-bottom: 64px;
 }



@media (max-width: 400px) {



}