/* Theme IMECE Student Hackathon */
 /* Style Attributes */

 /* Standard Content */
/* ==========================
   Custom Font Definitions
   ========================== */
@font-face {
    font-family: 'RotisSemiSerifStd-Bold';
    src: url('https://tv.b-com.hosting/Image.axd?FileID=d0842b06-7333-4c23-9a03-c0a189b263c5') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'RotisSemiSerifStd';
    src: url('https://tv.b-com.hosting/Image.axd?FileID=8b605545-42c6-4165-800f-4cddaa4d59d3') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==========================
   Global Font Application
   ========================== */
body {
    font-family: 'RotisSemiSerifStd', sans-serif !important;
    font-size: 16px !important;
    font-weight: normal !important;
    background-color: #F5F5F5 !important; /* Light Gray */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'RotisSemiSerifStd-Bold', sans-serif !important;
    font-weight: bold !important;
    color: #284992 !important; /* Dark Blue */
}

p, div, li {
    font-family: 'RotisSemiSerifStd', sans-serif !important;
    font-weight: normal !important;
    font-size: 12px !important;
}

span {
    font-family: 'RotisSemiSerifStd', sans-serif !important;
}

input, select, textarea, .ui.input input {
    font-family: 'RotisSemiSerifStd', sans-serif !important;
    font-size: 12px !important;
    font-weight: normal !important;
}

button, .ui.button, .ui.buttons .button {
    font-family: 'RotisSemiSerifStd-Bold', sans-serif !important;
    font-weight: bold !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
}

/* ==========================
   Logo and Banner Styles
   ========================== */
#logo {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
}

#logo img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    display: block;
}

/* ==========================
   Footer Styles
   ========================== */
#page-footer {
    align-self: center;
}

#page-footer, #page-footer.docked-footer {
    padding: 1px;
    margin-top: 5px !important;
    text-align: center;
    background-color: #F5F5F5 !important; /* Light Gray */
    width: 100% !important;
    max-width: 1000px !important;
    color: #284992 !important; /* Dark Blue */
    opacity: 0.9;
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================
   UI Elements & Forms
   ========================== */
.ui.corner.label {
    width: 3em;
    height: 31px;
}

.asterisk {
    color: #D32F2F !important; /* Red */
}

.ui.form .field > label,
.ui.form .field label {
    color: #284992 !important; /* Dark Blue */
}

/* ==========================
   Component & Layout Styles
   ========================== */
.component-service-reservation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distributes items in two columns */
    gap: 15px;
    padding: 20px;
    max-width: 90%;
    margin: 0 auto;
}

/* Ensure the registration options are divided into two columns */
.sp-style-REGISTRATIONTYPES .service-style {
    width: 46% !important;
    display: inline-flex !important;
    align-items: baseline;
    justify-content: space-evenly;
    background: #FFF;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #284992 !important; /* Dark Blue */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: space-between;
}
.component-service-reservation h2 {
    font-size: 22px;
    font-weight: bold;
    color: #284992 !important; /* Dark Blue */
    border-bottom: 3px solid #D32F2F;
    padding-bottom: 8px;
    display: inline-block;
    margin-bottom: 15px;
}

/* ==========================
   Registration Forms & Selection Boxes
   ========================== */
.ui.form.segment.sp-style {
    background: #FFFFFF !important;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    margin: 10px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Allowing flexibility */
    max-width: none; /* Remove width restrictions */
}

/* Selection Box */
.service-style {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #284992 !important; /* Dark Blue */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    width: 100%;
}

/* Hover Effect */
.service-style:hover {
    background: #F5F5F5 !important; /* Light Gray */
    border-color: #D32F2F !important; /* Red */
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Radio Button Styles */
.ui.checkbox.radio input[type="radio"] {
    display: none;
}

.ui.checkbox.radio {
    display: flex;
    align-items: center;
    width: 100%;
}


.ui.checkbox.radio label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    padding-left: 20px;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

/* Hover Effect for Labels */
.ui.checkbox.radio label:hover {
    color: #B71C1C;
}

/* Price Badge */
.servicePrice {
    font-size: 14px;
    font-weight: normal !important;
    background: #D32F2F;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    text-transform: uppercase;
    margin-left: auto !important;
    width: fit-content;
    border-color: #D32F2F !important; /* Red */
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Hover Effect for Price Badge */
.service-style:hover {
    background: #F5F5F5 !important; /* Light Gray */
    border-color: #D32F2F !important; /* Red */
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* ==========================
   Steps Container (Wizard Navigation)
   ========================== */
.ui.steps {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    justify-content: space-evenly;
    margin: 0 auto;
}

.ui.steps .step {
    flex: 1 1 auto;
    text-align: center;
}

.ui.steps .step.active {
    background: #D32F2F !important; /* Red */
}

.step.active::after {
    background: #D32F2F !important; /* Red */
}

/* ==========================
   Buttons & General UI Elements
   ========================== */
.ui.button {
  /* background: #D32F2F !important;  Red */
}

.component-consent #consentNavigation {
  display: flex;
}

/* ==========================
   Grid & Layout Adjustments
   ========================== */
.ui.grid {
    display: flex;
}

.right.aligned.column {
    text-align: right !important;
}

#page.pcp-page {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    background-color: #fff;
}

/* ==========================
   Message Styles
   ========================== */
.ui.warning.message, .ui.yellow.message {
    color: #284992 !important; /* Dark Blue */
}

/* ==========================
   Hidden Elements
   ========================== */
#login-signup-container {
    display: none;
}

li {
    list-style-position: initial;
}

.ui.steps, .disabled.step {
    color: #D32F2F !important;
}

/* Responsive Design: Single Column on Mobile */
@media (max-width: 768px) {
    .sp-style-REGISTRATIONTYPES .service-style {
        width: 100%; /* Single column for small screens */
    }
}

/* ==========================
   📱 Mobile Optimization Styles
   ========================== */
@media (max-width: 768px) {

    /* 🟢 Registration Options (Fix Column Width & Spacing) */
    .sp-style-REGISTRATIONTYPES .service-style {
        width: 92% !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    // padding: 8px 12px !important;
    }

        .ui.corner.label {
        display: none;
    }

    /* 🔴 Price Badge (Fix Alignment) */
    .servicePrice {
        font-size: 14px !important;
        padding: 4px 8px !important;
        width: auto !important;
        margin-left: 10px !important;
    }

    /* 🟡 Checkbox Container (Reduce Size) */
    .ui.checkbox.radio {
        width: auto !important;
        padding: 0px !important;
        display: flex !important;
        align-items: center !important;
    }

    .ui.checkbox.radio label {
        font-size: 12px !important;
        font-weight: normal !important;
    }

    /* 🟣 Breadcrumb Navigation */
    .ui.steps {
        // flex-direction: row !important;
        font-size: 12px !important;
        text-align: center !important;
        display: none !important;
    }

    /* 🔵 Form Fields */
    input, select, textarea, .ui.input input {
        max-width: 90% !important;
        font-size: 14px !important;
        padding: 8px 12px !important;
    }

    /* 🔴 Buttons ("Back" & "Next") */
    .ui.button {
        width: max-content !important;
        padding: 10px 15px !important;
    }

    /* 🔵 Terms & Conditions Checkboxes */
    .ui.checkbox.radio {
        display: flex !important;
        align-items: center !important;
        padding: 0px !important;
        width: auto !important;
    }

    .ui.checkbox.radio label {
        font-size: 13px !important;
        font-weight: normal !important;
    }

    /* 🟠 Reduce Padding & Margin for Small Screens */
    .component-service-reservation {
        padding: 10px !important;
        gap: 10px !important;
        display: table-row;
    }
}


/* ==========================
   Full-Screen Disclaimer Overlay (Auto Fade)
   ========================== */
#mobile-disclaimer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95); /* Dark background */
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 34px !important;
    font-weight: bold;
    z-index: 99999; /* Ensure it stays on top */
    transition: opacity 1s ease-in-out; /* Smooth fade effect */
    opacity: 0.9; /* Initially fully visible */
    pointer-events: auto; /* Prevent interaction with background */
}

/* Ensure content behind the message is non-clickable */
body.no-scroll {
    overflow: hidden;
}

span[data-bind*="COMMUNITYPORTAL_PROGRESSIVE_REPORTING_PORTAL_OTHER_FILES_TITLE"],
span[data-bind*="COMMUNITYPORTAL_PROGRESSIVE_REPORTING_PORTAL_ALTERNATE_TITLE"] {
    display: none !important;
}


label[data-bind="label: 'COMMUNITYPORTAL_PROGRESSIVE_PAYMENT_METHOD_SELECTION_BT'"] {
    display: none !important;
}



/* END Theme IMECE Student Hackathon */
