/* === Custom Fonts === */
@font-face {
    font-family: 'Alegreya';
    src: url('../fonts/Alegreya-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Austin Pen';
    src: url('../fonts/fonnts.com-austinpen.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.font-script {
    font-family: var(--font-script);
}

/* === Base Body === */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--color-olive-text);
    background-color: var(--color-cream);
    background-image: url('../assets/icons/paper-texture.png');
    background-repeat: repeat;
    background-size: 400px;
    line-height: 1.6;
}

/* === Split-Screen Layout === */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* LEFT: Scrollable Content */
.content-panel {
    width: var(--content-width);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* RIGHT: Fixed Decorative Panel */
.decor-panel {
    width: var(--decor-width);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.decor-panel__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Section Base === */
.section {
    padding: var(--section-padding);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* === Decorative Image Helpers === */
.divider-img {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    opacity: 1;
}

.star-accent {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* === Section Title === */
.section__title {
    font-family: var(--font-primary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-olive-text);
    margin-bottom: var(--space-sm);
}

.section__subtitle {
    font-size: var(--font-size-lg);
    letter-spacing: 0.08em;
    color: var(--color-sage-dark);
    margin-bottom: var(--space-md);
}
