/*
 * 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.
 */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom styles for TCP Duluth */
.turtle-logo {
    width: 60px;
    height: 60px;
}

.gradient-bg {
    background: linear-gradient(135deg, #238393 0%, #6BD0AE 100%);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.transition-all {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Custom Styles for Staff view */
.hero-bg {
    background-image: linear-gradient(rgba(35, 131, 147, 0.8), rgba(107, 208, 174, 0.8)), url('<%= image_path("duluth-bridge.jpeg") %>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.staff-bubble {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}
.staff-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(35, 131, 147, 0.3);
}
.staff-bubble img {
    transition: all 0.3s ease;
    object-position: center top;
}
.back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #238393 0%, #6BD0AE 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 131, 147, 0.3);
    z-index: 1000;
    text-decoration: none;
    white-space: nowrap;
}
.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 131, 147, 0.4);
    color: white;
}
.staff-profile {
    scroll-margin-top: 100px;
}
.specialty-tag {
    background: rgba(35, 131, 147, 0.1);
    color: #238393;
}