/* Minimal custom styles for the one-page layout */
:root {
    --uu-bulldog-red: #BA0C2F;
    --uu-arch-black: #000;
    --uu-hairy-dawg-navy: #1A3161;
    --uu-light: #F9FAFB;
}

/* Smooth transitions and animations */
* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    color: var(--uu-arch-black);
}

/* Add spacing for fixed header */
main {
    padding-top: 80px;
}

header {
    background-color: var(--uu-hairy-dawg-navy);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--uu-bulldog-red);
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}
.btn-primary:hover {
    background-color: var(--uu-hairy-dawg-navy);
}

/* Card hover effects */
.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button animations */
.transform {
    transition: transform 0.3s ease;
}

/* Generic section spacing */
section {
    padding: 5rem 1.5rem;
}

/* Prevent anchor links from hiding under the header */
section[id] {
    scroll-margin-top: 80px;
}

/* Gradient text effect for headings */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loading animation for future use */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Smooth hover transitions for cards */
.hover\:shadow-xl {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus styles for form inputs */
input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(186, 12, 47, 0.1);
}

/* Mobile menu animation */
#mobileMenu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Backdrop blur support for browsers */
@supports (backdrop-filter: blur(12px)) {
    .backdrop-blur {
        backdrop-filter: blur(12px);
    }
}

/* Improve button hover states */
button, .btn-primary {
    position: relative;
    overflow: hidden;
}

button::after, .btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

button:hover::after, .btn-primary:hover::after {
    width: 300px;
    height: 300px;
}