
/* Hero Banner */
.aboutus-hero {
    position: relative;
    width: 100%;
    min-height: 55vh;
    background-image: url('images/aboutus-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.aboutus-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); 
    z-index: 1;
}

.aboutus-hero-content {
    position: relative;
    z-index: 2;
    color: #f3eeee;
    text-align: center;
}

.aboutus-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #ffffff;
}

.aboutus-hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* About Us Content Section */
.aboutus-content {
    background: #ffffff;
    padding: 80px 20px 90px;
}

.aboutus-content-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.aboutus-content-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #131313;
    margin-bottom: 16px;
}

/* Gold Double-line Underline */
.aboutus-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.aboutus-divider span {
    display: block;
    width: 50px;
    height: 2px;
    background: #b89b5e;
    border-radius: 1px;
}

/* Content paragraphs */
.aboutus-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 2;
    color: #555555;
    margin-bottom: 8px;
    text-align: center;
}

.aboutus-text:last-child {
    margin-bottom: 0;
}

/* ===========================
   Animations for About Us
   =========================== */
.aboutus-hero-content .aboutus-hero-title {
    opacity: 0;
    transform: translateY(-30px);
    animation: aboutusFadeDown 1s ease-out 0.3s forwards;
}

.aboutus-hero-content .aboutus-hero-subtitle {
    opacity: 0;
    transform: translateY(20px);
    animation: aboutusFadeUp 1s ease-out 0.6s forwards;
}

@keyframes aboutusFadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes aboutusFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

