/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sky-blue: #87CEEB;
    --beige: #F5F5DC;
    --bright-orange: #FF6B35;
    --dark-blue: #4682B4;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #F8F9FA;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 40%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--bright-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bright-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--beige) 0%, var(--sky-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slogan {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.paw-prints {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.paw-1, .paw-2, .paw-3 {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.paw-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.paw-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.paw-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-read-more {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: var(--bright-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--bright-orange);
    border: 2px solid var(--bright-orange);
}

.btn-secondary:hover {
    background: var(--bright-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-read-more {
    background: var(--sky-blue);
    color: var(--white);
    font-size: 0.9rem;
    padding: 8px 20px;
}

.btn-read-more:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-blue);
    font-weight: 700;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    width: 80%;
    height: 100%;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
}

.about-text h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info {
    background: var(--beige);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.contact-info h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: var(--bright-orange);
    width: 20px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Blog Section */
.blog {
    background: var(--light-gray);
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.blog-post h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.post-date {
    color: var(--bright-orange);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.dog-of-week {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
    text-align: center;
}

.dog-of-week h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.featured-dog img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.featured-dog h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.featured-dog p {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Adopt Section */
.adopt {
    background: var(--white);
}

.pets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.pet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

.pet-card:hover {
    transform: translateY(-5px);
}

.pet-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    background: var(--light-gray);
    border-bottom: 2px solid var(--beige);
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    transform: scale(1);
}

.pet-info {
    padding: 25px;
}

.pet-info h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pet-breed {
    color: var(--bright-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.pet-bio {
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Shop Section */
.shop {
    background: var(--beige);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    background: var(--light-gray);
    border-bottom: 2px solid var(--beige);
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    transform: scale(1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-description {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bright-orange);
    margin-bottom: 15px;
}

/* Stories Section */
.stories {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--bright-orange);
    font-size: 0.9rem;
}

/* Buy Dogs Section */
.buy-dogs {
    background: linear-gradient(135deg, var(--sky-blue) 0%, var(--beige) 100%);
    padding: 100px 0;
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-style: italic;
}

.buy-dogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.dog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.dog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bright-orange), var(--sky-blue));
}

.dog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.dog-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    background: var(--light-gray);
    border-bottom: 2px solid var(--beige);
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
    transform: scale(1);
}

.dog-info {
    padding: 30px;
    text-align: center;
}

.dog-info h3 {
    color: var(--dark-blue);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dog-breed {
    color: var(--bright-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.dog-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.dog-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
/* Contact Section */
.contact {
    background: var(--sky-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info {
    background-color: #4682B4;
}
.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
    

.contact-item i {
    background: var(--bright-orange);
    color: var(--white);
    padding: 15px;
    border-radius: 50%;
    font-size: 1.2rem;
    min-width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--white);
    opacity: 0.9;
}

.social-buttons {
    margin-top: 20px;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: var(--sky-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--bright-orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    /* background: var(--bright-orange); */
    color: var(--white);
    padding: 10px;
    border-radius: 50%;
    /* font-size: 1.2rem; */
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--sky-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Dog Details Page Styles */
.dog-details-page {
    padding: 100px 0 50px;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--beige) 0%, var(--light-gray) 100%);
}

.back-button {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.dog-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.dog-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
}

.dog-detail-info h1 {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 30px;
    font-weight: 700;
}

.dog-specs {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: var(--beige);
    transform: translateY(-2px);
}

.spec-item i {
    color: var(--bright-orange);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.spec-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-item strong {
    color: var(--dark-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.price-highlight {
    background: linear-gradient(135deg, var(--bright-orange), #ff8c42);
    color: var(--white);
}

.price-highlight strong,
.price-text {
    color: var(--white) !important;
    font-size: 1.3rem !important;
}

.buy-now-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.dog-detail-sections {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.detail-section {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
}

.detail-section h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.detail-section h2 i {
    color: var(--bright-orange);
}

.detail-section h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.dog-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.personality-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trait-tag {
    background: var(--sky-blue);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.equipment-intro {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: var(--beige);
    transform: translateX(5px);
}

.equipment-item i {
    color: var(--bright-orange);
    font-size: 1.1rem;
}

.equipment-item span {
    color: var(--dark-gray);
    font-weight: 500;
}

.equipment-value {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--sky-blue), var(--dark-blue));
    border-radius: 15px;
    color: var(--white);
}

.equipment-value strong {
    font-size: 1.2rem;
}

.equipment-note {
    margin-top: 10px;
    opacity: 0.9;
    font-style: italic;
}

.action-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--sky-blue));
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px var(--shadow);
}

.action-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.action-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.large-btn {
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 25px;
}

.error-message {
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
}

.error-message h2 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

/* Dog Details Responsive Design */
@media (max-width: 768px) {
    .dog-details-page {
        padding: 80px 0 30px;
    }
    
    .dog-detail-header {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }
    
    .dog-detail-info h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .detail-section {
        padding: 25px;
    }
    
    .detail-section h2 {
        font-size: 1.5rem;
        text-align: center;
        justify-content: center;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .action-section {
        padding: 30px 20px;
    }
    
    .action-content h2 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .large-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .personality-traits {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .blog-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .pets-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-slogan {
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .pets-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}