
.hero-split {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
}

/* 50/50 Background split setup */
.split-bg {
    flex: 1;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65); /* Darkens images slightly for contrast */
}

/* IMPORTANT: Link your actual photos here */
.left-bg {
    background-image: url('images/left-jpo.jpeg'); 
}

.right-bg {
    background-image: url('images/right-sudirman.avif');
}

/* =========================================
   OVERLAY CONTENT (Nav, Text, Button)
========================================= */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 10; /* Sits on top of the images */
}

/* Inner Transparent Navigation */
.inner-nav {
    display: flex;
    justify-content: space-between;
    padding: 40px 80px;
}

.inner-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    margin-right: 40px;
    transition: opacity 0.3s;
}

.inner-nav a:hover {
    opacity: 0.7;
}

.inner-nav .active {
    font-weight: 600;
}

.nav-links-right a {
    margin-right: 0;
    margin-left: 40px;
}

/* Main Typography Overlay */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5); /* Heavy shadow to ensure legibility */
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}

/* =========================================
   HERO CALL TO ACTION BUTTONS
========================================= */
.hero-actions-main {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Ensures buttons stack neatly on mobile devices */
    margin-top: 15px;
}

.hero-actions-main a {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Solid White Primary Button */
.hero-actions-main .btn-primary {
    background-color: #ffffff;
    color: #222222;
    border: 1px solid #ffffff;
}

.hero-actions-main .btn-primary:hover {
    background-color: #e0e0e0;
    border-color: #e0e0e0;
}

/* Transparent Secondary Buttons with Outline */
.hero-actions-main .btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.hero-actions-main .btn-secondary:hover {
    background-color: #ffffff;
    color: #222222;
}

/* Bottom Right Branding */
.footer-text {
    position: absolute;
    bottom: 30px;
    right: 40px;
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.9;
}