/* ================================
   Base HTML & Body
================================ */
html,
body {
    height: 100%;    /* Fill entire window height */
    margin: 0;       /* Reset default margin */
    padding: 0;      /* Reset default padding */
    font-size: clamp(16px, 2vw, 18px);
    background: var(--bs-body-bg);
    box-sizing: border-box;
}

/* body as a flex container */
body {
    display: flex;
    flex-direction: column;
    background: rgb(255, 255, 255);
    font-family: 'Truculenta', sans-serif; /* fallback if Truculenta doesn't load */
}

/* .section (main content) grows to fill remaining space */
.section {
    flex: 1;
}

/* -----------------------------------
   Navbar and Header
   ----------------------------------- */

/* Navbar Background */
.navbar-bg {
    background: rgb(255, 255, 255);
}

/* Logo Icon */
.logo-icon {
    background: url('/assets/img/dearhire_logo1.webp') center / contain;
    width: 40px;
    height: 40px;
}

/* Transparent Logo Button */
.btn-logo {
    background: transparent;
    border-style: none;
    padding-right: 0px;
    padding-left: 0px;
    font-size: 2rem;
    font-weight: bold;
    color: rgb(48, 163, 166);
}

/* Login / Register Button */
.btn-login-register {
    background: #258b8d;
    border-style: none;
    font-size: 1.25rem;
}


/* -----------------------------------
   FAQ Page Content
   ----------------------------------- */

.faq-container {
    margin-top: 30px;
}

.faq-heading {
    font-family: 'Truculenta';
    font-size: 2rem;
    color: #30a3a6;
    font-weight: bold;
}

.faq-question-btn {
    font-family: 'Truculenta';
    font-size: 1.5rem;
    color: #30a3a6;
    background-color: transparent;
    border: none;
    padding-left: 0;
}

.faq-answer {
    font-family: 'Truculenta';
    color: #333;
    background-color: transparent;
    border: none;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* ================================
   Footer Styles
================================ */
.footer-link {
    color: #30a3a6;
    font-family: 'Truculenta';
}

.footer-social-icon {
    color: #30a3a6;
}

/* -----------------------------------
   OVERRIDE: Navbar Brand Hover
----------------------------------- */
.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active {
    background-color: transparent !important;
    color: inherit !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* -----------------------------------
   OVERRIDE: Logo Button Hover
----------------------------------- */
/* If a button has .btn-logo but NOT .btn-primary: */
.btn-logo:hover,
.btn-logo:focus,
.btn-logo:active {
    background-color: transparent !important;
    color: rgb(48, 163, 166) !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/* -----------------------------------
   OVERRIDE: .btn-primary + .btn-transparent
----------------------------------- */
/* Specifically target a button that is .btn.btn-primary.btn-transparent */
.btn.btn-primary.btn-transparent:hover,
.btn.btn-primary.btn-transparent:focus,
.btn.btn-primary.btn-transparent:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: rgb(48, 163, 166) !important;
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #a0674b !important;
    border-color: #a0674b !important;
    color: #fff !important;
}

/* -----------------------------------
   OVERRIDE: Default in text Link Color 
----------------------------------- */
a {
    color: #30a3a6; 
    text-decoration: none; /* optional if you want to remove underlines */
  }

  @media (max-width: 768px) {
    .faq-question-btn, .faq-answer {
        text-align: left; /* Align text to the left on small screens */
        font-size: 1.2rem; /* Smaller font size for FAQ question buttons */
    }
    
    .faq-answer {
        font-size: 0.9rem; /* Smaller font size for FAQ answers */
    }

    .faq-heading {
        font-size: 1.8rem; /* Smaller font size for FAQ headings */
    }

}