/* BrilliantPad Landing Page - Pad Users Audience - Custom Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
}

/* Text wrapping for headlines - prevents orphan words */
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
    -webkit-text-wrap: balance;
    -moz-text-wrap: balance;
}

/* Custom background colors */
.bg-gray-25 {
    background-color: #fafafa;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

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

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6), 0 4px 6px rgba(0, 0, 0, 0.1);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating animation for hero testimonial */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-testimonial {
    animation: float 3s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: slideInRight 0.8s ease-out;
}

/* Tablet-specific hero adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-section .grid {
        grid-template-columns: 1fr;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-image {
        display: none; /* Hide hero image on tablets to prevent layout issues */
    }
}

/* Badge Micro-Animations */
.badge-glow {
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 4s ease-in-out infinite;
}

.pricing-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

.pricing-badge:hover {
    animation-play-state: paused;
}

/* CTA Buttons Hover Effects */
.cta-buttons a {
    transition: all 0.3s ease;
}

.cta-buttons a:hover {
    transform: translateY(-2px);
}

/* Section Transitions */
section {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

section:nth-child(1) {
    animation-delay: 0s;
}

section:nth-child(2) {
    animation-delay: 0.1s;
}

section:nth-child(3) {
    animation-delay: 0.2s;
}

/* Card Hover Effects */
.hover\:shadow-xl {
    transition: all 0.3s ease;
}

.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);
}

/* FAQ Accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Sticky Header */
header {
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Smooth Scroll Padding (account for fixed header) */
section[id] {
    scroll-margin-top: 80px;
}

/* Image Placeholders */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Pulse Animation */
@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.animate-pulse-button {
    animation: button-pulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* Loading State for Images */
.image-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

/* Responsive Video and Image Containers */
.video-thumbnail {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Override for testimonial images - they need height: 100% */
.testimonials-grid img {
    height: 100% !important;
}

/* Grid containers should not overflow */
.grid {
    width: 100%;
}

/* Custom Green Slider Styles for Calculator */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    position: relative;
}

input[type="range"]:hover {
    background: #d1d5db;
}

/* Webkit (Chrome, Safari, Edge) */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    margin-top: -8px; /* Centers thumb: (24px - 8px) / 2 = -8px */
    position: relative;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.6);
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

/* Firefox */
input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.6);
}

input[type="range"]::-moz-range-thumb:active {
    transform: scale(1.1);
}

/* Track progress color (Webkit) */
input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(to right, #10b981 0%, #10b981 var(--slider-progress, 0%), #e5e7eb var(--slider-progress, 0%), #e5e7eb 100%);
    height: 8px;
    border-radius: 8px;
}

/* Firefox track */
input[type="range"]::-moz-range-track {
    background: #e5e7eb;
    height: 8px;
    border-radius: 8px;
}

input[type="range"]::-moz-range-progress {
    background: #10b981;
    height: 8px;
    border-radius: 8px;
}

/* Testimonials mobile carousel - ONLY mobile, not tablet */
@media (max-width: 767px) {
    .testimonials-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    
    .testimonials-grid > div {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
    }
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
.video-thumbnail:focus {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
.video-thumbnail:focus-visible {
    outline: 3px solid #2563eb;
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
.video-thumbnail:focus:not(:focus-visible) {
    outline: none;
}

.grid > * {
    min-width: 0;
    overflow: hidden;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    header,
    footer,
    .cta-buttons,
    .lead-magnet {
        display: none;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles here if needed */
}

/* Utility Classes */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transition-all {
    transition: all 0.3s ease;
}

/* Mobile Menu (if needed) */
@media (max-width: 768px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 40;
        /* Removed display:none - handled by JS now */
    }
}

/* iOS Safari Mobile Touch Fixes */
.mobile-menu-button {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
}

.mobile-menu-button:active {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
}

/* Visual indicator that JS loaded */
.mobile-menu-button[data-js-loaded="true"]::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.mobile-menu a {
    -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2);
    touch-action: manipulation;
    cursor: pointer;
}

/* Hero Image Enhancements */
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* Stats Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    animation: countUp 0.8s ease-out;
}

/* Testimonial Card Hover */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Pricing Card Special Effects */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Icon Animations */
.icon-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Progress Bar (if needed for transitions) */
.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Toast Notifications (for form submissions) */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

/* Video Player Overlay */
.video-overlay {
    position: relative;
    cursor: pointer;
}

.video-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.video-overlay:hover::after {
    background: rgba(0, 0, 0, 0.5);
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 2rem;
    }
    
    .grid {
        gap: 1.5rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 641px) and (max-width: 1023px) {
    .hero-section {
        padding-top: 5.5rem;
    }
    
    /* Ensure videos and images don't overflow on tablet */
    .video-thumbnail,
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Override for testimonial images */
    .testimonials-grid img {
        height: 100% !important;
    }
    
    /* Add extra padding to video containers on tablet */
    #video-demo,
    .video-thumbnail {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Ensure grid items don't cause overflow (except testimonials) */
    .grid > div:not(.testimonials-grid > div) {
        max-width: 100%;
        overflow: hidden;
    }
}

/* Performance Optimization */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Video Thumbnail Aspect Ratio */
.video-aspect-16-9 {
    aspect-ratio: 16/9;
}

/* Star Overlay Positioning */
.star-overlay-top-25 {
    top: 25%;
}

.star-overlay-top-20 {
    top: 20%;
}

.star-overlay-top-28 {
    top: 28%;
}

/* Grid Force Utility */
.force-grid-3-cols {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

/* NUCLEAR: Force breed images to 3x1 at ALL breakpoints */
#breed-images-grid,
#breed-images-grid.grid,
div#breed-images-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-flow: dense !important;
}

/* Override at ALL breakpoints */
@media (min-width: 768px) {
    #breed-images-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    #breed-images-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1280px) {
    #breed-images-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Exit Intent Modal Animation */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

/* Carousel Indicators (Mobile Only) */
.carousel-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db; /* gray-300 */
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator-dot:hover {
    background-color: #9ca3af; /* gray-400 */
    transform: scale(1.2);
}

.indicator-dot.active {
    background-color: #8b5cf6; /* purple-600 */
    width: 24px;
    border-radius: 5px;
}

.indicator-dot:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
}

/* ========================================
   RESPONSIVE FIXES - 2026-01-14
   ======================================== */

/* Ultra-Wide Desktop (>1600px) */
@media (min-width: 1600px) {
    /* Max container width to prevent excessive stretching */
    .container {
        max-width: 1400px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Limit large section images */
    .hero-image img,
    section img[src*="pad-disaster"],
    section img[src*="square"] {
        max-width: 500px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet Landscape (1024px - 1400px) - iPad Pro 12.9" inclusive */
@media (min-width: 1024px) and (max-width: 1400px) {
    /* Hide carousel arrows on tablet */
    .testimonial-arrow,
    .testimonial-arrow-left,
    .testimonial-arrow-right {
        display: none !important;
    }
    
    /* Reduce hero phone image height */
    .hero-image img {
        max-height: 400px !important;
        width: auto;
    }
    
    /* Force testimonials to 3-column grid - STRONGEST override */
    section#testimonials .testimonials-grid,
    #testimonials .testimonials-grid,
    .testimonials-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 1.5rem !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        flex-direction: initial !important;
        flex-wrap: initial !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    section#testimonials .testimonials-grid > div,
    #testimonials .testimonials-grid > div,
    .testimonials-grid > div {
        max-width: 100% !important;
        min-width: 0 !important;
        flex: none !important;
        width: 100% !important;
        scroll-snap-align: none !important;
    }
    
    section#testimonials .testimonials-grid img,
    #testimonials .testimonials-grid img,
    .testimonials-grid img {
        width: 100% !important;
        object-fit: cover;
    }
    
    /* Keep hero CTA buttons HORIZONTAL on tablet (side-by-side) */
    .hero-section .cta-buttons,
    .cta-buttons {
        flex-direction: row !important;
        display: flex !important;
    }
    
    .hero-section .cta-buttons a,
    .cta-buttons a {
        flex: 1 !important;
    }
    
    /* Fix vertical alignment in 2-column grid sections */
    .grid.md\\:grid-cols-2 {
        align-items: center !important;
    }
    
    /* Specifically fix section grids for proper alignment */
    section .grid.md\\:grid-cols-2 {
        align-items: center !important;
        gap: 3rem !important;
    }
    
    /* Reduce white space between Smart section headline and photo */
    #health-monitoring .grid.md\\:grid-cols-2 {
        gap: 2rem !important;
        align-items: center !important;
    }
    
    #health-monitoring img {
        max-width: 450px !important;
        margin: 0 auto;
    }
}

/* iPhone & Mobile (<640px) */
@media (max-width: 640px) {
    /* Top badges: side-by-side and taller */
    .hero-badges {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        justify-content: center;
        margin-bottom: 1rem !important;
    }
    
    .hero-badges > div {
        padding: 0.75rem 1rem !important;
        min-height: 3rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        max-width: 48% !important;
        font-size: 0.875rem !important;
        text-align: center;
    }
    
    /* Stack "Meet BrilliantPad" 3 boxes to 1 column */
    #how-it-works .grid,
    #how-it-works .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
    
    /* Stack "Benefits" 6 boxes to 1 column */
    #benefits .grid,
    #benefits .grid.md\:grid-cols-2 {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
    
    /* Stack "3-Step Transition" to 1 column */
    #transition .grid,
    #transition .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
    
    /* Testimonials: Enable carousel with arrows */
    .testimonials-grid {
        position: relative;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
        gap: 1rem;
        padding: 0 2.5rem; /* Space for arrows */
    }
    
    .testimonials-grid > div {
        scroll-snap-align: center;
        flex: 0 0 85%;
        max-width: 85%;
    }
    
    .testimonials-grid img {
        max-height: 350px;
        width: 100%;
        object-fit: cover;
    }
}

/* Testimonial carousel arrows (mobile only) */
@media (max-width: 640px) {
    #testimonials {
        position: relative;
    }
    
    .testimonial-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid #e5e7eb;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .testimonial-arrow:hover {
        background: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transform: translateY(-50%) scale(1.1);
    }
    
    .testimonial-arrow-left {
        left: 0.5rem;
    }
    
    .testimonial-arrow-right {
        right: 0.5rem;
    }
    
    .testimonial-arrow i {
        color: #2563eb;
        font-size: 1.25rem;
    }
}

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

/* Skip to Content Link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}
