@font-face {
    font-family: 'HelveticaNeueLTStd-LtCn';
    src: url('fonts/HelveticaNeueLTStd-LtCn.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --black: #010102;
    --orange: #bf5425;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'HelveticaNeueLTStd-LtCn', 'Arial Narrow', Arial, sans-serif;
    color: var(--black);
    background-color: #ffffff;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('images/couv-MC-1920x1157px_2.png') no-repeat center center / cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.logo {
    max-width: 260px;
    display: block;
    margin: 0 auto 1rem auto;
}
.hero-title {
    font-family: 'Antonio', sans-serif;
    font-size: 3.5rem;
    margin: 0.5rem 0 3rem 0;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-title sup {
  font-size: 0.6em;
  vertical-align: super;
}

/* Buttons (uniform size, auto width) */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--orange);
    color: #fff;
    text-decoration: none;
    border-radius: 28px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: transform .15s ease, background .15s ease;
    width: auto;          /* ensure button width is based on content */
}
.btn:hover { transform: translateY(-2px); background: #bf5425; }

/* ABOUT */
.about {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.about-text, .about-img {
    flex: 1 1 50%;
}
.about-text {
    padding: 3rem;
	/*padding-right: 2rem;*/
}
.about-text h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 2.8rem;
    margin: 0 0 1.5rem 0;
}
.about-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 630px;
}
.about-text sup {
  font-size: 0.6em;
  vertical-align: super;
}
.about-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.round-img {
    width: 300px; height: 300px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ETHIC */
.ethic {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}
.ethic-img, .ethic-text {
    flex: 1 1 50%;
}
.ethic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* critical fix: prevent button stretching by aligning items to flex-start */
.ethic-text {
    background: var(--black);
    color: white;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* <-- prevents children from stretching horizontally */
    max-width: 1400px;
    margin: 0 auto;
}

.ethic-text h2 {
    font-family: 'Antonio', sans-serif;
    font-size: 2.8rem;
    margin: 0 0 1.5rem 0;
    color: #fff;
}
.ethic-text p {
    color: #e6e6e6;
    margin-bottom: 2rem;
    font-size: 1.3rem;
    max-width: 600px;
}
.ethic-text sup {
  font-size: 0.6em;
  vertical-align: super;
}

footer {
    text-align: center;
    padding: 1.4rem 0;
    background: #f4f4f4;
    color: #333;
    font-size: 0.95rem;
}
sup {
  font-size: 0.6em;
  vertical-align: super;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title, .about-text h2, .ethic-text h2 {
        font-size: 2rem;
    }
    .about-text p, .ethic-text p {
        font-size: 1rem;
    }
}
@media (max-width: 800px) {
    .about, .ethic {
        flex-direction: column;
        padding: 2rem 1rem;
    }
    .about-text, .ethic-text, .about-img, .ethic-img {
        flex: 1 1 100%;
    }
    .round-img { width: 200px; height: 200px; }
}
