@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:#F6F1EE;
}
h3 {
    font-family: 'Quicksand', sans-serif;
	color:#F6F1EE;
}
h5 {
    font-family: 'Alfa Slab One', serif;
	color: #ED7D31;}
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; /* Stack items vertically */
  align-items: center; /* Align items to the left */
  justify-content: center; /* Center items vertically */
  height: 15vh; /* Full viewport height for vertical centering */
  padding: 0 20px; /* Optional: adds padding to the left and right */
  text-align: left; /* Align text to the left */
}

#home_banner h1, #home_banner h2 {
  margin: 0; /* Remove default margin */
}
#home_banner h2 {font-size: 4rem;}


/*Media Query Breakpoints*/
/*X-SMALL ONLY*/
@media screen and (min-width:375px){
#home_banner h1 {
    font-size: 1.3rem;
    left: auto;
    bottom: auto;
    right: 13px;
    top: 20px;
    }    
}

/*SMALL SIZE ONLY*/
@media screen and (min-width:576px){
#home_banner h1 {
    font-size: 2rem;
    left: auto;
    bottom: auto;
    right: 22px;
    top: 27px;
    }    
}
/*MEDIUM SIZE ONLY*/
@media (min-width: 768px) {
  #home_banner h1 {
    font-size: 2.5rem;
    left: auto;
    bottom: auto;
    right: 22px;
    top: 35px;
              }
  }


/*LARGE SIZE ONLY*/
@media screen and (min-width:992px){
    #home_banner h1 {
    font-size: 3.5rem;
    left: auto;
    bottom: auto;
    right: 34px;
    top: 52px;
        }
}

/*XLARGE SIZE ONLY*/
@media screen and (min-width:1200px){
    #home_banner h1 {
    font-size: 4.5rem;
    left: auto;
    bottom: auto;
    right: 18px;
    top: 52px;
        }
}

/*XXLARGE SIZE ONLY*/
@media screen and (min-width:2100px){
    #home_banner h1 {
    font-size: 7rem;
    left: auto;
    right: 175px;
    top: 93px;
        }
}

/*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 {
        }
}


.main h3 {
    text-align: center;
    font-weight: lighter;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

iframe{
    border-width: 0px;
}

/*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;
}
