/* Custom styles for Gentle Paws Animal Hospice LLC */

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --sky-blue: #87CEEB;
    --cloud-white: #ffffff;
    
    /* Transparency levels for consistency */
    --header-opacity: 0.6;
    --section-opacity: 0.4;
    --hero-opacity: 0.7;
    --card-opacity: 0.7;
    --footer-opacity: 0.95;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(to bottom, #87CEEB 0%, #98D8E8 50%, #B0E0E6 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #000000;
}

/* Cloud background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cdefs%3E%3Cfilter id='blur'%3E%3CfeGaussianBlur stdDeviation='2'/%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23blur)'%3E%3C!-- Large cloud top-left --%3E%3Cellipse cx='200' cy='150' rx='80' ry='40' fill='rgba(255,255,255,0.8)'/%3E%3Cellipse cx='160' cy='140' rx='60' ry='35' fill='rgba(255,255,255,0.7)'/%3E%3Cellipse cx='240' cy='130' rx='70' ry='45' fill='rgba(255,255,255,0.75)'/%3E%3Cellipse cx='180' cy='170' rx='50' ry='25' fill='rgba(255,255,255,0.6)'/%3E%3C!-- Medium cloud center-right --%3E%3Cellipse cx='900' cy='280' rx='100' ry='50' fill='rgba(255,255,255,0.75)'/%3E%3Cellipse cx='950' cy='260' rx='80' ry='40' fill='rgba(255,255,255,0.7)'/%3E%3Cellipse cx='860' cy='300' rx='60' ry='30' fill='rgba(255,255,255,0.65)'/%3E%3C!-- Small cloud bottom-center --%3E%3Cellipse cx='550' cy='560' rx='50' ry='25' fill='rgba(255,255,255,0.7)'/%3E%3Cellipse cx='580' cy='550' rx='40' ry='20' fill='rgba(255,255,255,0.6)'/%3E%3Cellipse cx='520' cy='570' rx='35' ry='18' fill='rgba(255,255,255,0.65)'/%3E%3C!-- Large cloud bottom-left --%3E%3Cellipse cx='180' cy='640' rx='90' ry='45' fill='rgba(255,255,255,0.8)'/%3E%3Cellipse cx='120' cy='660' rx='70' ry='35' fill='rgba(255,255,255,0.75)'/%3E%3Cellipse cx='220' cy='620' rx='80' ry='40' fill='rgba(255,255,255,0.7)'/%3E%3Cellipse cx='160' cy='680' rx='55' ry='28' fill='rgba(255,255,255,0.65)'/%3E%3C!-- Medium cloud top-right --%3E%3Cellipse cx='1020' cy='120' rx='75' ry='35' fill='rgba(255,255,255,0.7)'/%3E%3Cellipse cx='1060' cy='140' rx='55' ry='28' fill='rgba(255,255,255,0.65)'/%3E%3Cellipse cx='980' cy='100' rx='65' ry='32' fill='rgba(255,255,255,0.6)'/%3E%3C!-- Additional smaller clouds for atmosphere --%3E%3Cellipse cx='400' cy='200' rx='35' ry='18' fill='rgba(255,255,255,0.5)'/%3E%3Cellipse cx='700' cy='100' rx='40' ry='20' fill='rgba(255,255,255,0.55)'/%3E%3Cellipse cx='300' cy='400' rx='30' ry='15' fill='rgba(255,255,255,0.5)'/%3E%3Cellipse cx='800' cy='500' rx='45' ry='22' fill='rgba(255,255,255,0.6)'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 1200px 800px;
    background-repeat: repeat;
    animation: cloudMove 150s linear infinite, cloudFloat 100s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes cloudMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 20px; }
}

@keyframes cloudFloat {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Header and Logo Styles */
header {
    background: rgba(255, 255, 255, var(--header-opacity));
    backdrop-filter: blur(15px);
}

.logo {
    max-height: 300px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    font-family: 'Great Vibes', cursive;
    font-size: 3rem;
    color: #000000;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.contact-info {
    color: #000000;
    font-weight: 500;
}

.contact-info i {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, var(--header-opacity));
    backdrop-filter: blur(15px);
}

.nav-link {
    color: #000000;
    font-weight: 500;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
}

.nav-link.active {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

/* Content Areas */
main {
    position: relative;
    z-index: 1;
}

section {
    background: rgba(255, 255, 255, 0.4);
    margin: 20px 0;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    --bs-bg-opacity: 0.4;
}

.bg-light {
    background: rgba(248, 249, 250, var(--section-opacity));
    --bs-bg-opacity: var(--section-opacity);
}

.bg-primary {
    background: rgba(0, 123, 255, var(--hero-opacity));
    backdrop-filter: blur(5px);
    --bs-bg-opacity: var(--hero-opacity);
}

/* Force transparency for any bg-primary elements */
.bg-primary,
.hero.bg-primary,
section.bg-primary {
    background-color: rgba(0, 123, 255, var(--hero-opacity));
    --bs-bg-opacity: var(--hero-opacity);
}

/* Hero Section */
.hero {
    background: rgba(0, 123, 255, 0.7);
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    backdrop-filter: blur(5px);
}

/* Cards */
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Contact Form */
.contact-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background: rgba(255, 255, 255, 1);
}

/* Footer */
footer {
    margin-top: auto;
    background: rgba(248, 249, 250, var(--footer-opacity));
    backdrop-filter: blur(10px);
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Text and Typography */
h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

p, li, span {
    color: #000000;
}

.text-muted {
    color: #6c757d;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }
    
    .logo {
        max-height: 200px;
    }
    
    .hero {
        min-height: 50vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .company-name {
        font-size: 1.5rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
}

/* Utilities */
.fa-10x {
    font-size: 10em;
}

/* Custom spacing */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Contact page specific styles */
.contact-item h5 {
    color: #000000;
    margin-bottom: 10px;
}

.contact-item p {
    margin-bottom: 0;
    color: #000000;
}

/* Service cards specific styles */
.card-body ul li {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #000000;
}

/* Alert boxes with better visibility */
.alert {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Blockquotes */
.blockquote {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px;
    border-radius: 10px;
}
