/* ================================
   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, Masthead, and Banner
========================================= */
/* Navbar Background */
.navbar-bg {
    background: rgb(255, 255, 255);
    position: sticky; /* or .sticky-top */
    top: 0;
    z-index: 9999; /* so it stays above other elements */
}

/* 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;
}

/* Span text color for "DearHire" */
.dearhire-text {
    color: rgb(48, 163, 166);
    font-family: 'Truculenta', sans-serif;
}

/* Masthead container (replaces inline style on <header>) */
.masthead {
    position: relative;
    height: 60vh;
    background: url('/assets/img/new_banner5.webp') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: #fff;
  }
  .masthead-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
  }
  .masthead-content {
    position: relative;
    z-index: 1;
  }
  

/* The large H1 heading in the masthead 
   replacing style="font-size: 4rem; text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9);" */
.masthead-heading {
    font-size: 4rem;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9);
    color: #fff; /* ensure white text */
}

/* =========================================
   "About Us" Body Content
========================================= */
/* Replace inline "font-family: 'Georgia', serif; font-size: 1.75rem;" etc. 
   with classes for headings/paragraphs. */
.about-subtitle {
    font-family: 'Georgia', serif;
    font-size: 2.3rem;
    font-weight: bold;
    color: #30a3a6;
    margin-top: 40px;
}

.about-subheading {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    margin-top: 30px;
}

.about-p {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    margin-top: 30px;
}

/* If you want a second style without 30px margin:
.about-p-nomargin {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
} */

/* Left-aligned signature block */
.signature-text {
    font-family: 'Truculenta', serif;
    color: #30a3a6;
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.signature-name {
    font-family: 'Truculenta', serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.signature-title {
    font-family: 'Truculenta', serif;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

/* ================================
   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
----------------------------------- */
.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
----------------------------------- */
.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 Link Color 
----------------------------------- */
a {
    color: #30a3a6;
    text-decoration: none; /* optional if you want to remove underlines */
}

/* Responsive changes for mobile views */
@media (max-width: 768px) {
    .masthead-heading  {
        text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.9);
        color: #fff;
        font-size: 2.5rem !important; 
    }
    .about-subtitle {
        font-size: 1.5rem;  /* Smaller font size for subtitles */
    }

    .about-subheading {
        font-size: 1.25rem;  /* Smaller font size for subheadings */
    }

    .about-p {
        font-size: 1rem;  /* Smaller font size for paragraph text */
    }

    .signature-text,
    .signature-name,
    .signature-title {
        font-size: 1.25rem;  /* Smaller font size for signature elements */
    }

}



