/* ==========================================================================
   Quarto SCSS Defaults (optional if you're using SCSS)
   ========================================================================== */
/*-- scss:defaults --*/

/* ==========================================================================
   Navbar Customization
   ========================================================================== */

/* Overall navbar background */
.navbar {
    background-color: #335885 !important; /* Navbar background color */
    height: 50px;                         /* Navbar height */
  }
  
  /* Navbar brand (site title/logo) */
  .navbar-brand {
    color: #ffffff !important;           /* Title color */
    font-size: 25px !important;          /* Title font size */
  }
  
  .navbar-brand:hover {
    color: #ff9d00 !important;           /* Title hover color */
  }
  
  /* Navbar links */
  .navbar-nav .nav-link {
    color: #ffffff !important;           /* Link color */
  }
  
  .navbar-nav .nav-link:hover {
    color: #ff9d00 !important;           /* Link hover color */
  }
   
  /* Field Work Gallery */
  
  .photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  
  .photo-gallery img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  
  .photo-gallery img:hover {
    transform: scale(1.03);
  }

/* Activities Cards Layout */
  .card {
    background-color: #ffffff;
    transition: transform 0.2s ease-in-out;
  }
  
  .card:hover {
    transform: scale(1.01);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  }
  
  h4 {
    font-weight: 600;
    color: #2c3e50;
  }
  
  a {
    text-decoration: underline;
    color: #007bff;
  }
  
  a:hover {
    text-decoration: none;
  }

   /* Projects text changes */

  .text-muted {
    color: #6c757d;
  }
  
  .img-fluid {
    max-width: 100%;
    height: auto;
  }
  
  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  }

