:root {
    --bg-light: #FDF8F5;
    --bg-dark: #1A3C34;
    --accent: #AB644B;
    --text-dark: #1A3C34;
    --text-light: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    font-family: var(--font-body);
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Left Section */
.left-section {
    flex: 1;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    z-index: 10;
}

.branding-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center alignment */
    line-height: 1.1;
    text-align: center;
}

.logo-icon {
    width: 180px;
    /* Large logo size */
    height: 180px;
    object-fit: contain;
}

.company-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    white-space: nowrap;
}

.tagline {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.image-container {
    width: 95%;
    max-width: 900px;
    height: 65%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.arch-frame {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50% 50% 0 0;
    /* Smooth arch */
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

/* Right Section */
.right-section {
    flex: 1;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

.nav-links {
    list-style: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
}

.nav-links li:last-child {
    border-bottom: none;
}

.nav-links a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    padding: 2.5rem 0;
    text-align: center;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
    background-color: rgba(255, 255, 255, 0.02);
}

/* Responsive */
@media (max-width: 1100px) {
    .branding {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        height: auto;
    }

    .left-section {
        min-height: 50vh;
        padding-bottom: 2rem;
    }

    .right-section {
        padding: 2rem;
        min-height: 50vh;
    }

    .image-container {
        height: 300px;
        margin-top: 2rem;
    }
}