/* ==========================================================================
   Breed Standard Feature Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Snippet 4 - Breed Standard Fields (tabs/sections)
   -------------------------------------------------------------------------- */

.breed-standard-fields {
    font-family: "Plus Jakarta Sans", sans-serif;
    margin: 20px 0;
}

.breed-standard-fields h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.breed-standard-fields ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breed-standard-fields li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
}

.breed-standard-fields li strong {
    font-weight: 700;
    margin-right: 5px;
}

/* Estilos para defectos */
.breed-standard-fields li.defect-minor,
.breed-standard-fields li.defect-severe,
.breed-standard-fields li.defect-eliminatory {
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.breed-standard-fields li.defect-minor {
    background-color: #fff8cc;
    color: #f1c40f;
}

.breed-standard-fields li.defect-severe {
    background-color: #ffedcc;
    color: #e67e22;
}

.breed-standard-fields li.defect-eliminatory {
    background-color: #ffcccc;
    color: #e74c3c;
}

/* --------------------------------------------------------------------------
   Snippet 5 - Breed Standard Profile
   -------------------------------------------------------------------------- */

.breed-standard-profile-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.breed-standard-profile-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    filter: blur(10px);
    z-index: 1;
}

.breed-standard-profile-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 50px;
    display: flex;
    align-items: center;
    background: #D747099E;
}

.breed-standard-profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-right: 30px;
    overflow: hidden;
}

.breed-standard-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breed-standard-profile-info {
    display: flex;
    flex-direction: column;
}

.breed-standard-profile-name {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.breed-standard-profile-button .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background-color: #000000;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.breed-standard-profile-button .btn:hover {
    background-color: #000000;
}

@media (max-width: 768px) {
    .breed-standard-profile-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .breed-standard-profile-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .breed-standard-profile-name {
        margin-bottom: 10px;
    }
    .breed-standard-profile-owner {
        margin-bottom: 15px;
    }
    .breed-standard-profile-button {
        margin-top: 15px;
    }
}

/* --------------------------------------------------------------------------
   Snippet 16 - Breed Standards List
   -------------------------------------------------------------------------- */

.dog-search-container input:focus {
    outline: none;
    border: 1px solid #017DFA;
}

.user-post-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
    margin-right: -30px;
}

.user-post {
    width: calc(25% - 30px);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    position: relative;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
    border: 2px solid transparent;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.user-post:hover {
    border-color: #D74709;
}

@media (max-width: 1024px) {
    .user-post {
        width: calc(33.33% - 30px);
    }
}

@media (max-width: 768px) {
    .user-post {
        width: calc(100% - 30px);
    }
}

.user-post-image {
    width: 100%;
    height: 180px !important;
    object-fit: cover;
    filter: blur(8px);
}

.user-post-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.user-post-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-post-content {
    padding: 50px;
    position: relative;
    z-index: 3;
}

.user-post-title {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-post-field {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.user-post-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    text-transform: none;
    color: #444;
    background-color: #ffc1a7;
    border: none;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 15px;
}

.user-post:hover .user-post-button {
    background-color: #D74709;
    color: #fff;
}

.breed-info {
    background-color: #017DFA;
    border-radius: 100px;
    padding: 5px 10px 5px 5px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.breed-info img {
    border-radius: 50%;
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.born-date,
.color-info {
    text-align: center;
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #666;
}

.kennel-info {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    background: #f9f9f9;
    margin-top: 10px;
    color: black;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.kennel-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
