/* Custom CSS for Dogz & Catz Retreat - Boarding Services */

:root {
    --primary-color: #D29B32;
    --secondary-color: #3E4145;
    --white: #ffffff;
    --light-gray: #f8f9fa;
}

/* Override Bootstrap Primary Colors */
:root {
    --bs-primary: #D29B32;
    --bs-primary-rgb: 210, 155, 50;
}

/* Override all Bootstrap primary color classes */
.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background-color: #b8872a !important;
    border-color: #b8872a !important;
    color: var(--white) !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Override link colors */
a {
    color: var(--secondary-color);
}

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

a.text-primary {
    color: var(--primary-color) !important;
}

a.text-primary:hover {
    color: #b8872a !important;
}

/* Override any blue links */
a[href]:not(.btn):not(.nav-link):not(.dropdown-item) {
    color: var(--secondary-color);
}

a[href]:not(.btn):not(.nav-link):not(.dropdown-item):hover {
    color: var(--primary-color);
}

/* Override form controls focus */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(210, 155, 50, 0.25) !important;
}

/* Override checkbox and radio button colors */
.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.form-check-input:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(210, 155, 50, 0.25) !important;
}

/* Override pagination */
.page-link {
    color: var(--secondary-color);
}

.page-link:hover {
    color: var(--primary-color);
    background-color: var(--light-gray);
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Override accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 155, 50, 0.25);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

/* Override alert colors if needed */
.alert-primary {
    background-color: rgba(210, 155, 50, 0.1);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.alert-primary .alert-link {
    color: var(--primary-color);
}

/* Override badge colors */
.badge.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Override any remaining blue colors */
a:not(.btn):not(.nav-link):not(.dropdown-item):not(.text-white) {
    color: var(--secondary-color);
}

a:not(.btn):not(.nav-link):not(.dropdown-item):not(.text-white):hover {
    color: var(--primary-color);
}

/* Ensure all icons use theme colors */
.fas.fa-check,
.fas.fa-check-circle,
.far.fa-check-circle {
    color: var(--primary-color);
}

/* Override any Bootstrap info/primary text colors */
.text-info {
    color: var(--primary-color) !important;
}

.bg-info {
    background-color: var(--primary-color) !important;
}

/* Header Styles */
.top-header-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    color: var(--white);
}

.top-header-bar a {
    color: var(--white) !important;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.top-header-bar a:hover {
    color: var(--white) !important;
    opacity: 0.8;
}

.contact-info a {
    color: var(--white) !important;
}

.contact-info a:hover {
    color: var(--white) !important;
    opacity: 0.8;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    margin-right: 8px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Logo and Navigation Section */
.logo-nav-section {
    padding: 20px 0;
    background-color: var(--white);
}

.logo-section {
    text-align: center;
    padding: 0;
}

.logo-section a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s;
}

.logo-section a:hover {
    opacity: 0.8;
}

.logo-section img {
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Navigation */
.logo-nav-section .navbar {
    padding: 0;
    background-color: transparent;
}

.logo-nav-section .navbar-nav {
    align-items: center;
}

.logo-nav-section .navbar-nav .nav-link.btn {
    margin-left: 10px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
}

.hero-slider-section .carousel {
    height: 600px;
    overflow: hidden;
}

.hero-slider-section .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.hero-slider-section .carousel-fade .carousel-item.active,
.hero-slider-section .carousel-fade .carousel-item-next.carousel-item-start,
.hero-slider-section .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-slider-section .carousel-fade .active.carousel-item-start,
.hero-slider-section .carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.hero-slide {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slide-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 400;
    line-height: 1.5;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(210, 155, 50, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-control-prev {
    left: 20px;
}

.hero-slider-section .carousel-control-next {
    right: 20px;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary-color);
}

.hero-slider-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.hero-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-indicators button.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 14px;
    height: 14px;
}

/* Luxury Dog Boarding Section */
.luxury-section-header {
    position: relative;
    margin-bottom: 20px;
    padding-left: 50px;
}

.luxury-paw-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2.5rem;
    color: var(--primary-color);
    z-index: 1;
}

.luxury-heading {
    color: var(--secondary-color);
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    padding-left: 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.luxury-description {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Dogz and Catz Retreat Section */
.retreat-main-title {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.retreat-tagline {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.retreat-content {
    color: var(--secondary-color);
    font-size: 1rem;
    line-height: 1.8;
}

.retreat-content p {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.retreat-image-wrapper {
    padding: 0;
}

.retreat-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    background-color: #ffffff;
}

/* About Page Styles */
.about-main-title {
    color: #8B6914;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.about-section-heading {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-images-wrapper {
    position: sticky;
    top: 100px;
}

.about-image-item {
    margin-bottom: 30px;
}

.about-image-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-image-caption {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .about-images-wrapper {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 992px) {
    .luxury-heading {
        font-size: 2.5rem;
    }
    
    .luxury-paw-icon {
        font-size: 1.5rem;
        top: -10px;
        left: -20px;
    }
    
    .retreat-main-title {
        font-size: 2.5rem;
    }
    
    .retreat-tagline {
        font-size: 1.25rem;
    }
}

/* Contact Page Styles */
.contact-info-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.opening-hours-box,
.inspection-hours-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.contact-info-box p,
.opening-hours-box p,
.inspection-hours-box p {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

/* Gallery Styles */
.gallery-filters {
    margin-bottom: 30px;
}

.btn-filter {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-filter:hover,
.btn-filter.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item {
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item.hidden {
    display: none;
}

/* Pricing Page Styles */
.pricing-page-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.pricing-page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-intro {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 40px;
}

.pricing-effective-date {
    color: #dc3545;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-intro p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.pricing-notes {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.pricing-notes li {
    color: var(--secondary-color);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 1rem;
}

.pricing-notes li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.pricing-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: none;
}

.pricing-section:last-child {
    border-bottom: none;
}

.pricing-section-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.pricing-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.pricing-list li {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 8px;
    padding: 8px 0;
    padding-left: 0;
    position: relative;
    line-height: 1.6;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.pricing-list li:before {
    display: none;
}

.pricing-item-text {
    flex: 1;
    color: var(--secondary-color);
    text-align: left;
}

.pricing-item-price {
    color: var(--secondary-color);
    text-align: right;
    margin-left: 20px;
    white-space: nowrap;
}

.pricing-list li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.pricing-note {
    display: inline;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-style: normal;
    margin-left: 5px;
}

@media (max-width: 768px) {
    .pricing-section-title {
        font-size: 1.5rem;
    }
    
    .pricing-list li {
        font-size: 1rem;
    }
    
    .pricing-intro {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .luxury-section-header {
        padding-left: 40px;
    }
    
    .luxury-paw-icon {
        left: 0;
        top: -8px;
        font-size: 2rem;
    }
    
    .luxury-heading {
        font-size: 2rem;
    }
    
    .retreat-main-title {
        font-size: 2rem;
    }
    
    .retreat-tagline {
        font-size: 1.1rem;
    }
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary-custom:hover {
    background-color: #2d3134;
    border-color: #2d3134;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(62, 65, 69, 0.3);
}

@media (max-width: 992px) {
    .hero-slider-section .carousel {
        height: 500px;
    }
    
    .hero-slide {
        height: 500px;
    }
    
    .hero-slide-title {
        font-size: 2.5rem;
    }
    
    .hero-slide-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-slider-section .carousel {
        height: 400px;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    .hero-slide-title {
        font-size: 2rem;
    }
    
    .hero-slide-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider-section .carousel-control-prev {
        left: 10px;
    }
    
    .hero-slider-section .carousel-control-next {
        right: 10px;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #b8872a;
    border-color: #b8872a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(210, 155, 50, 0.3);
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation Delay */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }
.scroll-animate.delay-5 { transition-delay: 0.5s; }
.scroll-animate.delay-6 { transition-delay: 0.6s; }

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 50px;
    text-align: center;
}

.section-subtitle {
    color: var(--secondary-color);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 50px;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

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

.card-title {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Statistics Section */
.stats-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(210, 155, 50, 0.25);
}

/* Gallery */
.gallery-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(210, 155, 50, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .top-header-bar {
        text-align: center;
    }
    
    .top-header-bar .contact-info {
        margin-top: 10px;
    }
}

