/* ===========================================
   GLOBAL RESET & BASE
   =========================================== */
/* #region : Global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    background-image: url('/images/custom/HHCM-Bg-Logo.png');  /* path to your icon */
    background-repeat: no-repeat;              /* only once */
    background-position: center center;        /* place it in the center */
    background-attachment: fixed;              /* keep it still while scrolling */
    background-size: 500px;                    /* make it big (adjust as needed) */
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.text-center {
    text-align: center;
}

h2 {
    text-align: center;
}
/* #endregion : Global */

/* ===========================================
   HEADER STYLING - LOGO + TITLE IN ONE LINE
   =========================================== */
/* #region : Header */
header {
    background-color: #4a148c;
    color: white;
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Overall container */
.center-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo + Title side-by-side */
.logo-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo & title */
    justify-content: center;
    margin-bottom: 12px;
}

/* Logo size */
.site-logo img {
    height: 100px;
    width: auto;
}

/* Title styling */
.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* Navigation styling */
nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #ffdd57;
}
/* #endregion */


/* ===========================================
   SOCIAL STRIP
   =========================================== */
/* #region : Social Strip */
.social-strip {
    background: #4b0082;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 30px;
}

.social-strip p {
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
    color: #ffdd57;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}
/* #endregion : Social Strip */

/* ===========================================
   FOOTER
   =========================================== */
/* #region : Footer */
footer {
    background-color: #4b0082;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
}
/* #endregion : Footer */

/* ===========================================
   RESPONSIVE
   =========================================== */
/* #region : Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 20px;
    }

    nav a {
        display: inline-block;
        margin: 8px;
    }
}

.required {
  color: red;
  font-weight: bold;
  font-size: 1.1em;
}
/* #endregion : Responsive */
