.btn-custom {
    background-color: white;
    color: #c1272d;
    padding: 10px 60px;
    border: none;
    transition: background-color 0.3s ease;
    border-radius: 0.25rem;
    text-decoration: none; }
    .btn-custom:hover {
      background-color: #989898;
      text-decoration: none; }
  
  .heading-underline {
    width: 20%;
    /* Adjust width as needed */
    margin: 0 auto;
    /* Centers the line */
    border-top: 4px solid #c1272d;
    /* Sets the thickness and color of the line */ }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  .h2-default {
    font-family: 'Playfair Display', serif;
    color: #c1272d;
    letter-spacing: 1px;
    display: block;
    font-size: calc(1.5rem + 2vw);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem; }

.p-lead-default {
    color: #333333;
    font-size: 1.25rem;
    letter-spacing: 1.8px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem; }

.navbar .nav-link {
    position: relative;
    color: #c1272d;
    font-family: 'Montserrat', sans-serif;
}

.navbar .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 2px;
    right: 0;
    background: #c1272d;
    transition: width .2s ease;
    -webkit-transition: width .2s ease;
}

.navbar .nav-link:hover:after {
    width: 100%;
    left: 0;
    background: #c1272d;
}

.navbar .nav-item {
    border-right: 1px solid rgba(193, 39, 45, 0.1);
}

.navbar .nav-item:last-child {border-right: none;
}

/* Semi-transparent navbar for home page only */
.navbar-semi-transparent {
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-outline-primary {
    border-width: 2px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    color: #c1272d;
    border-color: #c1272d;
}

/* Optional hover state */
.btn-outline-primary:hover {
    background-color: #c1272d;
    border-color: #c1272d;
    color: white;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}