@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

body {
    font-family: "Funnel Display", sans-serif !important;
}

.container-fs {
    max-width: 1300px !important;
    margin: 0 auto !important;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

.primary {
    color: #d16c0d;
}

.form-select {
    width: 200px !important;
    border: 1px solid #f69f24 !important;
}

#mobible-navbar {
    background-color: #f69f24;
}

#nav-links {
    background-color: #f69f24;
}

#sidebar {
    position: sticky;
    top: 120px !important;
    width: 200px;
    height: 84vh;
    border-left: 1px solid grey;
    border-right: 1px solid grey;
    flex-shrink: 0 !important;
}

#main {
    flex-grow: 1;
    overflow-y: scroll;
    /* background-color: blueviolet; */
}

#main::-webkit-scrollbar {
    display: none;
}

.sidebar-heading {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    background-color: #d16c0d;
}

.sidebar-heading > h3 {
    color: white;
    font-size: medium;
    font-weight: bold;
    text-align: center;
}

.dog-categories {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    margin-top: 10px;
}

.dog-categories .dog-category {
    padding: 10 0;
    border-bottom: 1px solid grey;
    font-size: small;
    font-weight: 500;
}

/* Banner Section */
#banner {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    width: 400px;
    display: flex;
    align-items: center;
    border: 2px solid #f69f24;
    border-radius: 30px;
    padding: 8px 20px;
}

.search-input > input {
    flex-grow: 1;
    caret-color: white;
    border: none;
    background-color: transparent;
}

.search-input > input:focus {
    outline: none;
}

.search-input > input::placeholder {
    color: white;
    font-weight: 400;
}

.search-input .search-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d16c0d;
}

.banner-btn {
    border: 2px solid #f69f24;
    border-radius: 30px;
    padding: 8px 12px;
    background-color: #f69f24;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
}

.banner-btn:hover {
    background-color: #f69f24a9;
}

/* Favourite Card */
.favourite-card {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin: 10px;
}

.favourite-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #f69f24;
}

.favourite-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.favourite-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.favourite-card:hover .favourite-image {
    transform: scale(1.1);
}

.favourite-content {
    padding: 15px;
    background: white;
}

.favourite-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.favourite-link:hover {
    color: #2096b1;
}

.favourite-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.favourite-link:hover .favourite-name {
    color: #2096b1;
}

.favourite-arrow {
    color: #f69f24;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.favourite-link:hover .favourite-arrow {
    color: #2096b1;
    transform: translateX(5px);
}

/* Legacy dog-card styles for other components */
.dog-card {
    width: 100%;
    height: 520px;
    border: 2px solid #2096b1;
    border-radius: 15px;
    overflow: hidden;
     background-color: #fff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.dog-card img {
    width: 100%;
    height: 320px !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

.dog-card h5 > span {
    color: #d16c0d;
}

/* Feature Card */
.feature-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Benefits Image */
.benefits-img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.benefits-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.bone-icon {
    width: 2.2rem;
}

/* Blog Section */
.blogs-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-tag {
    width: fit-content;
    position: relative;
    margin-left: 40px;
    color: #2096b1;
}

.blog-tag::before {
    content: " ";
    position: absolute;
    top: 50%;
    left: -30px;
    width: 30px;
    height: 2px;
    background-color: #2096b1;
}

.blog-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-card .blog-img {
    width: 100%;
    height: 300px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-body {
    padding: 10px;
}

/* Testimonial Section */
.testimonial-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonial-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    background-color: #a4bec459;
}

.testimonial-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Footer Section */
footer {
    background-color: #18304f;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid grey;
}

.footer-middle {
    border-bottom: 2px solid grey;
}

.foter-end {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Float icon */
#call-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #3338a0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@media screen and (max-width: 768px) {
    #nav-links {
        display: none;
    }

    #sidebar {
        display: none;
    }

    nav {
        flex-direction: column;
        padding: 0 10px;
    }

    nav > form {
        width: 100%;
        flex-direction: column;
    }

    nav > form .form-select {
        width: 100% !important;
    }

    .footer-top {
        padding: 0 10px;
        flex-direction: column;
    }

    .footer-top > div {
        width: 100% !important;
    }

    .footer-middle {
        padding: 0 10px;
    }

    .search-input {
        max-width: 400px;
    }

    /* Contact Page Mobile Styles */
    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .contact-form-wrapper,
    .map-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .form-title,
    .map-title {
        font-size: 1.5rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .contact-info-item {
        padding: 0.8rem;
    }

    .contact-info-item i {
        font-size: 1.2rem;
    }

    .social-section {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .social-title {
        font-size: 1.5rem;
    }

    .social-subtitle {
        font-size: 1rem;
    }

    /* Blogs Page Mobile Styles */
    .blogs-title {
        font-size: 2rem;
    }

    .blogs-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Blogs Page Styles */
.blogs-page {
    min-height: 100vh;
}

.blogs-header {
    background: linear-gradient(135deg, #2096b1 0%, #f69f24 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.blogs-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blogs-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Dog Details Page Styles */
.dog-details-page {
    min-height: 100vh;
}

.dog-details-header {
    background: linear-gradient(135deg, #2096b1 0%, #f69f24 100%);
    color: white;
    padding: 40px 0;
}

.dog-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dog-details-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.badge-favourite {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Image Gallery Styles */
.dog-gallery {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.main-dog-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.main-dog-image:hover {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: #f69f24;
    transform: scale(1.1);
}

/* Dog Info Card Styles */
.dog-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.info-title {
    color: #2096b1;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-icon {
    color: #2096b1;
    font-size: 1.3rem;
    margin-right: 1rem;
    min-width: 25px;
}

.info-label {
    display: block;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.info-value {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.category-tag {
    background: #f69f24;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-right: 5px;
    display: inline-block;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Description Card */
.description-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: #2096b1;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Info Section Cards */
.info-section-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.section-subtitle {
    color: #2096b1;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.info-list i {
    color: #28a745;
    font-size: 1rem;
}

/* Characteristics */
.characteristics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.characteristic-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.char-label {
    min-width: 80px;
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.char-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.char-fill {
    height: 100%;
    background: linear-gradient(135deg, #2096b1, #f69f24);
    transition: width 0.3s ease;
}

.char-value {
    min-width: 60px;
    font-weight: 600;
    color: #2096b1;
    font-size: 0.9rem;
}

/* What's Included Section */
.included-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
}

.included-item {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.included-item i {
    color: #2096b1;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.included-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2096b1 0%, #f69f24 100%);
    color: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .search-input {
        width: 300px;
    }
    
    .dog-details-title {
        font-size: 2rem;
    }

    .dog-details-subtitle {
        font-size: 1rem;
    }

    .dog-gallery,
    .dog-info-card,
    .description-card,
    .info-section-card {
        margin: 0 1rem;
        padding: 1rem;
    }

    .main-dog-image {
        height: 250px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .characteristic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .char-label {
        min-width: auto;
    }

    .included-section {
        padding: 1.5rem 1rem;
    }

    /* Favourite Cards Mobile Styles */
    .favourite-card {
        margin: 5px;
    }

    .favourite-image-container {
        height: 180px;
    }

    .favourite-content {
        padding: 12px;
    }

    .favourite-name {
        font-size: 1rem;
    }
}
