/* Custom CSS for Neighborhood Dog Help */

:root {
    --primary-color: #93EFAA;
    --secondary-color: #93EFAA;
    --accent-color: #ff69b4;
    --warm-white: #fefefe;
    --soft-gray: #8b5cf6;
    --text-dark: #2c3e50;
    --gradient-start: #93EFAA;
    --gradient-end: #93EFAA;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Navigation Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: #bd4268 !important;
    background: #bd4268 !important;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Force navbar to always be rose - override all Bulma defaults */
.navbar,
.navbar.is-active,
.navbar.is-fixed-top,
.navbar.is-transparent,
.navbar.is-primary,
.navbar:not(.is-transparent),
.navbar-brand,
.navbar-menu {
    background-color: #bd4268 !important;
    background: #bd4268 !important;
}

/* Ensure navbar items stay visible on white background */
.navbar-item {
    background-color: transparent !important;
}

/* Final override - force rose background in all scenarios */
nav.navbar {
    background: #bd4268 !important;
    background-color: #bd4268 !important;
}

.navbar-brand .navbar-item {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-item {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: #0066cc !important;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
    margin-top: -100px; /* Account for fixed navbar */
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paw" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="5" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="5" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="15" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="15" r="2" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23paw)"/></svg>');
    opacity: 0.3;
}

.hero-body {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-10px);
}

.title.is-1 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subtitle.is-4 {
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Buttons */
.button.is-warning {
    background-color: #c0c0c0;
    border-color: #c0c0c0;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-warning:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.button.is-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.button.is-primary:hover {
    background-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

/* Services Section */
.service-card {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card .card-image img {
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.pricing {
    background-color: var(--soft-gray);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* About Section */
.about-image {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Contact Section */
.has-background-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

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

.animate-on-scroll {
    animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero.is-large .hero-body {
        padding: 3rem 1.5rem;
    }
    
    .title.is-1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .navbar-brand .navbar-item {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 480px) {
    .title.is-1 {
        font-size: 2rem;
    }
    
    .subtitle.is-4 {
        font-size: 1.125rem;
    }
    
    .button.is-large {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

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

/* Custom spacing */
.mb-6 {
    margin-bottom: 4rem !important;
}

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

.social-links .button {
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.social-links .button:hover {
    transform: translateY(-3px);
}

/* Loading Animation */
.calendly-button {
    position: relative;
    overflow: hidden;
}

.calendly-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.calendly-button:hover::before {
    left: 100%;
}

/* Call Button Text */
.call-button-text {
    color: #ef93d8 !important;
}

/* Email Button Text */
.email-button-text {
    color: #ef93d8 !important;
}

/* Golden Text */
.has-text-golden {
    color: #471ce3 !important;
}

/* White Button Text */
.calendly-button {
    color: white !important;
}

.calendly-button strong {
    color: white !important;
}

/* Meet Kaya Text */
.meet-kaya-title {
    color: #d8274e !important;
}

/* Text Underneath Meet Kaya */
.meet-kaya-content {
    color: #0066cc !important;
}

/* Pink Text */
.has-text-pink {
    color: #ff69b4 !important;
}

/* Pricing Box */
.pricing {
    background-color: white !important;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Grey Text */
.has-text-grey {
    color: #8b5cf6 !important;
}

/* Grey Icon */
.has-text-grey-icon {
    color: #666666 !important;
}

/* Purple Background */
.has-background-purple {
    background-color: #8b5cf6 !important;
}

/* White Background */
.has-background-white {
    background-color: white !important;
}

/* Light Blue Text */
.has-text-light-blue {
    color: #87ceeb !important;
}

/* Pink Button */
.button.is-pink {
    background-color: #ff69b4 !important;
    border-color: #ff69b4 !important;
    color: white !important;
}

/* Silver Text */
.has-text-silver {
    color: #c0c0c0 !important;
}

/* Brown Text */
.has-text-brown {
    color: #a2705d !important;
}



/* Accessibility */
.button:focus,
.navbar-item:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-gradient,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
