body {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: url('/images/rsrdhorizonslogo.jpg') no-repeat center center fixed; /* Change 'your-image.jpg' to your image */
}

/* Create a faded overlay using RGBA */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 90%;
    height: 100%;
}

h4, p {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

h4 {
    font-weight: bold; /* Make the sub-section title bold */
}

.error-message {
    font-weight: bold;
    font-size: 16px;
    color: maroon;
}

/*
p {
    font-size: 14px;
}

ul {
    font-size: 14px;
}
*/

a,
button,
a > label,
button > label {
  cursor: pointer !important;
}

a > label *,
button > label * {
  cursor: pointer !important;
}

.click-label,
.click-label * {
  cursor: pointer !important;
}

.content-home {
    position: relative;
    z-index: 1;
    text-align: left;
    width: 90%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.disclaimer-box {
  margin-top: auto;
  padding: 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #555;
  background: #f9f9f9;
  border-left: 4px solid #d9534f; /* subtle highlight */
  border-radius: 4px;
}

.tagline {
  text-align: center;   /* center the heading text */
  margin: 0 0 20px 0;
}

.device-warning {
  display: inline-block;        /* keep inline with text */
  margin-left: 12px;            /* spacing from tagline */
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.85rem;
  font-weight: 500;
  vertical-align: middle;
}

.device-warning .highlight {
  color: #d63333;
  font-weight: 700;
}

.sample-assessment-row {
  display: flex;
  justify-content: flex-start;  /* left align instead of center */
  align-items: center;           /* align text and button vertically */
  gap: 8px;
  margin: 20px 0;
  font-size: 1rem;
  font-weight: 500;
}

.sample-text {
  margin: 0;
}

.sample-btn {
  background-color: #296d98;
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.sample-btn:hover {
  background-color: #1f4f70;
}

.ytimg {
    height: 35px;
    width: 35px;
    float: right;
    margin-right: 16px;
    margin-top: 16px;
    cursor: pointer;
    cursor: hand;
}

.instaimg {
    height: 35px;
    width: 35px;
    float: right;
    margin-right: 16px;
    margin-top: 16px;
    cursor: pointer;
    cursor: hand;
}

.fbimg {
    height: 35px;
    width: 35px;
    float: right;
    margin-right: 16px;
    margin-top: 16px;
    cursor: pointer;
    cursor: hand;
}

.follow-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-family: Arial, sans-serif;
    margin-top: 2px;
    text-align: center;
}

.follow-text {
    margin-right: 10px;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #111;
}

.social-item img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.social-item img:hover {
    transform: scale(1.1);
}

.social-item span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 4px;
}

.divider {
    font-size: 16px;
    color: #999;
    margin: 0 5px;
    user-select: none;
}

/* below code for responsive UI */

/* --- FIX: watermark overlay on mobile scroll --- */

/* Fill the width with the watermark (no left/right gaps) */
/* Watermark fills the entire background */
html, body {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-image: url('/images/rsrdhorizonslogo.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;         /* full width background */
  background-attachment: scroll;  /* better on mobile */
}

/* Overlay sits on top of background to make text readable */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 0;
  pointer-events: none;
}

/* Content uses only 90% of the width and is centered */
.content-home {
  position: relative;
  z-index: 1;
  background: transparent;
  width: 90%;
  max-width: 1200px;   /* optional, to keep it neat on large screens */
  margin: 0 auto;      /* center horizontally */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}





