/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 * NOTES *
	class = upcomingevents-box -> located in theme additional css	
 */

/* === ROC FORMS === */
.uagb-forms-email-input .uagb-forms-input{
	color:#330000!important;
}

/* === ROC SIDEMENU === */
/* Pushes main content to the left to make room for the fixed right sidebar */
body {
  padding-right: 129px !important;
}

/* On small screens, remove that padding so content spans full width */
@media (max-width: 768px) {
  body {
    padding-right: 0;
  }
}

/* Container that holds the logo */

.ct-container{ margin-inline: 0!important;
	
}

/* === SLIDER BUTTON STYLE === */
/* Rounds top-right corner of buttons inside Smart Slider */
.n2-ss-button-container a {
  border-radius: 0 12px 0 0 !important;
  overflow: hidden;
}

/* === MINI SIDEBAR === */
/* Fixed vertical sidebar on the right edge of the screen */
.mini-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 129px;
  height: 100vh;
  background: linear-gradient(to bottom, #272727, #000000);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  z-index: 1000;
}

/* Sidebar button style (e.g., "Menu" button) */
.mini-sidebar button {
  color: white;
  font-size: 0.9rem;
  text-align: center;
  margin: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}

/* Links in sidebar bottom (like Contact, Map) */
.mini-sidebar a {
  color: white;
  font-size: 0.8rem;
  text-align: left;
  margin: 0 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}

/* Logo inside sidebar */
.mini-sidebar img {
  max-width: 40px;
  margin: 1rem 0;
}

/* Wrapper for vertical links at bottom */
.mini-links {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.5rem;
}

/* === SLIDEOUT MENU === */
.slideout-menu {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden off-screen initially */
  width: 320px;
  height: 100vh;
  background-color: #1a1a1a; /* Darker than sidebar */
  color: #fff;
  padding: 2rem 1.5rem;
  z-index: 900; /* Behind .mini-sidebar, above content */
  overflow-y: auto;
  transition: right 0.4s ease-in-out; /* Smooth slide in/out */
}

/* Active state for slideout menu */
.slideout-menu.open {
  right: 129px; /* Slides out to line up with sidebar */
}

.sidebar-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.sidebar-search input {
  flex: 1;
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
}

.sidebar-search button {
  padding: 0.5rem 1rem;
  background: #d3531a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}


/* Link styles inside the slideout menu */
.slideout-menu-items a {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1.5rem;
}

.slideout-menu-items ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.slideout-menu-items ul li {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Style the red dots */
.slideout-menu-items ul li::marker {
  color: #d3531a;   /* red-orange */
  font-size: 1.25rem; /* bigger dot */
}


/* === OVERLAY === */
/* Dims the background when slideout is active */
.dim-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100% - 129px); /* Excludes sidebar width */
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  opacity: 0;
  pointer-events: none;
  z-index: 800; /* Below slideout and sidebar */
  transition: opacity 0.3s ease;
}

/* Active dim state */
.dim-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* === Icon spacing (if using font icons) === */
.mini-links i {
  display: block;
  font-size: 1.25rem;
}

/* === MENU TOGGLE (hamburger) === */
#nav-icon3 {
  width: 20px;
  height: 10px;
  position: relative;
  margin: 20px auto;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

/* Hamburger bars */
#nav-icon3 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #d3531a; /* Orange color */
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

/* Positions of 4 bars */
#nav-icon3 span:nth-child(1) {
  top: 0px;
}
#nav-icon3 span:nth-child(2),
#nav-icon3 span:nth-child(3) {
  top: 9px;
}
#nav-icon3 span:nth-child(4) {
  top: 18px;
}

/* When toggled to "X" */
#nav-icon3.open span:nth-child(1) {
  top: 19px;
  width: 0%;
  left: 50%;
}
#nav-icon3.open span:nth-child(2) {
  transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
  transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}


.uagb-block-40c223d2 {
  position: relative;
  z-index: 0;
}

.floating-grid-overlay {
  z-index: 1; /* grid layer */
}

.uagb-container-inner-blocks-wrap {
  position: relative;
  z-index: 2; /* info box container */
}

.uagb-block-1fc21db9 {
  position: relative;
  z-index: 0;
	
  overflow: visible;
}

.uagb-container-inner-blocks-wrap {
  position: relative;
  z-index: 2;
}
.uagb-block-40c223d2 {
  position: relative;
  overflow: visible; /* <-- allow overflow outside this container */
  z-index: 1;
}

.floating-grid-overlay {
  overflow: visible; /* <-- allow dashed line to extend upward */
}

@media screen and (min-width: 768px) {
.wavy-line-divider {
  position: absolute;
  top: 520px; /* adjust up/down to visually sit between slideshow + info box */
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 20;
  pointer-events: none;
  display: block;
}
}

.n2-ss-slider-wrapper-inside, #main {
  position: relative;
}

/*Upcoming Event Card*/
/* HOMEPAGE TEXT */
p.hero-text{padding-left: 50px!important;
font-size: 24px!important;
}


@media (max-width: 768px) {
  .floatingbox {
    position: static;
    margin: 1rem auto;
  }
}




.uagb-ifb-button-wrapper{margin-left:21px; margin-top:21px;}



.parallax { 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


@media screen and (max-width: 768px) {
	.ct-header{
		position:absolute!important;
		top: 0!important;
		right:10px!important;
		z-index: 100!important;
	}
  body {
    padding-right: 0 !important;
    overflow-x: hidden!important;
  }

  .mini-sidebar {
    display: none !important;
  }

  .slideout-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 2rem 1rem;
  }

  .slideout-menu.open {
    transform: translateX(0);
  }

  .dim-overlay {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9998 !important;
  }

  .slideout-menu-items a {
    font-size: 1.2rem !important;
    line-height: 1.8rem !important;
  }

  .slideout-menu-items ul li::marker {
    font-size: 1rem !important;
    color: #d3531a !important;
  }
}

/* LOAD LAST */


