/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 @font-face {
 font-family: 'Inter-Variable';
 src:  url("/assets/Inter-Variable-c6876acd.ttf") format('truetype');
 font-display: swap;
}

 * {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-size: 17px;
 line-height: 17px;
 }
 body {
  background-image: url("/assets/logo-6d4084ee.png");

  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 50%; /* Optional: adjust based on image scaling preferences */
  height: 100vh;
  min-width: 100vw;
  /* background-blend-mode: multiply; */
  font-family: 'Inter-Variable';
  background-color: #ffffff;
  color: #000000;
  transition: background-color 0.8s, color 0.8s;
 }

 .root-name{
   font-size: 1.4rem;
 }
 :root {
   --golden-ratio: 1.618; /* Golden ratio */
 }
.bottom{
  bottom: 0;
}
 .yield {
   display: flex;
   flex-direction: row;
   justify-content: center;
 }

 body.dark-mode {
   background-color: #0d0d0d;
   color: #ffffff;
 }
 .auth-links {
   background: rgb(255, 255, 255, 0.9);
   border-radius: 0.4rem;
   margin-top: 3rem;
   /* padding-top: 1rem; */
 }
.actions{
  padding: 0.4rem;
}
.small-cell{
  font-size: 0.8rem
  max-width: 45ch;
}
table {
  border-collapse: collapse;
  // width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid;
  border-bottom-color: inherit;
}

th {
  color: rgba(10,107,108, 0.9);
  position: sticky;
  text-transform: capitalize;
  top: 0; /* Keeps the header at the top */
  z-index: 4; /* Ensures the header is above other elements */
}
.round-margin-half{
  margin: 0.5rem;
}
.round-margin{
  margin:1rem;
}
.round-padding-half{
  padding: 0.5rem;
}
 /* Common button and link styling */
.link{
     border: none;
     background-color: inherit;
     position: relative;
     color: rgba(10,107,108, 0.9); /* Matches the faded text effect */
     /* text-transform: uppercase; */
     cursor: pointer;
     margin: 0.5rem;
     font-family: 'Merienda-Variable';
     /* padding: 0.5rem 1rem; */
     text-decoration: none;
     font-size: 1rem;
     /* font-weight: lighter; */
     /* Background effect */
     background-image: url("/assets/wave5-a05157fb.svg");
     /* background-repeat: repeat-x; */
     background-size: auto 100%; /* Ensure the image stretches vertically */
     -webkit-background-clip: text;
     background-clip: text;

     animation: scroll-bg 15s linear infinite;
 }
 .link:hover{
   color: rgba(10,107,108, 0.1);
 }
 button, a {
     border: none;
     background-color: inherit;
     position: relative;
     color: rgb(10,107,108, 0.9); /* Matches the faded text effect */
     /* text-transform: uppercase; */
     cursor: pointer;
     margin: 0.5rem;
     /* padding: 0.5rem 1rem; */
     text-decoration: none;
     font-size: 1rem;

     /* Background effect */
     background-image: url("/assets/wave5-a05157fb.svg");
     /* background-repeat: repeat-x; */
     background-size: auto 100%; /* Ensure the image stretches vertically */
     -webkit-background-clip: text;
     background-clip: text;

     animation: scroll-bg 15s linear infinite;
 }

button, a:hover {
  color: rgba(10,107,108, 0.1);
}
.zone-link.active {
  font-size: 1.4rem;
  /* Background effect */
  background-image: url("/assets/wave5-a05157fb.svg");
  /* background-repeat: repeat-x; */
  background-size: auto 100%; /* Ensure the image stretches vertically */
  -webkit-background-clip: text;
  background-clip: text;

  animation: scroll-bg 15s linear infinite;
  color: rgba(10,107,108, 0.1);
}
.black{
  color: #444;
}
.negative-bottom{
  margin-bottom: -1.5rem;
}
 /* Keyframes for background animation */
 @keyframes scroll-bg {
     0% {
         background-position: 100% center; /* Start from the far right */
     }
     100% {
         background-position: 0% center; /* Move to the left */
     }
 }
.row-wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  align-items: center;
}
.row-stretch{
  display: flex;
  flex-direction: row;
  align-content: space-between;
}
.column-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-radio-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.notice, .alert {
  position: relative;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  transition: opacity 0.5s ease-out;
  z-index: 20;
}
.progress-circle {
  --percentage: 0%; /* Default, will be updated with inline style */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: conic-gradient(#4CAF50 calc(var(--percentage) * 1%), #ddd 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  position: relative;
}
.call-button {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  background-color: #4CAF50; /* Green */
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.call-button:hover {
  background-color: #45a049;
}
.hidden{
  display: none;
}
.progress-circle span {
  position: absolute;
}

.flash-close {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}

.line-text-1{
  line-height: 1.5rem;
}
.form-radio-label {
  margin-left: 5px;
}
.no-border{
  border: none;
}
.tile {
  margin: 0.5rem;
  padding: 0.5rem;
  text-align: center;
  border-radius: 5px;
  background-color: rgba(242, 242, 242, 0.9); /* Default light mode background */
  color: #000000; /* Default text color for light mode */
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: 400;
}

body.dark-mode .tile {
  background-color: rgba(26, 26, 26, 0.9); /* Dark mode background */
  color: #ffffff; /* Dark mode text color */
}
.location-description{
  padding: 0.3rem;
  max-width: 60ch;
}
.service-description{
  max-width: 40ch; /* Standard width for wrapping */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break properly */
  padding: 0.3rem;
}
.collection-select{

}
.centered-text{
  text-align:center;
}
.link-spacer{
  margin-top: 2.5rem;
}

 .top-links {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   align-content: center;
   font-family: 'Inter-Variable';
    position: fixed; /* Keeps the element fixed at the top */
    top: 0; /* Positions it at the very top */
    left: 0; /* Aligns it with the left edge */
    width: 100%; /* Ensures it spans the full width of the viewport */
    z-index: 10; /* Keeps it above other elements */
    background-color: inherit;
 }
.links-2 {
  display: flex;
  align-items: center;
}
.links-1 {
  display: flex;
  align-items: center;
}
 .links-2 {
   margin-left: calc(30px * 1.618); /* Golden ratio spacing */
 }
 .links-3 {
   margin-left: calc(30px * (1.618 * 1.618)); /* Scaled golden ratio spacing */
 }
.link{
  font-family: 'Inter-Variable';
}
.link-icon{
  height: 2.5rem;
}
.base-icon{
  height: 4.5rem;
  margin-bottom: 0.5rem;
}
.tiny-icon{
  height: 1.5rem;
}
.right-text{
  text-align: right;
}
/* Form Styles */
.form-heading {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #444;
}

.field {
  margin-bottom: 15px;

}

.form-label {
  font-size: 14px;
  font-weight: bold;
  color: #666;
}

.form-input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.form-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.4);
}

/* Checkbox Field */
.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-checkbox {
  width: 16px;
  height: 16px;
}

.form-checkbox-label {
  font-size: 14px;
  color: #666;
}
/* Links */
.links-container {
  margin-top: 20px;
  text-align: center;
}
.form-container{

}
.notice2{
  color: green;
  font-size: 1.5rem;
  text-align: center;
  margin: 1rem;
}

.auth-link {
  display: block;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;

  margin-bottom: 10px;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-omniauth {
  margin-top: 10px;
}
.cap{
  margin-top: 3rem;
  padding-left: 20%;
  padding-right: 20%;
}
.no-cap{

  width: 100%;
}
@media (max-width: 1280px) {
  .cap{
    padding-left: 6%;
    padding-right: 6%;
  }
}

@media (max-width: 800px) {
  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 16px;
  }
  .cap{
    padding-left: 0%;
    padding-right: 0%;
  }
}

/* Media query for smaller screens */
@media (max-width: 560px) {
  .base-icon{
    height: 3.5rem;
    margin-bottom: 0.5rem;
  }
.centered-content{
  display: flex;
  flex-direction: row;
  justify-content: center;
}
}
