/**
  Theme Name:        Secular Web
  Theme URI:         https://csrtci.com/wordpress/support/themes/
  Author:            Ray W. Johnson
  Author URI:        https://csrtci.com/about/raywjohnson/
  Description:       Custom theme for the Secular Web (secularweb.org) site.
  Tags:
  Version:           1.0.0
  Requires at least: 6.0
  Tested up to:      7.0
  Requires PHP:      8.0
  License:           Copyright (c) 2025 CSR Tech Concepts Inc All Rights Reserved.
  License URI:       https://csrtci.com/support/licensing/
  Text Domain:       csrtech-secularweb
**/

:root {
  --font-size: 1rem;

  --primary: #1874CD;
  --primehov: #4EAAEA;

  --litebg: #F1FAFF;

  --shadow: #06213B;
  --shadowhov: #0063C2;

  --dark: #333;
  --lite: #FFF;

  --iconhov: #BAE6FF;
  --innerhov: #FBFBFB;
}

*:before, *:after {
  box-sizing: border-box
}

* {
  font-family: Tahoma, sans-serif;
  box-sizing: border-box;
}

html, body {
  border: 0;
  margin: 0;
  padding: 0;
  color: var(--dark);
  background-color: var(--lite);
  font-size: var(--font-size);
}

a {
  color: var(--primary);
  text-decoration: none;
}

.secweb-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.the-home-page {

}

.circle-main {
  position: relative;
  display: flex;
/*
  border: 2px solid var(--primary);
*/
  border-radius: 50%;
  height: 32rem;
  width: 32rem;
  margin: 3rem auto;
  background-color: var(--lite);
}
.circle-outer {
  display: flex;
  border: 2px solid var(--primary);
  border-radius: 50%;
  height: 28rem;
  width: 28rem;
  margin: auto;
  background-color: var(--litebg);
}
.circle-inner {
  display: block;
  border: 2px solid var(--primary);
  border-radius: 50%;
  height: 18rem;
  width: 18rem;
  margin: auto;
  background: var(--lite) url('icons/ii-old-school.png') no-repeat center center; background-size: 240px 120px;
}
.circle-inner:hover {
  background-color: var(--innerhov);
}

.circle-icon {
  position: absolute;
  display: block;
  border: 2px solid var(--primary);
  border-radius: 50%;
  height: 10rem;
  width: 10rem;
  background-color: var(--lite);
}
.circle-icon:hover {
  background-color: var(--iconhov);
}

.circle-icon1 { top:    -1rem; left:  11rem; background: var(--lite) url('icons/icon-secweb.png') no-repeat center center; background-size: 150px 65px;  }
.circle-icon2 { top:     7rem; left:  -1rem; background: var(--lite) url('icons/icon-forum.png') no-repeat center center;  background-size: 100px 100px; }
.circle-icon3 { top:     7rem; right: -1rem; background: var(--lite) url('icons/icon-blog.png') no-repeat center center;   background-size: 100px 100px; }
.circle-icon4 { bottom:  1rem; left:   3rem; background: var(--lite) url('icons/icon-kids.png') no-repeat center center;   background-size: 100px 100px; }
.circle-icon5 { bottom:  1rem; right:  3rem; background: var(--lite) url('icons/icon-email.png') no-repeat center center;  background-size: 100px 100px; }

.tooltip:hover:after{
  background: var(--dark);
  opacity: 0.8;
  border-radius: 5px;
  bottom: 1.25rem;
  color: var(--lite);
  content: attr(title);
  left: -1rem;
  padding: 0.25rem;
  position: absolute;
  z-index: 101;
  width: 12rem;
  text-align: center;
}

.secweb-links {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  margin-top: 0.25rem;
  background-color: var(--primary);
  box-shadow: 0 -0.25rem 0 var(--shadow);
  border-bottom: 1px solid var(--dark);
}

.secweb-links > b,
.secweb-links > a {
  display: inline-block;
  color: var(--lite);
  padding: 0.20rem 0.80rem;
  position: relative;
  text-decoration: none;
  background-color: var(--primary);
  box-shadow: 0 -0.25rem 0 var(--shadow);
}

.secweb-links > a:hover {
  background-color: var(--primehov);
  box-shadow: 0 -0.25rem 0 var(--shadowhov);
}

header {
}

div.secweb-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 1rem;
}

nav.secweb-menu {
  display: flex;
  gap: 1rem;
  justify-content: left;
  align-items: center;

  background-color: var(--primary);
  color: var(--lite);
}

nav.secweb-menu a.link {
  color: var(--lite);
  text-decoration: none;
  font-weight: bold;
  padding: 0.50rem 1rem;
}

nav.secweb-menu a.active {

}

nav.secweb-menu a:hover {
  background-color: var(--primehov);
}

main {
  padding: 0.25rem 1rem;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background-color: var(--primary);
  color: var(--lite);
}

div.secweb-copyright {
  text-align: right;
  font-weight: bold;
  margin-right: 1rem;
}

.secweb-display {
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}
.secweb-display-header {
  padding: 0.50rem;
  border-bottom: 1px solid var(--primary);
  margin-bottom: 0.50rem;
}
.secweb-display-title {
  font-size: 1.20rem;
  font-weight: bold;
}
.secweb-display-body {
  font-size: 0.90rem;
  line-height: 1.6;
  padding: 0 0.50rem;
  flex: 1 1 400px;
  border: 1px solid var(--dark);
  background-color: var(--litebg);
}
.secweb-display-flex {
  display: flex;
  gap: 5px;
  justify-content: center;
  flex-wrap: wrap;
}
.secweb-display-item {
  padding: 0.25rem 0;
  text-align: center;
}
.secweb-display-center {
  text-align: center;
}

/* FIN */