/* Custom Fonts */

/* Instrument Serif */
@font-face {
    font-family: 'Instrument Serif';
    src: url('/static/fonts/InstrumentSerif-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

/* Jost */
@font-face {
    font-family: 'Jost';
    src: url('/static/fonts/Jost-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Jost';
    src: url('/static/fonts/Jost-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Roboto */
@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Apply fonts globally */
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', 'Roboto', sans-serif;
}

.font-serif {
    font-family: 'Instrument Serif', Georgia, serif;
}

.font-jost {
    font-family: 'Jost', sans-serif;
}

.font-roboto {
    font-family: 'Roboto', sans-serif;
}

/* Brand Colors */
:root {
    --brand-black: #222222;
    --brand-orange: #eb752f;
    --brand-red: #A51E25;
    --brand-gray: #E6E6E6;
}

.bg-brand-black { background-color: var(--brand-black); }
.bg-brand-orange { background-color: var(--brand-orange); }
.bg-brand-red { background-color: var(--brand-red); }
.bg-brand-gray { background-color: var(--brand-gray); }

.text-brand-black { color: var(--brand-black); }
.text-brand-orange { color: var(--brand-orange); }
.text-brand-red { color: var(--brand-red); }
.text-brand-gray { color: var(--brand-gray); }

.border-brand-black { border-color: var(--brand-black); }
.border-brand-orange { border-color: var(--brand-orange); }
.border-brand-red { border-color: var(--brand-red); }
.border-brand-gray { border-color: var(--brand-gray); }

/* Typography Styles */
/* Titles - Jost ExtraBold 36pt */
.title-style {
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 36pt;
    color: var(--brand-red);
    line-height: 1.2;
}

/* First Description - Instrument Serif Italic 34pt */
.description-style {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: normal;
    font-size: 34px;
    color: var(--brand-red);
    line-height: 1.3;
}

/* Body Text - Roboto Light 18pt */
.text-style {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 18pt;
    color: var(--brand-black);
    line-height: 1.6;
}

/* Button Styles */
/* Button Base Styles */
.btn-small,
.btn-big {
    background-color: var(--brand-orange);
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* Small Buttons - Jost Medium 22pt */
.btn-small {
    font-size: 22pt;
    padding: 0.75rem 2rem;
}

/* Big Buttons - Jost Medium 32pt */
.btn-big {
    font-size: 32pt;
    padding: 1rem 2.5rem;
}

/* Button Hover States */
.btn-small:hover,
.btn-big:hover {
    background-color: var(--brand-red);
    transform: translateY(-2px);
}

/* Active Button State */
.btn-active {
    background-color: var(--brand-orange) !important;
    color: white !important;
}

.btn-active:hover {
    background-color: var(--brand-red) !important;
}

/* Inactive Button State */
.btn-inactive {
    background-color: var(--brand-gray) !important;
    color: var(--brand-black) !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-inactive:hover {
    background-color: var(--brand-gray) !important;
}
