
/* yourName_styles.css - Custom styles for advertisers.html and index.php */
/* Replace 'Arosh' in class names if you prefer, not required. */

/* Global resets and typography */
:root {
  --brand: #0f766e;
  --brand-dark: #0b524d;
  --bg-muted: #0b1324;
  --text: #1b1f23;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
}

/* Background image (non-scrolling, covers viewport) */
body.has-hero-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Sticky Bootstrap navbar compensation */
body.with-sticky-nav {
  padding-top: 70px; /* adjust to your navbar height */
}

/* Header */
header.site-header {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #e5e7eb;
}
.site-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 8px;
}

/* Footer */
footer.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 1rem 0;
  font-size: 0.95rem;
}

/* Ad image responsive full-width on small screens */
.ad-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Simple focus styles for accessibility */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
}

/* Hide host or template injected ads */
.adsbyhost, .template-ad, [class*="ad-banner"], [id*="ad-"] {
  display: none !important;
}

/* Demo cards */
.card-soft {
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

/* Example of required selectors */
/* Tag selector */
main { display: block; }
/* Class selector */
.highlight { background: #fffbeb; }
/* ID selector */
#sponsor-video-title { font-weight: 600; }
/* Compound selector */
header.site-header .brand-name { color: var(--brand-dark); }
/* Pseudo-class */
.nav-link:hover { text-decoration: underline; }
