/* --- SASS VARIABLES --- */
/* --- BASE STYLES --- */
body {
  font-family: Arial, Helvetica, sans-serif; }

.page-wrapper {
  max-width: 1000px;
  /* Constrains layout to match image */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }

.bg-custom-beige {
  background-color: #f4f3ea; }

/* --- HEADER --- */
.header-section {
  background-color: #2cb2e1; }
  .header-section .logo-wrapper {
    max-width: 280px; }
  .header-section h1 {
    font-size: 2.5rem;
    letter-spacing: 1px; }

/* --- NAVIGATION --- */
.nav-section {
  background-color: #1b8ebc;
  border-bottom: 2px solid #156c8f; }
  .nav-section a {
    transition: color 0.3s ease; }
    .nav-section a:hover {
      color: #ffffff !important; }

/* --- MAIN CONTENT OVERRIDES --- */
.imageGallery .col {
  /* Ensures images scale proportionally within the gallery grid */ }
  .imageGallery .col img {
    max-height: 80px;
    object-fit: contain; }

/* --- CONTACT FORM --- */
.contact-box {
  background-color: #fca727; }
  .contact-box label {
    font-size: 0.85rem; }
  .contact-box .form-control {
    border: none; }
    .contact-box .form-control:focus {
      box-shadow: none;
      border: 1px solid #2cb2e1; }
  .contact-box .btn {
    font-weight: bold;
    border-width: 2px; }
  .contact-box .bg-custom-orange {
    background-color: #f15a24;
    /* Darker orange for reset button */
    border-color: #ffffff; }

/* --- FOOTER --- */
.footer-section {
  background-color: #2cb2e1;
  border-top: 2px solid #1b94bf; }
  .footer-section .social-icons img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    background-color: #ffffff; }
