/* CSS Document */

/* Additional CSS for Pinne Stabilizzatrici Page */

/* Hero Section */
.fins-hero {
    background-color: #0a2f44;
    color: white;
    padding: 50px 0;
    position: relative;
}

.fins-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f5f5f5;
    text-transform: uppercase;
}

.hero-image {
    max-height: 120px;
    width: auto;
}

/* Stormy Sea Banner */
.stormy-sea-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Comparison Cards */
.comparison-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.fin-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    height: 100%;
    transition: transform 0.3s ease;
}

.fin-card:hover {
    transform: translateY(-5px);
}

.fin-card-header {
    background-color: white;
    color: #333;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.fin-card-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 15px;
    align-items: center;
}

.fin-card-header h3 span:first-child {
    color: #0892d0;
    margin-right: 8px;
}

.fin-card-header p {
    margin: 8px 0 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.fin-card-image {
    padding: 30px;
    text-align: center;
    /* background-color: #f9f9f9; */
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fin-card-image img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
}

.fin-card-content {
    padding: 25px;
}

.fin-card-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

.fin-card-content strong {
    color: #0892d0;
    font-weight: 600;
}

.fin-card-content ul {
    padding-left: 20px;
    margin-top: 15px;
    margin-bottom: 0;
}

.fin-card-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}


/* CTA Section */
.cta-section {
    background-color: #0892d0;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #0892d0;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #0892d0;
}

/* Fixed Contact Button */
.fixed-contact-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fixed-contact-button .uk-button {
    background-color: #0892d0;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.fixed-contact-button .uk-button:hover {
    background-color: #0771a3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.fixed-contact-button i {
    margin-right: 8px;
}
.fa-solid, .fas {
    font-weight: 900;
    font-size: 13px;
}

/* Responsive Adjustments */
@media (max-width: 959px) {
    .fins-hero h1 {
        font-size: 2.5rem;
    }
    
    .fin-card-header h3 {  
        font-size: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 639px) {
    .fins-hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        max-height: 80px;
    }
    
    .fin-card {
        margin-bottom: 20px;
    }
    
    .fixed-contact-button {
        bottom: 20px;
        right: 20px;
    }
    
    .fixed-contact-button .uk-button {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}






    /* Hero Section Styles */
    .hero-section {
        position: relative;
        height: 600px;
        background: url('../foto/humphree-stormy-1-1030x677.jpg') no-repeat center center;
        background-size: cover;
        display: flex;
        align-items: center;
        padding: 50px 0;
        margin-bottom: 50px;
        color: white;
    }
		








