
.title{
    color: black;
    font-size: 30px;
    font-family: Chelsea Market;
    font-weight: 400;
    word-wrap: break-word;
    text-align: center;
    transition: height 0.2s ease;
    margin: 0 0;
}

@media (max-width: 576px) {
  .title {
    font-size: 30px;
  }
}

.title-heading{
    color: black;
    font-size: 15px;
    font-family: Cedarville Cursive;
    font-weight: 400;
    word-wrap: break-word;
    text-align: center;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

@media (max-width: 576px) {
  .title-heading {
    font-size: 10px;
  }
}

nav{
    margin: 15px;
    border-radius: 25px;
}

.nav-toggle-img {
  margin-right: 10px;
  height: 60px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.nav-toggle-img:hover {
  transform: scale(1.05);
}

.navbar-toggler:focus,
.navbar-toggler:active {
  box-shadow: none !important; 
  outline: none !important; 
  background: transparent !important; 
}

.social-nav-logo{
    margin-right: 25px;
}

.navbar-brand{
    margin: 10px;
}

.navbar-nav .nav-link{
  color: black;
  font-size: 20px;
  font-family: Chelsea Market;
  font-weight: 0;
  word-wrap: break-word;
  text-align: center;
  transition: height 0.2s ease;
  margin: auto 20px;
  padding-bottom: 1rem;
}

a {
  color: #ffffff;
  text-decoration: underline;
}

a.link {
  color: #000000;
}

a.card-title {
  color: #000000;
  text-decoration:underline;
}

.card{
  border-radius: 25px;
  overflow: hidden;
}

.card .row {
  height: 100%;
}

.card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card .card-body {
  display: flex;
  flex-direction: column;
}

.card .card-body .mt-auto {
  margin-top: auto; /* pushes the date to the bottom */
}











.nav-photo {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 100px;
    height: 100px;
    width: auto;
    transition: height 0.2s ease;
}

/* Shrink at medium screen sizes */
@media (max-width: 992px) {
  .nav-photo {
    height: 80px;
  }
}

/* Shrink more for small tablets */
@media (max-width: 768px) {
  .nav-photo {
    height: 60px;
  }
}

/* Shrink even more for mobile */
@media (max-width: 576px) {
  .nav-photo {
    height: 40px;
  }
}

.all-carousel{
    position: relative;
    overflow: visible;
}


.carousel-indicators li,
.carousel-indicators .active,
.carousel-indicators [data-bs-target]{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 5%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border: none;
    transition: none;
    transform: none; 
}

.carousel-indicators {
    width: 25%;
    margin: 0.5%;
    bottom: 5px;     
    left: 10px;
    background-color: rgba(234, 234, 234, 0.593); 
    border-radius: 25px;    
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.carousel-indicators li {
  background-color: #D9D9D9;
}

.carousel-indicators li.active {
  background-color: #0d5aa2;
}

.carousel-container {
    max-width: 90%;
              /* <--- fixed height here! */
    margin: 30px auto;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.22);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.carousel{
    background-color: #0d5aa200;

}

.carousel-inner, .carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: auto;
    object-fit: cover;       /* fill and crop as needed, never stretch */
    display: block;
    border-radius: 0;        /* corners by container */
    margin: 0;
    box-shadow: none;
}

.carousel-img-vertical {
  width: 100%;
  height: auto;
  object-fit: contain; /* show the entire vertical image */
  background-color: #000; /* optional: adds a black border instead of white if aspect ratios differ */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  mix-blend-mode: difference;
  filter: invert(1);

}



.carousel-control-prev-icon {
  margin-left: -25%;
}

.carousel-control.right {
  margin-right: -25%;
}


.info-box{
    max-width: 50%; 
    background: rgba(255, 255, 255, 0.47); 
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
    border-radius: 25px;
    margin: auto;
    margin-top: 20px;
}

.text-box{
    margin-left: 15px;
}

.middle{
  max-width: 65%;
  margin: 30px auto;
  overflow: hidden;
  position: relative;
}








/* ABOUT */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgb(0, 0, 0);
   
}

.carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll-left 20s linear infinite;
    padding: 1rem;
    will-change: transform;
}

.carousel-track img {
    height: 300px;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-left {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}


.carousel-track > * {
    flex: 0 0 auto;
}

.text-primary{
    color: rgb(83, 151, 83);
}






/* PROJECTS */
.project-title{
    color: black;
     font-size: clamp(1.8rem, 5vw, 3rem);
    font-family: Chelsea Market;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
    transition: height 0.2s ease;
}

.project-heading{
  color: black;
    font-size: clamp(1.2rem, 3.5vw, 2.2rem);
    font-family:  Chelsea Market;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.project-status{
    font-size: 20px;
    font-family:  Chelsea Market;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
}


