:root {
    --font-sans: "Geist", sans-serif;
    --font-mono: "Geist Mono", monospace;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-dark-gray: #323232;
    --color-light-gray: #E2E8F0;
    --color-text-light: #707070;
    --color-text-body: #222222;
    --gradient: linear-gradient(135deg, #c044fa 0%, #1392c8 135.4%);
}

body {
    font-family: var(--font-sans);
    color: var(--color-black);
    overflow-x: hidden;
    position: relative;
}

/* --- Global Typography Settings --- */
/* This ensures all headings (and Bootstrap heading classes) use the Mono font */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-mono);
    font-weight: 600;
    /* Default weight for headers, overridden by specific classes if needed */
}

/** Extra magin and padding **/
.my-6 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
}

@media (min-width: 768px) {
    .my-md-6 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }
}

.py-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

p {
    font-family: var(--font-sans);
    font-weight: 300;
}

/* --- Helpers & Overrides --- */
/* Enforce 1600px max width to match original design, but use BS container fluid padding */
.container-max {
    max-width: 1500px;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

/* Typography Helpers */
.h2-title {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
}

.p-subtitle {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 18px;
    line-height: 1.3;
}

.text-link {
    color: #165eff;
    text-decoration: underline;
}

/* ------------------------------------THIS ARE THE BUTTONS STYLES------------------------------------ */
/* PRIMARY BUTTON */
.btn-custom {
    background-color: var(--color-dark-gray);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1rem;
    border: none;
    transition: opacity 0.3s;
}

.btn-custom:hover {
    opacity: 0.8;
    background-color: var(--color-dark-gray);
    color: var(--color-white);
}

/* Ensure icons inside text buttons look good */
.btn-custom i {
    font-size: 1rem;
}

/* SECONDARY BUTTON */
/* NEW: Secondary Light Button (#F1F5F9) */
.btn-secondary-light {
    background-color: var(--color-light-gray);
    color: var(--color-dark-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1rem;
    border: none;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.btn-secondary-light:hover {
    background-color: var(--color-light-gray);
    color: var(--color-dark-gray);
    opacity: 1;
}

.btn-secondary-light i {
    font-size: 1em;
}

/* SQUARE ICON BUTTON */
.btn-square-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    /* Fixed width */
    height: 48px;
    /* Fixed height to match width */
    background-color: var(--color-dark-gray);
    /* Same as btn-custom */
    color: var(--color-white);
    border-radius: 8px;
    /* Same as btn-custom */
    border: none;
    text-decoration: none;
    transition: opacity 0.3s;
    /* Same transition as btn-custom */
}

.btn-square-icon:hover {
    opacity: 0.8;
    /* Same hover effect as btn-custom */
    color: var(--color-white);
    background-color: var(--color-dark-gray);
    /* Ensure background stays same */
    transform: none;
    /* Removed the previous lift effect */
}

/* Icon sizing for square buttons */
.btn-square-icon i {
    font-size: 20px;
}

/* --- New Navigation Square Buttons (White with Border) --- */
.btn-nav-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: var(--color-black);
    transition: all 0.2s ease;
}

.btn-nav-square:hover {
    background-color: #f8f9fa;
}

.btn-nav-square i {
    font-size: 20px;
}

/* ------------------------------------END OF BUTTONS STYLES------------------------------------ */
