/* Add styles on here that are site wide*/

            ol {
            padding-left: 16px;
        }

        ol ol {
            padding-left: 28px;
        }

        ol ol ol {
            padding-left: 32px;
        }

.dropdown-item.active, .dropdown-item:active {
    color: transparent;
    background-color: transparent;
}
.dropdown-menu {
    margin: 0rem 0 0;
    border-radius:0rem;
}
.dropdown-item {
    padding-right: 5rem;
    padding-left:0.5rem;
    padding-top:0.5rem;  
}
#menu_right ul {
    margin-left: 1em;      
}
.some_content{   
    padding-left: 15%; 
    padding-right: 15%; 
}
 ul .navbar-nav{
    margin-left:30em; 
} 
strong {
    margin: 0 !important;
    padding: 0 !important;
    display: inline !important; /* Ensures it behaves like normal text */
}


.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 46.25%; /* Aspect ratio of 16:7.4 */
    height: 0;
    margin-bottom: 10px; /* 10px space below the video */
    margin-top: 15px; /* 15px space above the video */
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* ========================================== */
/* 🌐 GLOBAL STYLES & DOCUMENT EMBEDS         */
/* ========================================== */

/* 📌 General container styling for potential use */
.doc-container {
    width: 100%;
    max-width: 900px; /* Adjust for desktop */
    margin: 0 auto; /* Centers it */
}

/* 📌 General iframe settings */
.doc-container iframe {
    width: 100%;
    height: 600px; /* Adjust height as needed */
    border: none;
}

/* 🔹 Force iframe to fit mobile screens */
@media (max-width: 768px) {
    .doc-container iframe {
        width: 100%;
        height: 400px; /* Adjust height for smaller screens */
    }
}
/* ========================================== */
/* 📝 OneDrive Embed - Desktop & Mobile Styles */
/* ========================================== */

/* 💻 DESKTOP STYLES - 75% Width */
.onedrive-embed-75-desktop-only {
    display: flex;
    justify-content: center;  /* 💻 Centers horizontally */
    align-items: center;  /* 💻 Centers content inside */
    width: 100%;
}

.onedrive-embed-75-desktop-only iframe {
    display: block;
    width: 635px;  /* 💻 75% Width */
    height: 288px;  /* 💻 Fixed height */
    margin: 0 auto;  /* 💻 Ensures perfect centering */
}

/* 💻 DESKTOP STYLES - 100% Width */
.onedrive-embed-100-desktop-only {
    display: flex;
    justify-content: center;  /* 💻 Centers horizontally */
    align-items: center;  /* 💻 Centers content inside */
    width: 100%;
}

.onedrive-embed-100-desktop-only iframe {
    display: block;
    width: 830px;  /* 💻 100% Width */
    height: 288px;  /* 💻 Fixed height */
    margin: 0 auto;  /* 💻 Ensures perfect centering */
}

/* 🛑 💻 Hide Mobile Version on Desktop */
.onedrive-embed-mobile-only {
    display: none;
}

/* ========================================== */
/* 📲 MOBILE STYLES - Visible Only on Mobile */
/* ========================================== */

@media (max-width: 768px) {

    /* 🛑 📲 Hide 75% and 100% Desktop Versions on Mobile */
    .onedrive-embed-75-desktop-only, 
    .onedrive-embed-100-desktop-only {
        display: none;
    }

    /* 📲 Show Mobile Version */
    .onedrive-embed-mobile-only {
        display: block;
        text-align: center;  /* 📲 Ensures alignment */
    }

    .onedrive-embed-mobile-only iframe {
        width: 100%;  /* 📲 Full width for mobile */
        height: 288px;  /* 📲 Same height for consistency */
    }
}
/* ===============================================================
    Block Layouts | 2092z6a) ⚛️ Sienna AI – Two column box layout [26 July 2025]
   📁 Nick-Ray-Ball-2025.css | By 4o Added: 26 July 2025
   ============================================================== */

.full-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/*Styling for the 2 column squares on the homepage and other pages */
.square-block {
  width: 48%;
  min-width: 300px;
  aspect-ratio: 2 / 1; /* Previously 1 / 1 */
  padding: 2rem;
  margin: 1%;
  box-sizing: border-box;
}

/*
.square-block.dark {
  background: #111;
  color: #fff;
}

.square-block.left {
  background: #f5f7fa;
  color: #222;
}

*/

/* Default light block */
.square-block.left {
  background: #f5f7fa;
  color: #222;
}

/* Default dark block */
.square-block.right.dark {
  background: #111;
  color: #fff;
}

/* NEW: reverse combo */
.square-block.left.dark {
  background: #111;
  color: #fff;
}

.square-block.right.light {
  background: #f5f7fa;
  color: #222;
}
.square-block.white {
  background: #fff;
  color: #111;
}


.square-block.bg-image {
  background-image: url('/images/background1.jpg'); /* Adjust path */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #fff; /* or #111 depending on contrast */
}
/*
.square-block.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
/*  
  z-index: 1;
}

.square-block.bg-image > * {
  position: relative;
  z-index: 2;
}
*/


@media (max-width: 768px) {
  .square-block {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
  }
}
/* ===============================================================
    3 Column Block Layout | 2092z6a) ⚛️ Sienna AI – Three column box layout [30 July 2025]
   ============================================================== */
.three-col-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0 5px; /* 5px gap left & right */
}

.video-block {
  flex: 1 1 31.5%; /* slightly smaller than 33.33% */
  max-width: 31.5%;
  background: #fff;
  color: #111;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
}

.video-header {
  text-align: center;
  margin: 5px 0;
}

.video-header h2 {
  margin: 5px 0;
  font-size: 1.2em;
  line-height: 1.3em;
  font-weight: 600;
}

.video-poster {
  position: relative;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-radius: 0 !important;
}

.video-poster img {
  width: 100%;
  display: block;
  border: none;
  border-radius: 0 !important;
}
/*
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px; /* was 60px → 10% smaller */
  /*
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.2em 0.4em;
  border-radius: 50%;
  pointer-events: none;
}
*/
.video-poster {
  position: relative;
  cursor: pointer;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #000;
  transition: opacity 0.3s ease;
}

.video-poster:hover {
  opacity: 0.8;
}

/* Glow effect that follows the mouse */
.video-poster::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;

  left: var(--glow-x, 50%);
  top: var(--glow-y, 50%);
  transform: translate(-50%, -50%);
  opacity: var(--glow-opacity, 0);
  transition: opacity 0.3s ease;
}
.play-button {
  background: url('/images/YouTube-Video-Button.png') center center no-repeat;
  background-size: contain;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  height: 44%;

  pointer-events: none;
  display: block;
  z-index: 2;

  transition: transform 0.3s ease;
}

.video-poster:hover .play-button {
  transform: translate(-50%, -50%) scale(1.2);
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive collapse to single column on mobile */
@media (max-width: 900px) {
  .video-block {
    max-width: 100%;
    flex-basis: 100%;
  }

  .three-col-row {
    padding: 0; /* Remove side padding on mobile */
  }
}


/* ===============================================================
   🖱️🔘🔘🔘 cool-button-1 – Modular Button for Div Toggles | v1 – 31 July 2025
   Used for Gatekeeper UI, responsive & clean styling
   🧩 When clicked, each button updates the div to show relevant info
   ============================================================== */

.cool-button-1 {
  appearance: none;
  background-color: transparent;
  color: #000;
  border: 1px solid #ccc;
  padding: 12px 18px;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0;
  transition: background-color 0.4s ease, color 0.4s ease, transform 0.1s;
  flex: 1 1 auto;
  text-align: center;
/*
  min-width: 120px;
*/
  margin: 4px;
  flex: 0 0 auto;  /* or 1 1 auto */
  max-width: 250px;
}
.cool-button-1.no-max-width {
  max-width: none !important;
}


.cool-button-1.init-flash {
  background-color: black;
  color: white;
  border-color: black;
}
.cool-button-1:not(.init-flash) {
  background: white;
  color: black;
  border-color: #ccc;
}


.cool-button-1:hover {
  background-color: #111;
  color: white;
  border-color: #111;
}

.cool-button-1:active {
  background-color: #1a73e8;
  color: white;
  transform: translateY(-2px);
}

.cool-button-1:focus {
  outline: none;
  box-shadow: 0 0 0 2px #27a4ec;
}


@media (max-width: 767px) {
  .cool-button-1 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 10px 10px;       /* ← less top/horizontal padding */
    max-width: 46%;           /* ← fit 2 per row comfortably */
    margin: 1px 1%;           /* ← subtle spacing between buttons */
    flex: 0 0 48%;
  }

  .bod-buttons {
    gap: 2px;                 /* ← reduce space between buttons */
  }
}


/*  !!!!!!!!!!!!!!!!!!!!important Make this to the mobile only style '@media (max-width: 767px)'once we've got it working*/
  .close-button {
    margin-top: 30px;
    padding: 10px 20px;
    background: #222;
    color: white;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
}

/* 🌸 PINK VARIANT – light to lighter pink (bottom → top) #fbaff7, #f8c9f6 */
.button-pink-1.init-flash {
  background: linear-gradient(to top, #fbaff7, #f8c9f6);
  color: white;
  border-color: #e91e63;
}

.button-pink-1:hover {
  background: linear-gradient(to top, #fbaff7, #f8c9f6);
  color: white;
  border-color: #e91e63;
}

.button-pink-1:active {
  background: linear-gradient(to top, #f8c9f6, #fbaff7);
}


/* 💙 BLUE VARIANT – light to lighter blue (bottom → top) #27a4ec, #9dcfec */
.button-blue-1.init-flash {
  background: linear-gradient(to top, #27a4ec, #9dcfec);
  color: white;
  border-color: #1a73e8;
}

.button-blue-1:hover {
  background: linear-gradient(to top, #27a4ec, #9dcfec);
  color: white;
  border-color: #1a73e8;
}

.button-blue-1:active {
  background: linear-gradient(to top, #9dcfec, #27a4ec);
  color: white;
}


/* ===============================================================
   📦 bod-content: Slide + Fade Toggle for Content Sections 2
   ============================================================== */
/*
.bod-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  margin: 0;
  transition: 
    max-height 0.5s ease,
    opacity 0.4s ease,
    padding 0.4s ease,
    margin 0.4s ease;
  display: block; /* always block, but visibility controlled by transitions */
/*  
}
*/
/*  
.bod-content.show {
  max-height: 1500px; /* Large enough for most content */
/*
  opacity: 1;
  padding: 10px;
  margin-bottom: 10px;
}
*/


  .bod-content {
  display: none;
}

.bod-content.show {
  display: block;
}



/* When a panel is shown, run the slide/fade animation on its inner wrapper */
.bod-content.show .bod-inner {
  animation: bodSlideIn 0.4s ease-in-out both; /* make it obvious at first */
}

/* Keyframes for the micro slide-down feel */
@keyframes bodSlideIn {
  from { opacity: 0; transform: translateY(-6px); } /* exaggerated so you can see it */
  to   { opacity: 1; transform: translateY(0); }
}




/* 🟦 Optional: Add slight bounce/slide effect */
/*
@media (prefers-reduced-motion: no-preference) {
  .bod-content.show {
    animation: bod-fadeInSlideDown 0.6s ease;
  }

  @keyframes bod-fadeInSlideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
*/

/* 🎛️ Controls for Buttons (unchanged but included for context) */
.bod-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ Centered properly now */
  gap: 12px;
  margin-bottom: 10px;
}

.pause-slide-button {
  padding: 6px 14px;
  font-size: 14px;
  font-family: 'Work Sans', sans-serif;
  background: #1a73e8;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

/* 📱 Mobile show/hide logic */
.bod-no-show-on-mobile {
  display: block;
}

@media (max-width: 767px) {
  .bod-no-show-on-mobile {
    display: none !important;
  }
}
