/*
 * 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.
 */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wdth,wght@8..144,25..151,100..1000&display=swap");
body {
    font-family: "Roboto Flex", sans-serif;
    font-style: normal;
    font-variation-settings: "wdth" 105;
    font-weight: 400;
    font-size: 16px;
    background-color: #f1f1f1;
}
h1 {
    font-weight: 1000;
    font-style: normal;
    font-variation-settings: "wdth" 135;
    font-size: 40px;
    line-height: 1.2em;
}
.wide {
    font-variation-settings: "wdth" 135;
    font-weight: 1000;
}
h1.title {
    font-size: 50px;
}
.activity .trix-content {
    flex-direction:row;
}
@media (max-width: 768px) {
    h1.title {
        font-size: 40px;
    }
    h1 {
        font-size: 30px;
    }
    h1 {
        font-size: 25px;
    }
}
h2 {
    font-weight: 1000;
    font-style: normal;
    font-variation-settings: "wdth" 135;
    font-size: 25px;
    line-height: 30px;
}
.service-description strong {
    display: block;
    border: 1px dashed #7c7c7c;
    border-radius: 6px;
    padding: 4px;
    margin: -4px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.5s ease-in-out;
}

@keyframes success {
  0% { transform: scale(1); box-shadow: 0 0 0 rgba(0,255,0,0); }
  50% { transform: scale(1.1); box-shadow: 0 0 10px rgba(0,255,0,0.7); }
  100% { transform: scale(1); box-shadow: 0 0 0 rgba(0,255,0,0); }
}
.success {
  animation: success 0.5s ease-in-out;
  border-color: #22c55e; /* green border */
}
