﻿/* Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero (Target e News) */
.hero-target,
.hero-news {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: #0e2547;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-news {
    height: 50vh;
    background-image: linear-gradient(rgba(14, 37, 71, 0.8), rgba(14, 37, 71, 0.8)), url('assets/news-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-target-content,
.hero-news-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-target h1,
.hero-news h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-target p,
.hero-news p {
    font-size: 1.3rem;
    font-weight: 300;
}

/* Sezioni */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: #0e2547;
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.2rem;
        color: #555;
    }

.target-section,
.news-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Target Cards */
.target-vertical-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.target-card,
.news-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.target-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.target-icon {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .target-icon img {
        width: 90%;
        height: 90%;
        object-fit: contain;
    }

.target-card h3,
.news-card h3 {
    font-size: 1.8rem;
    color: #0e2547;
    margin-bottom: 10px;
}

.target-card p,
.news-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Espansione Target */
.expand-button {
    position: absolute;
    top: 50px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0e2547;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    z-index: 2;
}

    .expand-button:hover {
        background-color: #1a3657;
        transform: scale(1.1);
    }

.expanded-content {
    display: none;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.target-card.expanded .expanded-content {
    display: block;
}

/* Video */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    background: #000;
    border-radius: 8px;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* Pulsante principale */
.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0e2547;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .action-button:hover {
        background-color: #FFC000;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .action-button i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .action-button:hover i {
        transform: translateX(3px);
    }

/* News Grid */
.news-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-image img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 20px;
}

.news-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.read-more-btn {
    background-color: #0e2547;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    text-align: center;
    border: none;
}

    .read-more-btn:hover {
        background-color: #1a3657;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 1000px) {
    .hero-target,
    .hero-news {
        height: auto;
        padding: 80px 20px;
    }

        .hero-target h1,
        .hero-news h1 {
            font-size: 2.5rem;
        }

        .hero-target p,
        .hero-news p {
            font-size: 1.1rem;
        }

    .target-card-header {
        flex-direction: column;
        text-align: center;
    }

    .expand-button {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
        display: block;
    }

    .news-grid-container {
        grid-template-columns: 1fr;
    }
}
