.hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/homepage/IMG_1428.jpg') center center/cover no-repeat;
    filter: blur(0px);
    z-index: 0;
}

.hero-image > span {
    position: relative;
    z-index: 1;
}

.cucciolata h2 {
    margin-bottom: 1rem;
}
.cucciolata p {
    margin-bottom: 1.5rem;
}
.swiper-cuccioli {
    width: 100%;
    max-width: 700px;
    margin: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.swiper-slide-cuccioli img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbs-swiper {
    padding: 10px 0;
    max-width: 500px;
}

.thumbs-swiper .swiper-slide {
    margin-right: 10px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbs-swiper .swiper-slide img {
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
}

.thumbs-swiper .swiper-slide:hover {
    opacity: 0.7;
}

.swiper-cuccioli .swiper-slide img {
    height: auto;
    object-fit: cover;
}

.sezione-cucciolata{
    background-color: #7d6e5e;
    padding: 35px;
}

@media (min-width: 768px) {
    .rounded-md {
        border-radius: 1rem; /* o qualsiasi valore tu voglia */
    }
}

.swiper-cucciolata-thumb::before,
.swiper-cucciolata-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.swiper-cucciolata-thumb::before {
    left: 0;
    background: linear-gradient(to right, #7d6e5e 0%, rgba(255,255,255,0) 100%);
}

.swiper-cucciolata-thumb::after {
    right: 0;
    background: linear-gradient(to left, #7d6e5e 0%, rgba(255,255,255,0) 100%);
}



.column {
    width: 33%;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 0px solid #ccc;
    padding-left: 10px;
}

.cell {
    border: 0px solid #999;
    padding: 15px;
    margin: 5px 0;
    text-align: center;
    background-color: #7b6a58;
    /*display: flex;*/
    align-items: center;       /* centrare orizzontalmente */
    justify-content: center;   /* centrare verticalmente */
    flex-direction: column;
    border-radius: 8px;
    width: 33%;
}

.cell img {
    width: 58%;
    /*height: 80%;*/
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.dog-name {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: white;
}

.dog-info {
    font-size: 0.75rem;
    color: #ffffff;
}

@media (max-width: 1000px) {
    .cell img {
        width: 100%;
        /*height: 100%;*/
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    .cell{
        padding: 7px;
    }
}

.btn-beige {
    background-color: #c3ae94;
    color: #3a291a;
    border: none;
}
.btn-beige:hover {
    background-color: #534936;
    color: white;
}
.contact-section {
    padding: 40px 0;
}

.color-brown{
    color: #2b1800;
}