/*
Theme Name: kee-grp
Theme URI: Access Unlimited Consulting
Author: Your Name
Author URI: AUC
Description: A custom theme for the Access Unlimited Consulting site with a blurred hero and parallax sections.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Access Unlimited Consulting
*/

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* HEADING SIZES */
h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 700;
}
h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
h3 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
p, ul {
  margin-bottom: 1rem;
}

/* HERO SECTION WITH BLUR, GRADIENT, AND PERSPECTIVE PARALLAX */
/* HERO SECTION WITH PARALLAX, BLUR + GRADIENT — NO EXTERNAL DEPENDENCIES */
/* --- HERO WITH TRUE PARALLAX, BLUR & GRADIENT --- */
/* HERO  —  fixed bg + blur + gradient, self‑contained */
.hero{
  position:relative;
  height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  overflow:hidden;                          /* safety clip */

  /* 🔹 Parallax layer (fixed to viewport) */
  background:url('https://accessunlimitedconsulting.com/wp-content/uploads/2025/04/image0.jpeg')
            center/cover no-repeat fixed;
}

/* 🔹 Blur overlay (doesn’t interfere with “fixed”) */
.hero::before{
  content:"";
  position:absolute; inset:0;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);        /* Safari */
  z-index:0;
  pointer-events:none;
}

/* 🔹 Dark bottom fade */
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to bottom,
             rgba(12,34,94,0) 0%,
             #0c225e 100%);
  z-index:1;
  pointer-events:none;
}

/* 🔹 Foreground */
.hero-content{
  position:relative;
  z-index:2;
  max-width:90%;
  padding:1rem;
}



.hero-content img {
  width: 600px;
  height: auto;
  margin-bottom: 1.5rem;
}

/* PINNED NAVIGATION NEAR BOTTOM OF HERO */
.hero-nav {
  z-index: 3;
  display: block;
  gap: 2rem;
  font-weight: bold;
}
.hero-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .7rem;
  padding: 0.5rem 1rem;
  border: 2px solid #fff;
  transition: background 0.3s;
  display:inline-block;
  margin-bottom:5px;
}
.hero-nav a:hover {
  background: #fff;
  color: #000;
}

/* GENERIC PARALLAX SECTION (if you use them further down) */
.parallax-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax-section::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.parallax-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.elementor-element::before {
  content: "";
  filter: blur(18px);
}

/* STANDARD SECTION (White BG) */
.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #000;
}
ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
	
  .hero-nav {
    flex-wrap: wrap;
    gap: 1rem;
	position:relative;
	display:block;
	margin:auto;
	width:200px;
	float:left;
  }
 
    .hero-nav a {
        width: 45%;
        display: block;
        float: left;
        margin-left: 5px;
    }

	.hero-content{font-size:.7em;}
	
  .hero-content img {
    width: 430px;
  }
  .parallax-section {
    background-attachment: scroll;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}
