/* Custom CSS Variables for Brand Colors */
:root {
    --bluejay-blue: #5D9CEC;
    --sky-blue: #87CEEB;
    --creamy-yellow: #FFF8DC;
    --gentle-green: #6FD6A0;
    --neutral-bg: #F8F9FA;
    --text-dark: #333333;
    --text-gray: #666666;
    --light-blue-bg: #EBF2FC;
}

/* Custom font families */
.font-nunito { 
    font-family: 'Nunito Sans', sans-serif; 
}

.font-open { 
    font-family: 'Open Sans', sans-serif; 
}

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

/* Body base styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--neutral-bg);
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom button styles */
.btn-primary {
    background-color: var(--bluejay-blue);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #7CB5F3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(93, 156, 236, 0.3);
}

.btn-secondary {
    border: 2px solid var(--bluejay-blue);
    color: var(--bluejay-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--bluejay-blue);
    color: white;
}

/* Icon styles */
.icon-wrapper {
    transition: transform 0.3s ease;
}

.icon-wrapper:hover {
    transform: scale(1.1);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Gradient backgrounds */
.gradient-blue-green {
    background: linear-gradient(135deg, #EBF2FC 0%, #E8F5E9 100%);
}

.gradient-yellow-blue {
    background: linear-gradient(135deg, #FFF8DC 0%, #EBF2FC 100%);
}

/* Custom animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Custom section spacing */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Navigation sticky */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Custom list styles */
.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.custom-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gentle-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Phone number link styles */
a[href^="tel:"] {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a[href^="tel:"]:hover {
    color: var(--bluejay-blue);
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--bluejay-blue);
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hero section specific styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Footer styles */
footer {
    background-color: var(--text-dark);
    color: white;
}

footer a {
    color: var(--sky-blue);
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}
