/* style.css */

/* CSS Variables for Pastel Retro Theme with Block Elements */
:root {
    --color-primary: #B2DFDB; /* Soft Teal */
    --color-secondary: #FFECB3; /* Light Yellow */
    --color-tertiary: #E1BEE7; /* Light Purple */
    --color-accent: #A5D6A7; /* Pastel Green */
    --color-background-light: #FFF8E1; /* Very Light Yellow */
    --color-background-medium: #EDE7F6; /* Very Light Purple */
    --color-text-dark: #222222; /* Dark Grey for headings */
    --color-text-regular: #333333; /* Slightly lighter dark for body text */
    --color-text-light: #FFFFFF; /* White */
    --color-border: #90A4AE; /* Blue Grey */

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --spacing-small: 0.75rem;
    --spacing-medium: 1.5rem;
    --spacing-large: 3rem;

    --transition-speed: 0.3s;
    --transition-easing: ease-in-out;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--color-text-regular);
    line-height: 1.6;
    background-color: var(--color-background-light);
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll caused by animations or parallax */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: var(--spacing-medium);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-small);
}

a {
    color: var(--color-text-regular);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-easing);
}

a:hover {
    color: var(--color-primary);
}

/* Global Link Styles */
.is-underlined {
    text-decoration: underline;
}

.has-text-link-dark {
    color: var(--color-text-dark);
}
.has-text-link-dark:hover {
    color: var(--color-primary);
}


/* Text Contrast Utility */
.has-text-white {
    color: var(--color-text-light) !important;
}
.has-text-dark {
    color: var(--color-text-dark) !important;
}
.has-text-grey-dark {
    color: #4a4a4a !important; /* Bulma's grey-dark */
}
.has-text-grey-light {
     color: #b5b5b5 !important; /* Bulma's grey-light */
}
.has-text-primary {
     color: #48c78e !important; /* Bulma's primary green */
}
.has-text-secondary {
     color: #ffe08a !important; /* Example secondary color for stats */
}
.has-text-tertiary {
     color: #ffb0b0 !important; /* Example tertiary color for stats */
}


/* General Section Spacing */
.section {
    padding: var(--spacing-large) 0;
    /* No fixed min-height to allow content to dictate height */
}

.is-pastel-bg {
    background-color: var(--color-background-medium);
}

.container {
    max-width: 1200px; /* Limit max width for readability */
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

/* Bulma overrides/extensions */
.columns {
    margin-left: -var(--spacing-small);
    margin-right: -var(--spacing-small);
}

.column {
    padding: 0 var(--spacing-small);
}

.is-two-thirds { /* Bulma's two-thirds is standard */ }


/* Buttons & Forms */
button, .button {
    font-family: var(--font-heading);
    font-weight: bold;
    padding: 0.75em 1.5em;
    border-radius: 8px; /* Modern slightly rounded */
    transition: all var(--transition-speed) var(--transition-easing);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent; /* Base for outlined/hover */
    cursor: pointer;
}

.button.is-pastel {
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    border-color: var(--color-primary);
}

.button.is-pastel:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.button.is-outlined {
     background-color: transparent;
     border-color: var(--color-primary);
     color: var(--color-primary);
}

.button.is-outlined:hover {
     background-color: var(--color-primary);
     color: var(--color-text-dark);
     border-color: var(--color-primary);
}

.button.is-primary { /* Bulma's primary button - often green */
    background-color: #48c78e;
    border-color: #48c78e;
    color: white;
}
.button.is-primary:hover {
     background-color: #3ac283;
     border-color: #3ac283;
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-family: var(--font-body);
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    transition: border-color var(--transition-speed) var(--transition-easing), box-shadow var(--transition-speed) var(--transition-easing);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.125em rgba(var(--color-primary), 0.25); /* Placeholder rgba - use a specific color variable */
     box-shadow: 0 0 0 0.125em rgba(178, 223, 219, 0.25); /* Use rgba with actual color value */
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.input.is-modern,
.textarea.is-modern {
     border-radius: 8px;
     border-color: var(--color-border);
     box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1); /* Subtle inset shadow */
}

.input.is-modern:focus,
.textarea.is-modern:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.125em rgba(165, 214, 167, 0.25); /* Use rgba with actual color value */
}


/* Header */
.header {
    background-color: var(--color-background-light);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-speed) var(--transition-easing);
}

.header .navbar {
     padding: 10px 0;
}

.navbar-item {
    font-weight: bold;
    transition: all var(--transition-speed) var(--transition-easing);
}

.navbar-item:hover {
    color: var(--color-primary);
    background-color: transparent; /* Override Bulma hover background */
}

.navbar-burger {
    color: var(--color-text-dark);
}

/* Burger Menu on Mobile */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--color-background-light);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .navbar-item {
        padding: 0.75rem 1rem;
    }
}


/* Hero Section */
.hero {
    position: relative;
    /* Background image and overlay are set in HTML style for dynamic prompt */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; /* Vertically center content */
}

.hero .title,
.hero .subtitle {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Ensure readability on image */
}

.hero p {
     color: var(--color-text-light); /* White text */
     text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* Ensure readability on image */
}


/* About Us Section */
#about {
    background-color: var(--color-background-light);
}
#about .column:first-child {
     padding-right: var(--spacing-medium);
}
#about .column:last-child {
     padding-left: var(--spacing-medium);
}
#about .image.is-rounded img {
    border-radius: 8px; /* Match block interface style */
    object-fit: cover;
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Center image */
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1); /* Subtle shadow */
}


/* Services Section (Timeline & Switch) */
#services .timeline-container {
    /* Basic styling for the timeline layout */
    position: relative;
    padding: var(--spacing-medium) 0;
}
#services .timeline-item {
    display: flex;
    margin-bottom: var(--spacing-medium);
}
#services .timeline-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    position: relative;
    z-index: 2;
    margin-right: var(--spacing-small);
    border: 2px solid var(--color-border); /* Retro border */
}
#services .timeline-content {
    flex-grow: 1;
    background-color: white;
    padding: var(--spacing-small);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    position: relative;
    margin-left: var(--spacing-small);
}
#services .timeline-content .heading {
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 5px;
    text-align: left; /* Align text left in card content */
}
#services .timeline-content p {
     text-align: left; /* Align text left in card content */
}
/* Basic line connector */
#services .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px; /* Center with marker */
    width: 2px;
    height: 100%;
    background-color: var(--color-border);
    z-index: 1;
}


/* Switch UI Component */
.switch-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-medium);
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
   border: 2px solid var(--color-border); /* Retro border */
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
   border: 2px solid var(--color-border); /* Retro border */
}
input:checked + .slider {
  background-color: var(--color-primary);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}
input:checked + .slider:before {
  transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}


/* Statistics Section */
#statistics .box {
    padding: var(--spacing-medium);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    transition: transform var(--transition-speed) var(--transition-easing);
    height: 100%; /* Make boxes same height in columns */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
}
#statistics .box:hover {
    transform: translateY(-5px);
}
#statistics .box .is-size-1 {
    margin-bottom: var(--spacing-small);
    font-weight: 700;
}
#statistics .box .heading {
     margin-bottom: var(--spacing-small);
     font-weight: bold;
     text-align: center;
}
#statistics .box p {
     text-align: center;
}


/* Gallery Section (Carousel) */
#gallery .carousel-container {
    position: relative;
    overflow: hidden;
    padding-bottom: var(--spacing-medium); /* Space for navigation */
}
.carousel-wrapper {
    display: flex;
    overflow-x: auto; /* Enable scrolling */
    scroll-snap-type: x mandatory; /* Snap to slides */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar */
     padding-bottom: 20px; /* Space for potential scrollbar if needed */
     margin-bottom: -20px; /* Counteract padding-bottom */
}
.carousel-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

.carousel-slide {
    margin-right: var(--spacing-medium);
    scroll-snap-align: start;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    background-color: white;
    display: flex; /* Flexbox for card content alignment */
    flex-direction: column;
    align-items: center; /* Center card content horizontally */
    text-align: center;
}

.carousel-slide:last-child {
    margin-right: 0;
}

.carousel-slide .card-image {
     width: 100%; /* Image takes full width of slide */
     height: 200px; /* Fixed height for images in carousel */
     overflow: hidden; /* Hide parts of image if needed */
     display: flex; /* Center image inside */
     align-items: center;
     justify-content: center;
}

.carousel-slide .card-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.carousel-slide .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the container */
    display: block; /* Remove extra space below image */
    margin: 0 auto; /* Ensure centering */
}

.carousel-slide .card-content {
    padding: var(--spacing-small);
    text-align: center;
}

/* Navigation Arrows (Placeholder styles) */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    transition: background-color var(--transition-speed), opacity var(--transition-speed);
    opacity: 0.8;
}
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }
.carousel-prev:hover, .carousel-next:hover {
    background-color: var(--color-primary);
    opacity: 1;
}
/* Hide arrows by default, show with JS/CSS */
/* .carousel-prev, .carousel-next { display: none; } */


/* External Resources Section */
#resources ul {
    list-style: none;
    padding: 0;
}
#resources li {
    margin-bottom: var(--spacing-small);
    padding: var(--spacing-small);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: white;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}
#resources li a {
    display: block; /* Make the whole list item clickable */
    padding: 0; /* Remove padding from link */
    color: var(--color-text-dark); /* Link color */
    text-decoration: none;
    transition: background-color var(--transition-speed);
}
#resources li a:hover {
    background-color: var(--color-background-light);
    color: var(--color-primary); /* Change link color on hover */
}
#resources li a .has-text-weight-bold {
     color: var(--color-primary); /* Title color */
}
#resources li a:hover .has-text-weight-bold {
     color: var(--color-text-dark); /* Title color on hover */
}


/* Contact Section */
#contact .box {
    padding: var(--spacing-large);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
}
#contact label {
    font-weight: bold;
    color: var(--color-text-dark);
}

/* Partners Section */
#partners .image.is-inline-block {
    display: inline-block;
    vertical-align: middle;
    margin: 0 var(--spacing-small); /* Spacing between logos */
    filter: grayscale(100%); /* Desaturate logos */
    opacity: 0.7; /* Make them subtle */
    transition: filter var(--transition-speed), opacity var(--transition-speed);
    border: 1px solid var(--color-border); /* Retro border */
    border-radius: 8px;
}
#partners .image.is-inline-block:hover {
    filter: grayscale(0%); /* Full color on hover */
    opacity: 1;
}
#partners .image img {
     object-fit: contain; /* Ensure logo fits without cropping */
     padding: var(--spacing-small); /* Padding inside border */
}


/* Clientele Section (Cards) */
#clientele .card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    background-color: white;
    transition: transform var(--transition-speed) var(--transition-easing);
    height: 100%; /* Make cards same height */
    display: flex; /* Flexbox for card content */
    flex-direction: column;
    align-items: center; /* Center card content */
    text-align: center;
}
#clientele .card:hover {
    transform: translateY(-5px);
}
#clientele .card-image {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#clientele .card-image figure {
     width: 100%;
     height: 100%;
     margin: 0;
}
#clientele .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto; /* Ensure centering */
}
#clientele .card-content {
    padding: var(--spacing-medium);
    flex-grow: 1; /* Allow content area to grow */
}
#clientele .card-content .title {
    margin-bottom: var(--spacing-small);
}
#clientele .card-content p {
    text-align: center;
}


/* Awards Section (Cards) */
#awards .card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    background-color: white;
    transition: transform var(--transition-speed) var(--transition-easing);
    height: 100%; /* Make cards same height */
    display: flex; /* Flexbox for card content */
    flex-direction: column;
    align-items: center; /* Center card content */
    text-align: center;
}
#awards .card:hover {
    transform: translateY(-5px);
}
#awards .card-image {
    width: 100%;
    height: 200px; /* Fixed height for images */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
#awards .card-image figure {
     width: 100%;
     height: 100%;
     margin: 0;
}
#awards .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Use contain for awards/logos */
    padding: var(--spacing-small); /* Add some padding */
    display: block;
    margin: 0 auto; /* Ensure centering */
}
#awards .card-content {
    padding: var(--spacing-medium);
    flex-grow: 1; /* Allow content area to grow */
}
#awards .card-content .title {
     margin-bottom: var(--spacing-small);
}
#awards .card-content p {
    text-align: center;
}


/* Careers Section (Modal) */
#careers .modal {
     /* Bulma handles basic modal display */
}
#careers .modal-background {
     background-color: rgba(0,0,0,0.6); /* Dark semi-transparent background */
}
#careers .modal-content {
    background-color: white;
    padding: var(--spacing-large);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
}
#careers .modal-content .title {
     margin-bottom: var(--spacing-medium);
     text-align: left;
}
#careers .modal-content ul {
     list-style: disc;
     margin-left: var(--spacing-medium);
}
#careers .modal-content li {
     margin-bottom: var(--spacing-small);
}
#careers .modal-close {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid var(--color-border);
}


/* Footer */
.footer {
    background-color: var(--color-text-dark); /* Dark background */
    color: var(--color-text-light); /* White text */
    padding: var(--spacing-large) 0;
}

.footer .title {
    color: var(--color-text-light); /* White title */
    margin-bottom: var(--spacing-medium);
}

.footer p, .footer li {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li a {
    color: var(--color-grey-light); /* Light grey links */
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-easing);
}

.footer ul li a:hover {
    color: var(--color-primary); /* Pastel primary on hover */
    text-decoration: underline;
}

/* Ensure footer columns stack nicely on mobile */
@media (max-width: 768px) {
    .footer .column {
        margin-bottom: var(--spacing-medium);
    }
    .footer .column:last-child {
        margin-bottom: 0;
    }
    .footer .title {
        text-align: center;
    }
    .footer p, .footer ul {
        text-align: center;
    }
     .footer ul li a {
        display: inline-block; /* Allow center alignment of list items if needed */
        margin: 0 5px;
     }
}


/* Specific Page Styles (Placeholder) */
.page-content { /* For about.html, terms.html, privacy.html, contacts.html */
    padding-top: 100px; /* Prevent content from being hidden by fixed header */
    padding-bottom: var(--spacing-large);
    min-height: calc(100vh - 100px - 200px); /* Example min-height minus header and footer (approx) */
     background-color: var(--color-background-light);
     color: var(--color-text-regular);
}
.page-content .container {
    max-width: 960px;
}
.page-content h1 {
    margin-bottom: var(--spacing-large);
}


/* Success Page Specific Styles */
.success-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    text-align: center;
    background-color: var(--color-background-light); /* Or a different pastel color */
    padding: var(--spacing-large);
}

.success-page .box {
    background-color: white;
    padding: var(--spacing-large);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}

.success-page .title {
    color: var(--color-accent); /* Pastel green for success */
    margin-bottom: var(--spacing-medium);
}

.success-page p {
    color: var(--color-text-regular);
    margin-bottom: var(--spacing-large);
}

/* Read More Link Style (if needed) */
.read-more {
    display: inline-block;
    margin-top: var(--spacing-small);
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: underline;
    transition: color var(--transition-speed);
}
.read-more:hover {
    color: var(--color-text-dark);
}


/* Accessibility & Contrast - Ensure overrides for critical text */
/* Text on images must have sufficient contrast */
/* (Handled by background linear-gradient overlay in HTML or specific CSS rules if needed) */

/* Scroll Animation Placeholder Class */
.scroll-animate {
    /* Elements intended for GSAP ScrollTrigger animation */
    opacity: 0; /* Start hidden */
    transform: translateY(50px); /* Start below final position */
}
/* GSAP will handle the animation to opacity: 1 and transform: translateY(0) */

/* Parallax Effect Placeholder */
.parallax-bg {
     /* Add this class to elements where GSAP Parallax is applied */
     /* CSS alone can do basic parallax with background-attachment: fixed, but
        GSAP/ScrollTrigger offers more control with background-position-y */
     background-attachment: fixed; /* Simple CSS parallax - can be overridden by GSAP */
}

/* Glasmorphism Placeholder (Requires background-color with alpha, backdrop-filter) */
/* Apply this to elements like modals, certain boxes */
.is-glasmorphic {
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blur background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}


/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    .hero-body {
        padding: var(--spacing-large) var(--spacing-medium);
    }
    #about .column:first-child,
    #about .column:last-child {
         padding-left: var(--spacing-small);
         padding-right: var(--spacing-small);
    }
     #about .column:first-child {
        padding-bottom: var(--spacing-medium); /* Add space between stacked columns */
     }

    .carousel-slide {
         flex: 0 0 90%; /* Make carousel slides wider on small screens */
         margin-right: var(--spacing-small);
    }

    #contact .box,
    .success-page .box {
         padding: var(--spacing-medium);
    }

    .footer .column {
        text-align: center;
    }
     .footer ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
     }
    .footer ul li {
         margin: 5px 10px;
    }
}

@media screen and (max-width: 480px) {
     h1 { font-size: 2rem; }
     h2 { font-size: 1.8rem; }
     .button.is-large {
         font-size: 1rem;
         padding: 0.5em 1em;
     }
     .hero .buttons {
         flex-direction: column;
         align-items: center;
     }
     .hero .buttons .button {
         width: 80%;
         margin-bottom: var(--spacing-small);
     }
      .hero .buttons .button:last-child {
         margin-bottom: 0;
     }
     .carousel-slide {
         flex: 0 0 95%; /* Even wider on very small screens */
     }
}

/* Example styles for Read More or Action links within text blocks */
.action-link {
    display: inline-block;
    margin-top: var(--spacing-small);
    font-weight: bold;
    color: var(--color-text-dark);
    text-decoration: underline;
    transition: color var(--transition-speed);
}

.action-link:hover {
    color: var(--color-primary);
}

img{
    object-fit: cover;
}

.navbar-start{
    flex-wrap: wrap;
}
.navbar-menu{
    flex-shrink: 1;
}

.title{
    color: #000 !important;
}
