.shasan-hero {
    position: relative;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff 30%, rgba(0, 0, 0, 0.1));
    z-index: 1;
}

.hero-branding {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.parliament-image {
    width: 100px;
    opacity: 0.2;
    margin-bottom: 10px;
}

.hero-section-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 ratio = 9/16 = 0.5625 * 100 */
  background-color: #fff;
  overflow: hidden;
  max-height: 90vh;
}


.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents stretching, maintains crop */
}

.hero-content-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 20px;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}


.hero-logo-text {
    font-size: 36px;
    font-weight: 800;
    color: #136b0b;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
}

.hero-tagline {
    font-size: 1.2rem;
    color: #eee;
    text-shadow: 0 0 6px rgba(0,0,0,0.5);
}


