



/*--------------------------------------------------------------
# Main Colors
--------------------------------------------------------------*/

:root {
  --main-color: #fec364; /* Primary Color: Yellow */
  --secondary-color: #000000; /* Secondary Color: Black */
  --accent-color: #b03025; /* Accent Color: Dark Red */
  --background-color: #ffffff; /* Background Color: White */
   
}



/* ------------------------------------
Logo Image Styling
------------------------------------ */
.navbar-brand-img {
  max-height: 150px;
  height: auto;
}


.logo-img {
  max-height: 50px;
  height: auto;
}


/* ------------------------------------
Button styling
------------------------------------ */

.ftco-services .services .media-body .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, background-color .2s ease, color .2s ease;
  width: 200px; 
  align-self: center;;
}

.ftco-services .services .media-body .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

.ftco-services .services .media-body .btn:active {
  transform: translateY(0);
}

/* Make all three cards push the button to the bottom for consistent alignment */
.ftco-services .services .media-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ftco-services .services .media-body p:last-of-type { margin-bottom: 1rem; }
.ftco-services .services .media-body .btn { margin-top: auto; }

/* Optional: slightly larger icons in the square */
.ftco-services .services .icon i {
  font-size: 2.2rem;
}

.ftco-services .services .btn-primary {
  background-color: var(--accent-color);
  border-color:   var(--accent-color);   
  color: var(--secondary-color);
  
}
.ftco-services .services .btn-primary:hover {
  background-color: var(--accent-color);
  border-color:   var(--accent-color);
  color: var(--background-color);
}






/* ------------------------------------
Typography Styles
------------------------------------ */

.bebas {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;  /* tweak for visual balance */
}

.subheading {
  font-family: "DM Serif Display", serif !important;
  font-weight: 400 !important; 
  font-style: normal !important;
  font-size: 4em !important; /* Adjust as needed */
}





/* ------------------------------------
Additional Custom Styles
------------------------------------ */
.shift-up {
  position: relative;
  top: -1px;
}

.shift-left {
  position: relative;
  left: -14px;
}

.increase-size {
  font-size: 2.4em; /* Adjust as needed */
}

#menu-anchor {
  position: relative;
  top: -80px; /* adjust to how much higher you want */
  height: 0;
}
