html {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('/images/design/egb-bg1.jpg');
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-box {
    max-width: 720px;
    margin: auto;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hero-box h1 {
    color: #1d2d1d;
    letter-spacing: -1px;
}

.hero-box .lead {
    font-size: 1.35rem;
    color: #3f5e3f;
}

.hero-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.golf-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #edf5ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #4d7c4d;
}

.btn-success {
    border-radius: 50px;
    font-weight: 600;
    padding-left: 2rem;
    padding-right: 2rem;
}


.page-message {
    position: absolute;
    top:inherit;
    left:inherit;
    bottom: 1rem;
    transform: none;
    z-index: 100;
    right: 1rem;
    background-color: #2E3652;
    color: #eeeeee;
    padding: 2rem;
  }
  
  .page-message-content {
    font-size: 1.5rem;
  }
  
  /* Close button styling */
  .close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: none;
    border: none;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #fff;
    /* Highlight on hover */
  }
  

  .contact-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-box {
    max-width: 620px;
    margin: auto;
    border-radius: 28px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4);
}

.contact-box h1 {
    color: #182818;
}

.contact-box .lead {
    color: #3f633f;
}

.form-control {
    border-radius: 14px;
}

.form-control:focus {
    border-color: #477047;
    box-shadow: 0 0 0 0.2rem rgba(71,112,71,0.2);
}