/* styles.css */
/* Shared custom branding for all pages */
:root {
    --primary-teal: #14b8a6;
    --accent-sky: #0ea5e9;
    --dark-navy: #0f172a;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.navbar {
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
}

.btn-success {
    background-color: #14b8a6;
    border-color: #14b8a6;
}

.btn-success:hover {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
    transform: translateY(-2px);
}

.text-teal {
    color: #14b8a6;
}

.pond-ripple {
    animation: ripple-animation 3s infinite ease-in-out;
}

@keyframes ripple-animation {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.15); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Small mobile menu improvements */
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(20, 184, 166, 0.25);
}

/* Active nav link highlight - pond theme */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #14b8a6 !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #14b8a6;
    border-radius: 50%;
    box-shadow: 0 0 8px #14b8a6;
}

/* Pond Ripple Click Effect - Fixed for scrolling */
.pond-ripple-effect {
    position: fixed;           /* Changed from absolute to fixed */
    border: 2px solid rgba(20, 184, 166, 0.65);
    border-radius: 50%;
    pointer-events: none;
    transform: scale(0);
    animation: pondRippleAnim 1.4s ease-out forwards;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
	opacity: 0.85;
}

@keyframes pondRippleAnim {
    to {
        transform: scale(5);
        opacity: 0;
    }
}

.navbar-brand svg {
    transition: transform 0.4s ease;
}

.navbar-brand:hover svg {
    animation: pondLogoRipple 1.5s ease-in-out;
}

@keyframes pondLogoRipple {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}