@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');

@font-face {
    font-family: 'OvercameRegular';
    src: url('/fonts/ttf/OvercameRegular.ttf') format('truetype');
}

@font-face {
    font-family: 'OvercameBold';
    src: url('/fonts/ttf/OvercameBold.ttf') format('truetype');
}

@font-face {
    font-family: 'OvercameItalic';
    src: url('/fonts/ttf/OvercameItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'OvercameBoldItalic';
    src: url('/fonts/ttf/OvercameDemoItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'OvercameOutline';
    src: url('/fonts/ttf/OvercameOutline.ttf') format('truetype');
}

/*font-family: 'Black Ops One', cursive;*/
html {
    scroll-behavior: smooth;
    transition: ease-in-out;
    
  }

  @keyframes pulseAnimation {
    0% {
        background-color: transparent;
        transform: scale(1);
    }
    50% {
        background-color: #ED1C24; /* Gold color */
        transform: scale(1.1);
    }
    100% {
        background-color: transparent;
        transform: scale(1);
    }
}

/* Style for mobile image - hidden by default */
.mobile-image {
    display: none;
  }
  
  /* Media query for devices with a max width of 768px (common breakpoint for tablets and below) */
  @media (max-width: 768px) {
    /* Hide desktop image on mobile */
    .desktop-image {
      display: none;
    }
  
    /* Show mobile image on mobile */
    .mobile-image {
      display: block;
    }
  }
  

/* Cookie Consent Banner Styles */
.cookie-consent-container {
    position: fixed;    
    bottom: 0;
    width: 100%;
    background-color: #f4f4f4;
    color: #333;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .cookie-text {
    flex-grow: 1;
  }
  
  .cookie-buttons button {
    margin-left: 10px;
    padding: 5px 15px;
    background-color: #ED1C24;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .cookie-buttons button:hover {
    background-color: #ED1C24;
  }
  

a {
    font-family: 'Black Ops One', cursive;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ED1C24;
    color: black;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s;
    font-family: 'Black Ops One', cursive;;
}

.subtle-button {
    background-color: #ED1C24;
    border: none;
    color: #000;
    font-size: 1.25rem;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
    width: 75%;
    height: 75px;
  }
  .subtle-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

#myBtn:hover {
    background-color: #555;
}



#about  {
    padding-top: 75px!important;
}

.offcanvas {
    width: 250px; /* adjust width as needed */
}

#segi-section {
    margin-bottom: 25px;
}

#segii-section {
    margin-bottom: 25px;
}

#private-section {
    margin-bottom: 25px;
}

.street-sign {
    /* ... other styles ... */
    animation-duration: 1s; /* duration of the animation */
    animation-fill-mode: forwards; /* makes sure the end state remains */
}

  
/* font-family: 'Lilita One', cursive; */
.street-signs-section {
    text-align: center;
}

.sign-container {
    display: inline-block;
    vertical-align: bottom; /* Align the bottom edges of the signs */
    position: relative; /* Make relative for absolute positioning of the pole */
}

.floating-social-icons {
    position: fixed; 
    font-size: 10px!important;/* Fixed positioning to make it float */
    top: 60%; /* Position lower on the screen */
    left: 0; /* Align to the far left, flush with the side */
    transform: translateY(-50%); /* Center vertically from the current position */
    z-index: 1000; /* High z-index to keep it above other content */
    display: flex;
    flex-direction: column; /* Stack icons vertically */
    gap: 5px; /* Reduced space between smaller icons */
    padding:5px;
}

.btn-social-icon {
    width: 30px;
    font-size: 15px!important;       /* Reduced width for a smaller circle */
    height: 30px; /* Reduced height to match the width for a perfect circle */
    display: flex;  
    align-items: center; /* Center the icon vertically */
    justify-content: center; /* Center the icon horizontally */
    font-size: 12px; /* Further reduced icon size for smaller aesthetic */
    color: #555; /* Icon color starts gray */
    background-color: rgba(255, 255, 255, 0.5)!important;  /* Partially transparent red */ /* Transparent background initially */
    border-radius: 50%; /* Maintain circular shape */
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3); /* Subtle shadow for better visibility */
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s; /* Smooth transitions for hover effects */
}

.btn-social-icon:hover, .btn-social-icon:focus {
    color: #ffffff; /* Change icon color to white on hover */
    background-color: #ff0000; /* Change background to red on hover */
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8); /* Enhanced red shadow on hover for a more noticeable glow */
}

@media (max-width: 576px) {
    .floating-social-icons {
        top: 70%; /* Position even lower on mobile for better accessibility */
    }
    .btn-social-icon {
        width: 25px; /* Even smaller circle for mobile */
        height: 25px; /* Maintain circle shape on mobile */
        font-size: 10px; /* Reduce font size even more for mobile to keep proportions */
    }
}



.text-muted {
    color:white!important;
}

.street-sign {
    display: block;
    background-color: black;
    color: white;
    
    border: 3px solid #ffffff;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6); /* Optional: Adds a basic glow */
}


/* CSS for all devices */
.street-sign-image {
    max-width: 100%;
    height: auto;
}



@media (max-width: 576px) {
    .street-sign-image {
        max-width: 80%; /* Shrinks the image size on small screens */
        height: auto; /* Maintains aspect ratio */
    }
}


.street-sign::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8), /* This color can be adjusted for the laser effect */
        transparent
    );
    transition: all 0.5s;
}

.street-sign:hover::before {
    left: 100%;
}

/* Enhancing buttons with thick borders, comic-style font, and vibrant colors */
button, .street-sign {
    font-family: 'Bangers', cursive;
    background-color: #f00; /* Bright red background, adjust as needed */
    color: #fff; /* White text */
    text-transform: uppercase;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s ease; /* Smooth transition for interaction */
}

  
/* font-family: 'Lilita One', cursive; */
.street-signs-section2 {
    text-align: center;
}

.sign-container2 {

    vertical-align: bottom; /* Align the bottom edges of the signs */
    position: relative; /* Make relative for absolute positioning of the pole */
}

.street-sign2 {
    display: block;
    padding: 5px 5px;
    background-color: #f5f5f5;
    color: #333;
    width: 100%;
    border: 3px solid #333;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-bottom: 5px;

}

.street-sign2:hover {
    display: block;
    padding: 15px 40px;
    background-color: #00ff00;
    color: #333;
    width: 100%;
    border: 3px solid #333;
    border-radius: 15px;
    font-weight: bold;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-bottom: 5px;

}

.offcanvas-top {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;    /* make it full width */
    height: auto;
    transform: translate(0, -100%);
    height: fit-content!important;
}

.offcanvas.show.offcanvas-top {
    transform: translate(0, 0);
}


.street-sign:hover {
    background-color: #000000;
    color: #ED1C24;
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.active-street-sign {
    background-color: #ED1C24;  /* adjust to your preferred highlight color */
    border: 2px solid #333;
    color:black;  /* adjust as needed */
}


.calendar-section {
    background-color: black;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#live-calendar-btn {
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: clamp(10px, 2.5vw, 16px); /* Adjust button font size responsively */
}

#live-calendar-btn:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

thead {
    background-color: #ED1C24;  
    color:black;
}

th, td {
    padding: 8px;
    border: 1px solid #e2e2e2;
    text-align: center;
    font-size: clamp(10px, 2vw, 14px); /* Adjust table font size responsively */
}

tr:hover {
    background-color: #ED1C24
    ;
}

/* ... Existing CSS ... */

/* Mobile Responsiveness */
@media (max-width: 576px) { /* This breakpoint is typically for small devices like mobile phones */
    .street-sign {
        padding: 8px 20px; /* Reduce padding for mobile */
        font-size: 0.8rem; /* Reduce font size for mobile */
    }
    
    .pole {
        height: 60px; /* Reduce pole height for mobile */
    }
}

/* ... Rest of the CSS ... */


.alert-success {
    color: black;
    background-color: #3bff34;
    border-color: transparent;
}

/*flashcard specific*/
.content {
  transform-style:flat;
}

.card:hover .content {
  transform: rotateY( 180deg );
  transition: transform 0.5s;
}

.tab-button {
    background-color: limegreen;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;
    transition: all 0.3s;
    border: none;
    padding-bottom: 1rem;
    font-size: 1rem; /* Reduce the font size here */


    /* ... rest of the styles ... */
}

.tab-button:hover {
    background-color: limegreen;
    border-radius: 12px 12px 0 0;
    margin: 0 5px;
    transition: all 0.3s;
    border: none;
    padding-bottom: 1rem;
    font-size: 1rem; /* Reduce the font size here */
    text-decoration: underline!important;


    /* ... rest of the styles ... */
}

#hero {
    padding-top: 75px; /* Adjust based on the height of your navbar */
    background-color: #24ED1C;
    padding-bottom: 0!important;
}

.bg-dark {
    background-color: white!important;
}

.tab-button {
    background-color: #ED1C24;
    color:black;
    
}

.progress-bar {
    color:black!important;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    background-color: #ED1C24;
    transition: width .6s ease;
}

button.nav-link {
    appearance: auto;
    user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: transparent;
    color: black;
    padding: 1px 6px;
    font-weight: bolder;
    border-width: 2px;
    border-style: none;
    border-color: none!important;
    border-image: initial;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #ED1C24;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: grab;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: black;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
}

.darkest {
background-color: transparent!important;
color:transparent!important;
font-size: medium;
max-width: 20px;

}


.front,
.back {
  
  height: 100%;
  width: 100%;
  color: white;
  text-align: center;
  font-size: xx-small;
  border-radius: 5px;
  backface-visibility: hidden;
}

.back {
  color: white;
 
  transform: rotateX( 90deg );
}

/*flashcard specific*/


body {
    background-color: white!important;
    /* background-image: url("images/background.png"); */
    background-size:100%;
    color:black!important;
    overflow: overlay;
    font-size: 18px;
    font-family: Arial, sans-serif;
   
    
}

h1, h2, h3, h4, h5, h6, small, li, button{
    font-family: 'OvercameBold', sans-serif;
    color:black;
    margin-top: .1px!important;
    margin-bottom: .1px!important;
    font-weight: 900;

}
.btn-outline-red {
    border-color: #ED1C24;
    border-radius: 10px;
    border-width: 5px;
    box-shadow: #000000 5px 5px;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgb(0, 0, 0);
}

.btn-primary:disabled {
    color: #fff;
    background-color: #ed1c2399;
    border-color: #ed1c2399;
}

.card-title {
    color:white!important;
}

.card-header {
    color:white;
}

.card-text {
    color:white;
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto;
    background-color: #201F1D;
}



.card {
    background-color: #201F1D;
}

.accordian {
    background-color: #201F1D;
    color:white;
}

a {
    text-decoration: none!important;
    color:black;
    padding: 1px 6px;
    
}





a.navi {
text-decoration: none!important;
color:rgb(0, 0, 0);
padding: 1px 6px;
appearance: auto;
user-select: none;
white-space: pre;
align-items: flex-start;
text-align: center;
cursor: default;
box-sizing: border-box;
background-color: transparent;
padding: 1px 6px;
border-width: 2px;
border-style: none;
border-color: none!important;
border-image: initial;
margin-left: 5px;
margin-right: 5px;
cursor: pointer;
font-weight: bolder;
background-color: #ED1C24;
border-radius: 5px;
cursor: url(myBall.cur),auto;
}

a:hover {
    color: black;
    text-decoration:underline!important;
}


.tag {
    border-radius: 10px;
    border-style: groove;
    border-color: #ED1C24;
    padding: 5px;
    margin: 2px;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: #ED1C24;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #201F1D;
    color:white;
}

.accordion-item {
    background-color: #ED1C24;
    border: 1px solid rgba(0,0,0,.125);
    color:black;
}

nav {
    background-color: white;
}


.accordion-button {
    font-size: 18px;
    font-style: oblique;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: black;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
    font-family: 'Black Ops One', cursive;
}


.questionText {
    font-size: 14px;
}


@media only screen and (max-width: 600px) {
    input.nav-link  {
        font-size: 4vw;
    }
    .lh-1 {
        font-size: 5vw;
    }
  
    .lead {
      font-size: 3vw;
    }
    .tiny {
        font-size: 2vw;
      }
   
    .img-tiny {
        max-width:100px;
          }

}

.no-hover {
    pointer-events: none;
    opacity: 0.6;
}

   
.black {
    color:black;
}

.modal-header {
    color:black;
}

.modal-title {
    color:black;
}

.modal-body {
    color:black;
}

.modal-footer {
    color:black;
}
div.row.flex-lg-row-reverse.align-items-center.g-5.py-5 {
    margin: 0!important;
    padding: 0!important;
}

.tiny {
    font-size: xx-small;
}

.collapse {
    min-width: 100%;
}

div.card.card-body {
    min-width: 100%;
    background-color: #201F1D;
    color:white;
}


.col-md-8 {
    flex: 0 0 auto;
    width: 30%;
    
}

.col-md-4 {
    flex: 0 0 auto;
    width: 60%;
    
   
}

.model-header {}

.reg {
    background-color: #ED1C24;
    border:none!important;
    box-shadow: white 1px 2px;
}

.pw {
    background-color: #0998b4;
    border:none!important;
    box-shadow: white 1px 2px;
}

.dd {
    background-color: #066375;
    border:none!important;
    box-shadow: white 1px 2px;
}

.sd {
    background-color: #02252c;
    border:none!important;
    box-shadow: white 1px 2px;
}

.m {
    background-color: #000a0c;
    border:none!important;
    box-shadow: white 1px 2px;
}


.img-fluid {
    margin-bottom: 5px;

    
}

.btn-john {
    background-color: transparent;
    color:white;
    border-radius: 5px;
    border-color: white;
    border-style: solid;
    
}


.btn-dark {
    background-color: white;
    color: #201F1D;
}

.btn-john {
    background-color: transparent;
    color: #201F1D;
    border-color: #201F1D;
    width: 80%;
}

footer {
    background-color: transparent;
}


.theme {
    color: #ED1C24;
    
}

.theme-button {
    background-color: #ED1C24;
    width: 100%;
    font-size: calc(1vw + 1vh);
}

#timer {
   
    
    background-color: #ED1C24;
  }
  
  #controls {
   
   
    background-color: #ED1C24; 
  }
  
  #controls button {
   
    background-color: #ED1C24;
  }


ul {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.25;
}

strong {
    color: #ED1C24;
}

strong.notes {
    color:rgb(194, 115, 115);
}



.users {

    width: 100%!important;
}

.input-group {
    min-width: 100%!important;
}

ol {

    background-color: #201F1D;
}

.list-group-item {
    background-color: #201F1D;
    color: white;
}


.alert-primary {
    color: black;
    background-color: #ED1C24!important;
    border-color: #ED1C24!important;
    font-weight: 800!important;
}

.btn-primary {
    background-color: black;
}

.btn-primary:hover {
    background-color: #ED1C24!important;
    color:black!important;
    font-weight: bold!important;
}

.btn-primary:active {
    background-color: #ED1C24!important;
    color:black!important;
    font-weight: bold!important;
}

.btn-primary::after {
    background-color: #ED1C24!important;
    color:black!important;
    font-weight: bold!important;
}


/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: black;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: black;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: black;
  }

  /* Handle */
::-webkit-scrollbar-thumb {
    background: black; 
    border-radius: 10px;
  }
  

  .img-tiny {
max-width:45%;
  }

.form-control {
    margin: 2px;
}
  
button.special {
    appearance: auto;
    user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: transparent;
    color: -internal-light-dark(black, white);
    padding: none;
    border-width: 2px;
    border-style: none;
    border-color: none!important;
    border-image: initial;
    margin-left: none;
    margin-right: none;
    border-radius: 5px;
}


button.navi {
    text-decoration: none!important;
    color: black;
    padding: 1px 6px;
    appearance: auto;
    user-select: none;
    white-space: pre;
    align-items: flex-start;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: transparent;
    padding: 1px 6px;
    border-width: 2px;
    border-style: none;
    border-color: none!important;
    border-image: initial;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
    font-weight: bolder;
    background-color: #ED1C24;
    border-radius: 5px;
}


