@charset "UTF-8" ;
/*headline: font-family: 'Alfa Slab One', serif;
paragraph: font-family: 'Quicksand', sans-serif;
*/

/* Portfolio colors:
orange: #ED7D31
light brown: #6C5F5B
dark brown: #4F4A45
beige: #F6F1EE
darkest brown:#171513
*/
body {font-family: 'Quicksand', sans-serif;
	color:#F6F1EE;
	background-image: url("../images/cartographer.png");
	background-repeat: repeat;
}
h2, h3, h4 {
    font-family: 'Alfa Slab One', serif;
    color: #F6F1EE;
}
h1 {font-family: 'Alfa Slab One', serif;
	color:#ED7D31;
}
h3 {
    font-family: 'Quicksand', sans-serif;
	color:#F6F1EE;
}
h5 {
    font-family: 'Alfa Slab One', serif;
	color: #F6F1EE;}
p {font-family: 'Quicksand', sans-serif;
	color:#F6F1EE;
	}


.navbar-custom {font-family: 'Alfa Slab One', serif;
}

/* Background color for navbar and dropdown menus */
.navbar-custom, .navbar-custom .dropdown-menu {
    background-color: #F6F1EE;
}
/* Text color for navbar and dropdown menus */
.navbar-custom .navbar-brand, .navbar-custom .navbar-text,
.navbar-custom .navbar-nav .nav-link,
.navbar-custom .dropdown-item {
    color: #4F4A45;
}
/* Background and text colors for current page link and links on hover and focus */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link,
.navbar-custom .nav-item:focus .nav-link,
.navbar-custom .dropdown-item:hover, 
.navbar-custom .dropdown-item:focus {
    background-color: #ED7D31;
    color: #4F4A45;
}
/* Border and text colors for menu icon on small screens */
.custom-toggler.navbar-toggler {
    border-color: rgba(79,74,69,1.00);
    color: #4F4A45;
}
/* Hamburger icon - use same rgb values as previous rule for stroke */
.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(79,74,69,1.00)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

/*navbar-brand logo*/
.navbar-brand {
    background-image: url("../images/ClementineLogo1.png");
    background-repeat: no-repeat;
    background-size: 50px auto;
    background-position: 6% center;
    padding-left: 70px;
	
}
/*header banner section*/
#home_banner {
  display: flex;
  flex-direction: column;
  align-items: center; /* center horizontally */
  justify-content: center; /* center vertically */
  height: 30vh;
  padding: 0 20px;
  text-align: center; /* center text inside */
  position: relative; /* if needed for other elements */
}

/*featurette*/
.featurette-heading { 	
	padding-top: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .03rem;}

/*header banner section*/
#home_banner h1 {
    font-size: 4rem;
    position: absolute;
    text-shadow: 0px 0px 5px #4F4A45
}


/*Media Query Breakpoints*/
/*X-SMALL ONLY*/
@media screen and (min-width:375px){
#home_banner h1 {
    font-size: 1.3rem;
    }    
}


/*SMALL SIZE ONLY*/
@media screen and (min-width:576px){
#home_banner h1 {
    font-size: 2rem;
    }    
}
/*MEDIUM SIZE ONLY*/
@media (min-width: 768px) {
  #home_banner h1 {
    font-size: 2.5rem;
  }


/*LARGE SIZE ONLY*/
@media screen and (min-width:992px){
    #home_banner h1 {
    font-size: 3.5rem;
        }
}

/*XLARGE SIZE ONLY*/
@media screen and (min-width:1200px){
    #home_banner h1 {
    font-size: 4.5rem;
        }
}

/*XXLARGE SIZE ONLY*/
@media screen and (min-width:2100px){
    #home_banner h1 {
    font-size: 7rem;
        }
}

/*Media Query Breakpoints For information*/

.jumbo { font-size: 5rem;
    text-shadow: 0px 0px 5px #4F4A45
}

/*X-SMALL ONLY*/
@media screen and (min-width:375px){
.jumbo {
    font-size: 4rem;
    }    
}


/*SMALL SIZE ONLY*/
@media screen and (min-width:576px){
.jumbo {
    font-size: 6rem;
    }    
}
/*MEDIUM SIZE ONLY*/
@media (min-width: 768px) {
.jumbo {
    font-size: 6.5rem;
              }
  }


/*LARGE SIZE ONLY*/
@media screen and (min-width:992px){
.jumbo {
    font-size: 7rem;
        }
}

/*XLARGE SIZE ONLY*/
@media screen and (min-width:1200px){
.jumbo {
    font-size: 7.5rem;
        }
}

/*XXLARGE SIZE ONLY*/
@media screen and (min-width:2100px){
.jumbo {
        }
}


@media (max-width: 768px) {
  .portfolio-card {
    max-width: 100%;
  }
}


.main h3 {
    text-align: center;
    font-weight: lighter;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#work-categories .button-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: scale(1.02);
}

.card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: #171513;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2;
}

.info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.info p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #ED7D31;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); /* same dark layer */
  opacity: 1; /* <<< START fully visible (darkened) */
  transition: opacity 0.4s ease;
  z-index: 1;
}

.card:hover .overlay {
  opacity: 0; /* <<< On hover, fade it OUT (removes darkening) */
}


/*footer*/

.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;  /* aligns items vertically */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* allows stacking on smaller screens */
  gap: 40px;
}

.footer-section a {
  color: #ED7D31;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #FDE3D8;
}

.social-icons i {
  font-size: 20px;
  color: #ED7D31;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #FDE3D8;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-logo {
  font-size: 24px;
  font-weight: lighter;
}

.footer-logo span {
  color: #ED7D31;
}

.footer-tagline {
  font-size: 14px;
  color: #857B77;
  margin-top: 8px;
}

.footer-section a {
  display: block;
}
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #857B77;
  margin-top: 30px;
	}