/* 
COLOR PALETTE:
Primary Color (Deep Chocolate Brown): #5A3E36
Secondary Color (Warm Cream): #F7EFE5
Accent Color (Golden Sand): #D4A373
Background (Soft Ivory): #FAF6F1
Text Color (Dark Slate): #2B2B2B
*/

:root {
    --primary-color: #5A3E36;
    --secondary-color: #F7EFE5;
    --accent-color: #D4A373;
    --bg-color: #FAF6F1;
    --text-color: #2B2B2B;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
}

.bg-soft-ivory {
    background-color: var(--bg-color) !important;
}

.bg-primary-dog {
    background-color: var(--primary-color) !important;
}

.bg-secondary-dog {
    background-color: var(--secondary-color) !important;
}

.text-primary-dog {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Typography styles */
.display-4,
.display-5 {
    font-weight: 700;
}

/* Custom Buttons */
.btn-gold {
    background: linear-gradient(135deg, #E6C287 0%, var(--accent-color) 100%);
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    box-shadow: 0 4px 6px rgba(212, 163, 115, 0.3);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 163, 115, 0.4);
    color: white;
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    padding: 8px 22px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(212, 163, 115, 0.4);
}

/* Navigation */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    overflow: hidden;
    background-color: white;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.puppy-card-img-wrapper {
    overflow: hidden;
    height: 250px;
    position: relative;
}

.puppy-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .puppy-card-img-wrapper img {
    transform: scale(1.08);
}

.puppy-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.status-available {
    background-color: #28a745;
    color: white;
}

.status-reserved {
    background-color: #ffc107;
    color: #2B2B2B;
}

.status-adopted {
    background-color: #6c757d;
    color: white;
}

/* Testimonials */
.testimonial-card {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    color: rgba(212, 163, 115, 0.2);
    position: absolute;
    top: 1rem;
    left: 1rem;
}

/* Footer Links */
.footer-links a,
.footer-contact i {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Back to Top */
#btn-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1000;
}

/* Hero Section */
.hero-slider-wrapper {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background-color: var(--primary-color);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 43, 43, 0.5);
    /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    color: white;
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Steps Cards */
.step-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    height: 100%;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Forms */
.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(212, 163, 115, 0.25);
}