* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}


.hero-container {
    display: flex;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.split-section {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-top: 15vh;
    position: relative;
}

.content-wrapper {
    text-align: center;
    z-index: 20;
    max-width: 80%;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.5);
}

.btn:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(+2px);
}

.btn-right {
    border-color: #ff6b6b;
    color: #ff6b6b;
}
.btn-right:hover {
    background-color: #ff6b6b;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(+2px);
}


.left-section {
    background-color: #1c2a3a;
}

.left-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
	/* background-image: linear-gradient(to bottom right, rgba(28, 42, 58, 0.9), rgba(10, 10, 10, 0.8)), url('/images/bg-brian.jpg'); */
	background-image: url('/images/bg-brian.jpg');
    background-size: cover;
    z-index: 1;
    opacity: 0.3;
}

.right-section {
    background-color: #2a0f0f;
}

.right-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
	/* background-image: radial-gradient(circle at 70% 30%, rgba(200, 50, 50, 0.4) 0%, rgba(20, 0, 0, 0.9) 70%), url('/images/bg-julian.jpg'); */
	background-image: url('/images/bg-julian.jpg');
    background-size: cover;
    z-index: 1;
    opacity: 0.2;
}


@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.4rem; }
    .central-portrait { max-width: 600px; }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .split-section {
        flex: none;
        height: 50vh;
        padding-top: 80px;
    }
}
