/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff69b4;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: #ff69b4;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('image/lovely\ pomeranian\ puppies\ header.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.premium-tag {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: #ff69b4;
    color: white;
    border: 2px solid #ff69b4;
}

.btn-primary:hover {
    background-color: #ff4da6;
    border-color: #ff4da6;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #ff69b4;
}

.btn-outline {
    background-color: transparent;
    color: #ff69b4;
    border: 2px solid #ff69b4;
}

.btn-outline:hover {
    background-color: #ff69b4;
    color: white;
}

.btn-disabled {
    background-color: #ccc;
    color: #666;
    border: 2px solid #ccc;
    cursor: not-allowed;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: #ff69b4;
    margin-bottom: 0.5rem;
}

/* Featured Puppies */
.featured-puppies {
    padding: 4rem 0;
}

.section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.puppies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.puppy-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.puppy-card:hover {
    transform: translateY(-5px);
}

.puppy-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.puppy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.puppy-card:hover .puppy-image img {
    transform: scale(1.05);
}

.reserved-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff69b4;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.puppy-info {
    padding: 1.5rem;
}

.puppy-info h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.price {
    color: #ff69b4;
    font-weight: bold;
}

.puppy-details {
    color: #666;
    margin-bottom: 0.5rem;
}

.puppy-weight {
    font-weight: bold;
    margin-bottom: 1rem;
}

.puppy-description {
    margin-bottom: 1.5rem;
}

.view-all {
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: #ff69b4;
}

/* Testimonials */
.testimonials-preview {
    padding: 4rem 0;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: bold;
}

.testimonial-details {
    font-size: 0.9rem;
    color: #666;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('image/lovely\ pomeranian\ puppies\ header.png') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #ff69b4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff69b4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('image/lovely\ pomeranian\ puppies\ header.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Breed Info Page */
.breed-intro {
    padding: 4rem 0;
}

.breed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.breed-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.breed-stat {
    text-align: center;
}

.breed-stat h3 {
    font-size: 2rem;
    color: #ff69b4;
}

.breed-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.breed-traits {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trait-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trait-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.care-section, .health-section {
    padding: 4rem 0;
}

.care-grid, .health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.care-item, .health-item {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.care-item h3, .health-item h3 {
    color: #ff69b4;
    margin-bottom: 1rem;
}

.colors-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.color-item {
    text-align: center;
}

.color-swatch {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.color-swatch.orange {
    background-color: #ffa500;
}

.color-swatch.cream {
    background-color: #fffdd0;
}

.color-swatch.black {
    background-color: #000;
}

.color-swatch.sable {
    background: linear-gradient(45deg, #8b4513, #d2b48c);
}

.breed-cta {
    padding: 4rem 0;
    text-align: center;
}

.breed-cta h2 {
    margin-bottom: 1rem;
}

.breed-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Gallery Page */
.filters {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.filter-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #ff69b4;
    color: white;
    border-color: #ff69b4;
}

.puppies-listing {
    padding: 3rem 0;
}

.puppies-grid.detailed {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.puppy-card.detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.puppy-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1rem 0;
}

.detail-label {
    font-weight: bold;
}

.parents-info {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.status-badge.available {
    background-color: #4caf50;
    color: white;
}

.status-badge.reserved {
    background-color: #ff9800;
    color: white;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    color: #ff69b4;
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
}

.visit-info, .health-guarantee {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.health-guarantee ul {
    list-style: none;
    margin-top: 1rem;
}

.health-guarantee li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.health-guarantee li:before {
    content: "•";
    color: #ff69b4;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials Page */
.testimonials-full {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-author {
    margin-top: 1.5rem;
}

.author-name {
    font-weight: bold;
    color: #ff69b4;
}

.author-details {
    font-size: 0.9rem;
    color: #666;
}

.more-testimonials {
    background: #f8f9fa;
    text-align: center;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .breed-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .puppies-grid.detailed {
        grid-template-columns: 1fr;
    }
    
    .puppy-card.detailed {
        grid-template-columns: 1fr;
    }
}
/* Social Media Styles */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff69b4;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background-color: #ff4da6;
    transform: translateY(-3px);
}

/* Footer Social Media */
.footer-social {
    margin-top: 15px;
}

.footer-social .social-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:hover {
    background-color: #ff69b4;
}

/* Bottom Social Media Bar */
.bottom-social-bar {
    background-color: #f8f9fa;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.bottom-social-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #6c757d;
    font-weight: 500;
}

.bottom-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.bottom-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #ff69b4;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.bottom-social-icon:hover {
    background-color: #ff4da6;
    transform: translateY(-2px);
}
/* Hero Section with Full-Screen Background */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/lovely\ pomeranian\ puppies\ header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

/* Adjust navbar for full-screen hero */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Adjust content spacing */
main {
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Parallax effect (optional) */
.hero {
    background-attachment: fixed;
}
/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}
/* Additional status badge style for reserved puppies */
.status-badge.reserved {
    background-color: #ff9800;
    color: white;
}

/* Enhanced puppy card animations */
.puppy-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.puppy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Price styling */
.price {
    color: #ff69b4;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Detail items styling */
.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.detail-label {
    font-weight: bold;
    color: #666;
}

.detail-value {
    color: #333;
}

/* Parents info styling */
.parents-info {
    margin: 15px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-size: 0.9rem;
}

.parents-info p {
    margin: 5px 0;
}
/* Search Bar Styles */
.search-container {
    position: relative;
    margin: 0 20px;
    flex: 1;
    max-width: 400px;
}

.search-form {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.search-form:focus-within {
    background: white;
    border-color: #ff69b4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 5px;
    font-size: 0.95rem;
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #888;
}

.search-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #ff69b4;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-results.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.search-result-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-category {
    font-size: 0.8rem;
    color: #ff69b4;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 3px;
}

.search-result-title {
    font-weight: 500;
    color: #333;
}

.search-result-description {
    font-size: 0.85rem;
    color: #666;
    margin-top: 3px;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: #888;
}

/* Responsive adjustments for search */
@media (max-width: 992px) {
    .search-container {
        order: 3;
        width: 100%;
        max-width: none;
        margin: 15px 0 0;
        display: none;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .search-container.active {
        display: block;
    }
    
    .nav-menu.active ~ .search-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .search-input::placeholder {
        font-size: 0.9rem;
    }
}

/* Search toggle for mobile */
.search-toggle {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

@media (max-width: 992px) {
    .search-toggle {
        display: block;
    }
}