/* ===== GLOBAL ===== */
:root {
    --primary-color: #a82f1e;
    --accent-color: #F5842B;
    --text-color: #444444;
    --background-color: #fff;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

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

body {
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.1;
    color: #454545;
}

h1,
.master .layout.l-nactarome-hero .copy h2 {
    font-size: 55px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
}

h2 {
    font-size: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
}

h3 {
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
}

h4 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

h5 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

h6 {
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

p {
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.normal { font-weight: 400; }
.medium { font-weight: 500; }
.semibold { font-weight: 600; }
.bold { font-weight: 600; }

.full-width {
    width: 100%;
    float: left;
    box-sizing: border-box;
}

.inner-width {
    width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* TOPBAR */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    justify-content: center;
    min-height: 60px;
}

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

.topbar-logo {
    height: 40px;
}

.linkedin-link {
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
}

/* HERO */
.hero {
    width: 100%;
    height: 100vh;
    max-height: 500px;
    background: url("im/hero.png") center/cover no-repeat;
}

/* Intro section */
.intro {
    text-align: center;
    padding: 3rem 0 4rem 0;
}

.intro-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e04f2b;
    margin-bottom: 1.5rem;
}

.intro h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.intro p {
    font-size: 1rem;
    width: 80%;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    color: var(--text-color);
}

/* Buttons */
button,
.intro-btn,
.footer-btn,
a.button,
a.footer-btn {
    display: block;
    width: fit-content;
    padding: 15px 40px;
    color: #FFFFFF;
    background-color: #E77C34;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-left: auto;
    margin-right: auto;
}

/* Image row */
.image-row {
    padding: 2rem 0 4rem 0;
    background-color: #fff;
}

.image-pair {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2%;
    flex-wrap: wrap;
}

.image-pair img {
    width: 49%;
    border-radius: 10px;
    object-fit: cover;
}

/* LOCATIONS / ORANGE SECTION */
.locations {
    background-color: var(--accent-color);
    color: #fff;
    padding: 4rem 0;
    margin-bottom: -30vh;
}

.locations .orange-content {
    position: relative;
    top: -15vh; /* overlaps dynamically */
    z-index: 10000;
}

.orange-intro {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.orange-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
}

.orange-row img {
    flex: 1 1 40%;
    max-width: 460px;
    border-radius: 10px;
    object-fit: cover;
}

.orange-text {
    flex: 1 1 45%;
    max-width: 540px;
    display: block; /* stack headings + items vertically */
}

.orange-text h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem; /* tight spacing between name and address */
}

.orange-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.orange-contact {
    margin-top: 1.5rem;
}

.orange-contact a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.orange-contact a:hover {
    opacity: 0.8;
}

/* Address layout */
.item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.item i {
    color: #fff;
    font-size: 1.1rem;
}

.item p {
    margin: 0;
}

.location-block {
    margin-bottom: 3rem; /* space between location blocks */
}

/* Footer */
.green-footer {
    background-color: #386042;
    color: #fff;
    padding: 3rem 0 2rem 0;
    font-size: 0.95rem;
    position: relative;
    z-index: 1000;
    margin-top: -3vh; /* pulls the whole section up equally */
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-col {
    flex: 1 1 22%;
    min-width: 220px;
}

.footer-col h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-col p {
    color: #ddd;
    font-size: 0.9rem;
    line-height: 0.8;
}

.footer-col a {
    color: #fff;
}

.contact-box {
    text-align: center;
    position: relaative;
    top: 10px;
}

.contact-box p{
    padding-top: 25px;
}

.contact-box p {
    line-height: 1.4;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 0.8rem;
}

.copyright a {
    color: white;
    text-decoration: underline;
}

/* Bopgun footer */
.bopgun-footer {
    background-color: #ffffff;
    color: #444444;
    text-align: center;
    padding: 0.3rem 1rem;
    margin-top: -1vh;
}

.bopgun-footer p {
    margin-top: 30px;
    font-size: 15px;
}

.bopgun-footer a {
    text-decoration: none;
    color: #444444;
}

/* Brush strokes */
.white-orange-brush,
.orange-green-brush {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 10;
    background-position: bottom center;
}

.white-orange-brush img,
.orange-green-brush img {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    position: relative;
    z-index: 10;
}