html {
    scroll-behavior: smooth;
  }
  
  .text-brown {
    color: #8e7754;
  }
  
  /* Navbar */
#mainNavbar {
    transition: all 0.4s ease;
    background-color: transparent;
    padding: 10px 0;
  }
  
  #mainNavbar .nav-link {
    color: white;
    font-size: 1.1rem;         
    font-weight: 600;          
    letter-spacing: 0.5px;     
    transition: color 0.4s ease;
  }
  
  #mainNavbar.navbar-scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(60, 55, 55, 0.1);
    padding: 10px 0;
  }
  
  #mainNavbar.navbar-scrolled .nav-link {
    color: #452f03 !important;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  #mainNavbar.navbar-scrolled .nav-link:hover {
    color: #6f5e3e !important;
  }
  
  
  #mainNavbar .navbar-brand img {
    filter: brightness(1000%);
    transition: filter 0.4s ease;
  }
  
  #mainNavbar.navbar-scrolled .navbar-brand img {
    filter: none;
  }
  
  .navbar-toggler {
    border-color: #8e7754;
    transition: border-color 0.4s ease;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(142, 119, 84, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: background-image 0.4s ease;
  }
  
  #mainNavbar.navbar-scrolled .navbar-toggler {
    border-color: #8e7754;
  }
  
  #mainNavbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(142, 119, 84, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* Buttons */
  .btn-outline-light:hover,
  .btn-light:hover {
    background-color: #8e7754;
    color: white !important;
    border-color: #8e7754;
  }
  
  /* Home */
  .home-section h1 {
    font-size: 56px;
    font-weight: bold;
  }
  
  .home-section p {
    font-size: 18px;
    max-width: 600px;
  }
  
  /* About Section */
  .about-section {
    background-color: #464040;
    color: #f9f4ef;
    padding: 60px 0;
  }
  
  .about-section h2,
  .about-section h3 {
    color: #fff;
  }
  
  .about-section p {
    color: #ded6d6;
    line-height: 1.7;
  }
  
  .about-section .highlight {
    font-weight: bold;
    color: #a3947e;
    font-style: italic;
  }
  
  .about-section ul {
    list-style: none;
    padding-left: 0;
  }
  
  .about-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
  }
  
  .about-section ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #c0ab8c;
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    background-color: #353330;
    color: #f9f4ef;
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-logo {
    color: #f9f4ef;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  footer a.text-brown {
    color: #f9f4ef;
    transition: 0.3s;
  }
  
  footer a.text-brown:hover {
    color: #cbbfa7;
  }
  
  /* Cards */
  .card-title {
    font-weight: bold;
  }
  
  .card-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Contact Section */
  #contact ul li {
    margin-bottom: 10px;
    color: #6f5e3e;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    #about .col-md-6:first-child {
      text-align: center;
    }
  
    #about .col-md-6 img {
      width: 80%;
      margin-bottom: 20px;
    }
  
    #about .col-md-6:last-child {
      text-align: center;
    }
  
    .about-section .container {
      text-align: center;
    }
  
    .about-column {
      margin-bottom: 30px;
    }
  }
  