/* Local testing fixes - font declarations using TTF files */
@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gantari';
    src: url('../fonts/Gantari-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Ensure body shows content */
body {
    font-family: 'Gantari', Arial, Helvetica, sans-serif !important;
}

.content-wrapper {
    display: block !important;
}

/* Hide loading overlay for local testing */
#loadingoverlay {
    display: none !important;
}

/* Show main content sections */
#banner_blu {
    display: block !important;
}

.hero-wrapper {
    display: block !important;
    background-image: url('../img/hero-winter-image.jpg') !important;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* Fix icon font fallback */
[class^="icon-dss-"], [class*=" icon-dss-"] {
    font-family: 'icomoon', Arial, sans-serif;
}

/* Make text visible with good contrast */
.hero-wrapper .content h1,
.hero-wrapper .content p {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Fix select2 width to match other form fields */
.sexselectclass + .select2-container {
    width: 100% !important;
    max-width: 100% !important;
}

.select2-container {
    width: 100% !important;
}

/* Ensure form fields have consistent sizing */
.form-field select,
.form-field .select2-container {
    width: 100% !important;
}

.col-sm-6 .form-field {
    width: 100%;
}

.col-sm-6 .select2-container {
    width: 100% !important;
    min-width: 0 !important;
}

/* Make gender select field (select-card) same height as regular input fields */
#modalRegister_step2 .form-field.select-card input[type="text"] {
    height: 48px !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    box-sizing: border-box !important;
}

#modalRegister_step2 .retrieve-data .form-field.select-card {
    min-height: 48px !important;
}

#modalRegister_step2 .retrieve-data .form-field.select-card .field-btn {
    height: 48px !important;
    min-height: 48px !important;
}

/* Make gender select field same height as input fields */
.form-field select.customselect.sexselectclass {
    height: 48px !important;
    padding: 12px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.form-field select.customselect.sexselectclass:focus {
    border-color: #007bff !important;
    outline: none !important;
}

