:root {
    --main-color-one: #DCBB87;
    --main-color-two: #a37D3D;
    --secondary-color: #19232D;
    --heading-color: #19232D;
    --paragraph-color: #585858;
    --body-font: 'Lato', sans-serif;
    --heading-font: 'Noto Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    font-size: 16px;
    color: var(--paragraph-color);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--main-color-one);
}

.logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(25, 35, 45, 0.9) 0%, 
        rgba(25, 35, 45, 0.6) 50%, 
        rgba(25, 35, 45, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.title {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.title span {
    font-weight: 300;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--main-color-one);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: transparent;
    color: var(--main-color-one);
    outline: 1px solid var(--main-color-one);
}

/* Page Content (Careers) */
.page-content {
    padding-top: 150px;
    padding-bottom: 80px;
    background-color: #f9f9f9;
    min-height: calc(100vh - 100px);
}

.careers-container {
    max-width: 800px;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.tagline {
    font-size: 1.25rem;
    color: var(--main-color-two);
    margin-bottom: 40px;
    font-weight: 700;
}

.careers-section {
    margin-bottom: 40px;
}

.careers-section p {
    margin-bottom: 20px;
    color: var(--paragraph-color);
}

.section-title {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--main-color-one);
    display: inline-block;
    padding-bottom: 5px;
}

.careers-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.careers-list li {
    margin-bottom: 10px;
    color: var(--paragraph-color);
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        position: relative;
    }

    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .hero {
        text-align: center;
        justify-content: center;
        height: auto;
        padding: 100px 0;
    }
    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .careers-container {
        padding: 30px 15px;
    }

    .page-title {
        font-size: 2rem;
    }
}
