/* ======= About Section Styles ======= */

.about {
    position: relative;
}

/* Phone */
.about .phone {
    font-size: 21px;
    font-weight: 400;
    color: #091532;
    text-align: left;
    display: inline-block;
    margin-left: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.about .phone i {
    height: 55px;
    width: 55px;
    line-height: 55px;
    border: 1px solid var(--color-cta-primary);
    background: transparent;
    font-size: 20px;
    font-weight: 300;
    color: var(--color-cta-primary);
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    display: inline-block;
}

.about .phone a {
    color: var(--color-text-secondary);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about .phone a:hover {
    color: var(--color-cta-primary);
}

/* Images */
.about img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

img.rounded-img {
    border-radius: 10px;
}

/* Section Subtitle & Title */
.about .section-subtitle {
    color: var(--color-cta-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about .section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.about p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about p b,
.about p strong {
    color: var(--color-cta-secondary);
    font-weight: 600;
}

/* Parallax Wrapper */
.parallax_wrapper {
    position: relative;
    margin-bottom: 25px;
}

.parallax_wrapper .img_over {
    left: -25%;
    bottom: 10%;
    position: absolute;
}

.parallax_wrapper .img_over img {
    border: 4px solid #fff;
    width: 50%;
    height: auto;
    box-shadow: 10px 10px 26px 0px rgba(0, 0, 0, 0.21);
}

.parallax_wrapper.inverted .img_over {
    text-align: right;
    left: inherit;
    right: -25%;
}

/* Animazioni Float */
@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.animation-float1 {
    animation: float1 6s ease-in-out infinite;
}

.animation-float2 {
    animation: float2 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* ======= Responsive ======= */
@media (max-width: 991px) {
    .parallax_wrapper {
        padding-left: 25%;
    }
    
    .parallax_wrapper .img_over {
        left: 0;
    }
    
    .parallax_wrapper.inverted {
        padding-left: inherit;
        padding-right: 25%;
    }
    
    .parallax_wrapper.inverted .img_over {
        left: inherit;
        right: 0;
    }
    
    .about .section-title {
        font-size: 32px;
    }
    
    .about .mt-45 {
        margin-top: 30px !important;
    }
}

@media (max-width: 767px) {
    .about .phone {
        display: block;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .about .btn_1 {
        display: block;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .about .section-title {
        font-size: 28px;
    }
}
