/* brochure.css - BM-Conception Print Styles */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

@font-face {
    font-family: 'Exod';
    src: url('../font/ExodusDemo-Sharpen.woff2') format('woff2'),
        url('../font/ExodusDemo-Sharpen.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #1a1a1a;
    --accent-color: #e11d48;
    --text-color: #333;
    --bg-color: #ffffff;
    --page-width: 210mm;
    --page-height: 297mm;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
}

body {
    width: var(--page-width);
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    background: #fff;
    font-size: 12pt;
    line-height: 1.5;
}

/* Typography */
h1,
h2,
h3,
h4,
.serif {
    font-family: 'Exod', 'Playfair Display', serif;
}

h1 {
    font-size: 36pt;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 24pt;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h3 {
    font-size: 16pt;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 12pt;
    font-weight: 300;
    text-align: justify;
}

.text-accent {
    color: var(--accent-color);
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.font-light {
    font-weight: 300;
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

/* Page Layout */
.page {
    width: var(--page-width);
    height: var(--page-height);
    position: relative;
    overflow: hidden;
    page-break-after: always;
    background: white;
    padding: 0;
}

/* PAGE 1: COVER */
.cover-page {
    background-color: #111;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.cover-content {
    position: relative;
    z-index: 10;
    padding: 20mm;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cover-logo {
    font-size: 24pt;
    letter-spacing: 0.2em;
    margin-bottom: auto;
    padding-top: 10mm;
}

.cover-title-block {
    margin-bottom: auto;
}

.cover-subtitle {
    font-size: 10pt;
    letter-spacing: 0.4em;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 10mm;
    display: block;
}

.cover-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10mm;
    display: flex;
    justify-content: space-between;
    font-size: 9pt;
    letter-spacing: 0.1em;
}

/* PAGE 2 & GENERAL CONTENT PAGES */
.content-page {
    padding: 20mm;
    display: flex;
    flex-direction: column;
}

.page-header {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5mm;
    margin-bottom: 15mm;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header-title {
    font-size: 10pt;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--accent-color);
}

.header-number {
    font-family: 'Exod', serif;
    font-size: 24pt;
    color: #eee;
    line-height: 0.8;
}

/* Columns */
.col-2 {
    display: flex;
    gap: 15mm;
}

.col-left,
.col-right {
    flex: 1;
}

/* Components */
.profile-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 10mm;
    filter: grayscale(100%);
}

.quote-block {
    border-left: 3px solid var(--accent-color);
    padding-left: 5mm;
    margin: 10mm 0;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 14pt;
}

.service-item {
    margin-bottom: 15mm;
    break-inside: avoid;
}

.service-title {
    font-size: 14pt;
    border-bottom: 1px solid #eee;
    padding-bottom: 2mm;
    margin-bottom: 4mm;
    display: flex;
    align-items: center;
}

.service-marker {
    color: var(--accent-color);
    margin-right: 3mm;
    font-size: 18pt;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 10mm;
}

.step {
    display: flex;
    margin-bottom: 8mm;
    align-items: baseline;
}

.step-number {
    font-family: 'Exod', sans-serif;
    font-size: 24pt;
    color: #ddd;
    width: 20mm;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 2mm;
    text-transform: uppercase;
    font-size: 11pt;
    letter-spacing: 0.1em;
}

/* PAGE 5: CONTACT */
.contact-page {
    background-color: #f9f9f9;
    justify-content: center;
    position: relative;
}

.contact-info {
    margin-top: 20mm;
}

.contact-row {
    display: flex;
    margin-bottom: 8mm;
    align-items: baseline;
    font-size: 14pt;
}

.contact-label {
    width: 40mm;
    font-size: 9pt;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #888;
    font-weight: 700;
}

.contact-val {
    font-weight: 400;
}

.final-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

/* Screen Preview Helper */
@media screen {
    body {
        background: #555;
        padding: 20px;
    }

    .page {
        margin: 20px auto;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }
}

@media print {
    body {
        background: none;
        width: 100%;
        margin: 0;
    }

    .page {
        margin: 0;
        box-shadow: none;
        page-break-after: always;
        width: 100%;
        height: 100vh;
        /* Force height to match page */
    }
}