/* I can commit from my laptop without being on the browser */



/* COLOR PALETTE COLORS */

html {
  --primary-blue: #0e739e;
  --secondary-blue: #80D0F4;
  --tertiary-blue: #BFE7F9;
  --pallete-white: #ffffff;
  --pallete-grey: #262626;
}

body { 
  padding-top: 106px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* .navbar { position: relative; max-height: 56px;} */
.navbar-brand, .navbar-brand img {
  border-radius: 50%;
  z-index: 9999;
}

.left-aligned { margin-left: auto; }
.bg-dark { background-color: #343a40 !important; }
.bg-fsu-primary { background-color: #782f40 !important; }
.bg-fsu-secondary { background-color: #ceb888 !important; }
.bg-primary-blue { background-color: var(--primary-blue); }
.bg-secondary-blue { background-color: var(--secondary-blue); }
.bg-tertiary-blue { background-color: var(--tertiary-blue); }
.bg-footer { background-color: var(--secondary-blue); }
.bg-hero { background-color: #45b06cff; }


/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom: 1.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }

/* FONTS */
@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter-VariableFont_opsz\,wght.ttf') format('woff2');
  font-weight: 100 900;  /* supports all weights */
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('/static/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('woff2');
  font-weight: 100 900;
  font-style: italic;
}


/* footer */
footer a { color: white; font-weight: bold; text-decoration: none; }
footer a:hover { color: white; text-decoration: underline; }
footer .carousel-item { height: 300px; overflow: hidden; }
footer .carousel-item img { height: 100%; width: 100%; object-fit: contain; }

.external-carousel-button {
    background-color: #343a40;
}

#carouselpausebtn { margin-left: 80px !important }

.content-header {
  padding: 10px;
  margin-bottom: 0px;
  font-size: 32px;
  font-weight: bold;
}

.content {
  padding: 10px;
  padding-bottom: 40px;
  font-size: 18px;
  overflow-y: auto;
  background-color: var(--text-main);
  color: var(--bg);
}

/* Mirror of .content with half bottom padding */
.content-2 {
  padding: 10px;
  padding-bottom: 20px;
  font-size: 18px;
  overflow-y: auto;
  background-color: var(--text-main);
  color: var(--bg);
}

.sub-content {
  padding: 10px;
  padding-bottom: 40px;
  padding-left: 40px;
  font-size: 18px;
  overflow-y: auto;
  background-color: var(--text-main);
  color: var(--bg);
}

.sidebar {
  align-self: flex-start;
  max-height: 80vh;
  padding: 15px;
  padding-right: 0;
  padding-left: 0;
  border-radius: 10px;
  position: sticky;
  top: 10%;
  overflow-y: auto;
  
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.sidebar ul { list-style-type: none; padding-left: 0; }
.sidebar ul ul { padding-left: 1.5rem; margin-top: 0.5rem; }
.sidebar ul ul ul { padding-left: 3rem; margin-top: 0.5rem; }
.sidebar li { margin-bottom: 0.5rem; }

.sidebar a { 
  text-decoration: none !important;
  color:#343a40 !important;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  padding: 0.25rem 0.5rem;
  display: block;
  border-radius: 5px;
}

.sidebar a:hover { 
  text-decoration: underline !important;
  background-color: #e9ecef;
}

/* Basic styling for the button */
.back-to-top-btn {
    position: fixed;
    bottom: 24px; /* Adjust as needed */
    right: 24px; /* Adjust as needed */
    background-color: #007bff; /* Example color */
    color: white;
    border: none;
    border-radius: 50%; /* Make it round */
    width: 48px; /* Minimum tap target size */
    height: 48px; /* Minimum tap target size */
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}

.modal-body img {
  max-height: 300px;
}

.fixed-top { position: absolute !important; }

/* 
* For screen readers only 
*
.sr-only { 
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
*/

.sub-content-header a { font-size: 24px; }

/* HP TIMELINE CSS */
.timeline-container {
    font-family: 'Inter', sans-serif;
    margin: 0;
    min-height: 200vh; /* Ensure enough scrollable content for the timeline effect */
    position: relative; /* For absolute positioning of the line */
    scroll-timeline: --timeline-progress y; /* Define a named scroll timeline */
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%; /* Line spans the entire height of the body */
    background-color: #000000; /* Light gray line */
    z-index: -1; /* Puts the line behind content */
    transform-origin: center top; /* Scale from the top */

    /* Apply scroll-driven animation for width */
    animation: widenLine linear forwards;
    animation-timeline: --timeline-progress;
    width: 2px; /* Starting width */
}

/* Keyframes for the line widening animation */
@keyframes widenLine {
    from {
        width: 2px; /* Start thin */
    }
    to {
        width: 8px; /* Get wider as you scroll down */
    }
}

/* Styles for the circular image events */
.timeline-event-circle {
    width: 180px; /* Size of the circle */
    height: 180px;
    border: 4px solid #3b82f6; /* Blue border */
    background-color: #eff6ff; /* Light blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1e40af;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: relative;
    z-index: 1; /* Ensure it's above the line */
    border-radius: 50%; /* Make it perfectly circular */
    overflow: hidden;
}


.timeline-event-circle a {
  width: 180px;
  height: 180px;
}

.timeline-event-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styles for the date boxes */
.timeline-date-box {
    padding: 8px 20px;
    background-color: #10b981; /* Green background */
    color: white;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    scrollbar-color: var(--primary-blue);
}

.timeline-content-container .carousel-item {
  height: 80vh;
  overflow-y: scroll;
}

.timeline-content-container .carousel-inner {
  border: 4px groove var(--primary-blue);
  border-radius: 2%;
  padding: 10px;
}

.card-button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  display: block; /* ensures it behaves like a container */
  width: 100%;
}



.timeline-content-container.carousel-item::-webkit-scrollbar {
  padding: 5px;
}

.carousel-item .carousel-header { text-align: center; }
.carousel-item .carousel-profile { text-align: center; }
.carousel-profile img { display: flex; align-self: center;}
.read-more-btn { align-items: center; justify-content: center; }
.carousel-control-next-icon { background-color:#343a40 !important; }
.carousel-control-prev-icon { background-color:#343a40 !important; }
.sticky-carousel-container { 
  position: sticky;
  top: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  border-radius: 50%;
}


.carousel-control-next,
.carousel-control-prev {
  top: 45% !important;
  bottom: 45% !important;
}

.timeline-content-container .carousel-item img {
  width: 180px;
  height: 180px;
  margin: 0 auto;
}

.circle-link circle {
  fill: blue;
  opacity: 0.5;
  transition: fill 0.3s ease, opacity 0.3s ease;
}

.circle-link text {
  fill: white;
  transition: fill 0.3s ease;
}

/* Styles applied when the user hovers over the entire link */
.circle-link:hover circle {
  fill: red;
  opacity: 1;
}

.circle-link:hover text {
  fill: black;
}

.humanBody {
  top: 5%;
  position: sticky;
}

.humanBody a {
  text-decoration: none;
}

.homepage-cards a { text-decoration: none !important; }
.homepage-cards img { 
  max-height: 356px;
}

.bodyDesc h2 { font-size: 3rem; }
.bodyDesc p { font-size: 23.2728px; }
.problem-statement h4 { line-height: 1.5;}
.problem-statement svg {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6%;
}
.problem-statement-text {
  display: flex;
  height: auto;
  overflow-y: scroll;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.our-mission h4 { line-height: 1.5; }

/* DIFFERENT VIEW HEIGHTS */
.vh-120 { height: 120vh !important; }
.vh-80 { height: 80vh; }
.vh-85 { height: 85vh; }
.vh-90 { height: 90vh; }
.vh-100 { height: 100vh; }

.video-iframe {
  border-radius: 10px;
}

/* ARTWORK PAGE CSS */
.art-header img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.art-box {
  padding: 10px;
  object-fit: cover;
  border-radius: 5px;
  max-height: 600px;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.art-box-middle {
  padding: 10px;
  object-fit: cover;
  border-radius: 5px;
  max-height: 600px;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.art-box-middle img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.art-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/*
* CSS for the animation
*/
.fade-in-on-scroll {
    /* Initial state: The element is invisible and slightly moved down */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-on-scroll.is-visible {
    /* Final state: The element is fully visible and in its original position */
    opacity: 1 !important;
    transform: translateY(0);
}

.circle-card {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

.entre-card {
  border-radius: 50%;
}

/* Styles for the circular image events */
.timeline-info-circle {
    /*width: 180px;  Size of the circle */
    height: 180px;
    /*background-color: #eff6ff;  Light blue background 
    display: flex;
    align-items: center;
    justify-content: center; */
    font-weight: bold;
    /*color: #1e40af; */
    text-align: center;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  Subtle shadow for depth */
    position: relative;
    z-index: 1; /* Ensure it's above the line */
    border-radius: 50%; /* Make it perfectly circular */
    overflow: hidden;
}

.timeline-info-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* MOBLILE RESPONSIVE SECTION; */

@media (max-width: 768px) {
  .fixed-top { position: fixed !important; }

  .sidebar {
    position: relative;
    top: auto;
    width: 100%;
    height: fit-content;
    max-height: fit-content !important;
    padding: 15px;
    margin-bottom: 20px;
    margin-left: 20px;
    overflow-y: visible;
  }

  .vh-80 { height: fit-content !important; }
  #first, #second, #third, #fourth {
    font-size: 1.9rem !important;
  }

}

.mobile-art-in-modal img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#mobile-art-btn {
  max-width: 200px !important;
  padding: 10px;
  border-radius: 10px;
}