html, body {
    background-color: white;
    margin: 0;
    padding: 3% 0 0 0;
    overflow-x: hidden;
}

h1 {
  font-size: clamp(1.7rem, 3.5vw, 3.5rem);
  white-space: nowrap;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

h3 {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

h4 {
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

p {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-style: normal;
}

hr{
    width: 20%;
}

footer{
    margin-top: 50px;
    background-color: #f8f8f8;
    height: 110px;
    text-align: center;
    vertical-align: middle;
}

.white-text{
    color: #ffffff;
}

.white-section{
    padding: 0 0 0 0;
}

.darker-section{
    background-color: #2f0909;
}


/* Home */

.welcome-page{
    text-align: left;
    padding-left: 6rem;
}

@media screen and (max-width: 800px) {
    .welcome-page{
        text-align: center;
        padding-left: 0;
        padding-top: 15%;
    }
}

.column-pic{
    position: block;
    width: 100%;
    max-width: 100%;
    text-align:center;
    margin: 0;
}

.title-pic{
    height: 90%;
    width: 90%;
    object-fit: contain;
}

.title-pic-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .title-pic-div{
        margin-top: 2%;
    }
}


.me-title{
    position: relative;
    top: 9.5%
}


.my-niche{
    position: relative;
    top: 11%;
}

.icon:hover {
    color: #2ac3ae;
}

.icon:active{
    color: #383838;
}

.icon{
    color: #383838;
}

/* About Me */

.about{
    margin: 1% 10%;
}

.content-pillars{
    margin-top: 3%;
}

.about-me-image-div{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.about-me-image{
    height: 80%;
    width: 80%;
    object-fit: contain;
}

.about-me-blurb{
    padding-top: 5%;
    padding-right: 3%;
    padding-left: 3%;
    padding-bottom: 5%;
}

@media screen and (max-width: 800) {
    .about-me-blurb{
        padding-top: 3%;

    }
}

#about-me.darker-section{
    padding: 70px 5% 0;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}

.social-item {
  display: flex;
  align-items: center;   
  justify-content: center; 
  gap: 10px;
}

.platform-logo {
  width: 40px;
  height: auto;
}

.platform-number {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    font-style: normal;
}

/* Portfolio */

.portfolio-section{
    padding: 0% 5%;
}

.col{
    padding: 0.5%;
}

.vimeo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.column-pic.vimeo-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.column-pic.vimeo-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}



/* Past Partnerships */

.past-partnerships-section {
  padding: 4rem 2rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
}

@media (max-width: 800px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.logo-grid img {
  width: 100%;
  height: 60px;             
  max-width: 90px;
  margin: 0 auto;
  object-fit: contain;      
}


/* navbar styling */

.navbar{
    padding: 2% 4%;
    z-index: 1000;
    background-color: white;
    line-height: 25px;
}

.navbar-nav .nav-link {
    padding: 3% 0;
}

.mh-fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-toggler{
    border: none;
}

.nav-item{
    padding: 0 18px;
    text-align: right;
}

.nav-social-item{
    padding: 0 18px;
    text-align: left;
}

.nav-link{
    font-size: 1.1rem;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

@media screen and (max-width: 800px) {
    .nav-link{
        font-size: 0.8rem;
    }
}